| | |
| | | @current-change="currentChange" |
| | | @size-change="sizeChange" |
| | | @refresh-change="refreshChange" |
| | | @on-load="onLoad" |
| | | > |
| | | </avue-crud> |
| | | </basic-container> |
| | |
| | | selectFw, |
| | | fwList |
| | | } from "../../api/statisticalQueryManagement/statisticalQueryManagement"; |
| | | import { lazyTreeJu,lazyTrees } from "../../api/index/index"; |
| | | import { lazyTreeJu, lazyTrees } from "../../api/index/index"; |
| | | export default { |
| | | name: "业务情况统计明细", |
| | | props: ["fwdeptId"], |
| | | data() { |
| | | return { |
| | | page: { |
| | |
| | | prop: "name", |
| | | props: { |
| | | label: "name", |
| | | value: "id" |
| | | value: "name" |
| | | }, |
| | | dicData: [], |
| | | searchLabelWidth: 110, |
| | | search: true, |
| | | type: "tree", |
| | | searchSpan: 4, |
| | | searchSpan: 8, |
| | | rules: [ |
| | | { |
| | | required: true, |
| | |
| | | // display: false |
| | | }, |
| | | { |
| | | label: "保安公司名称", |
| | | width: 300, |
| | | prop: "tenantName", |
| | | display: false |
| | | }, |
| | | { |
| | | label: "服务开始时间", |
| | | prop: "startTime", |
| | | display: false |
| | |
| | | { |
| | | label: "服务到期时间", |
| | | prop: "endTime", |
| | | display: false |
| | | }, |
| | | { |
| | | label: "保安员姓名", |
| | | prop: "realName", |
| | | display: false |
| | | }, |
| | | // { |
| | |
| | | this.loading = true; |
| | | let param = {}; |
| | | // param["jurisdiction"] = params["jurname"] || ""; |
| | | param["id"] = params["name"] || ""; |
| | | param["deptId"] = this.deptid; |
| | | // param["id"] = params["name"] || ""; |
| | | param["deptId"] = this.fwdeptId; |
| | | param["current"] = page.currentPage; |
| | | param["size"] = page.pageSize; |
| | | param["name"] = params["name"] || ""; |
| | | fwList(param).then(res => { |
| | | const data = res.data.data; |
| | | this.page.total = data.total; |
| | |
| | | // this.getTableData(); |
| | | this.getFuWuList(); |
| | | this.getSubOfficeData(); |
| | | this.getLocationParams(); |
| | | // this.getLocationParams(); |
| | | } |
| | | }; |
| | | </script> |