Browse Source

市场监督

dev_kxc
xzt 1 year ago
parent
commit
d487c45f7f
  1. 2
      jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/index.vue
  2. 2
      jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/basePage.vue
  3. 9
      jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/SubCompany.vue
  4. 10
      jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/managementSystem.vue

2
jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/index.vue

@ -773,7 +773,7 @@ export default {
}
};
getChildren(res, items.data[0].parentid);
console.log("areasOptions", res);
// console.log("areasOptions", res);
this.areasOptions = res;
// admin
// if (this.$userProfile.createUid != "admin") {

2
jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/basePage.vue

@ -460,7 +460,7 @@ export default {
}
};
getChildren(res, items.data[0].parentid);
console.log("areasOptions", res);
// console.log("areasOptions", res);
this.areasOptions = res;
// admin
// if (this.$userProfile.createUid != "admin") {

9
jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/SubCompany.vue

@ -247,10 +247,19 @@ export default {
this.companyTypeOptions = response.data;
});
},
watch: {
enterpriseId: {
handler(n, o) {
this.enterpriseId = n;
this.getList();
},
},
},
methods: {
/** 查询分公司信息列表 */
getList() {
this.loading = true;
this.queryParams.data.enterpriseId = this.enterpriseId;
listOffice(this.queryParams).then((response) => {
this.officeList = response.records;
this.total = response.total;

10
jwtech-admin-page/src/views/marketSupervision/enterpriseInformation/options/components/managementSystem.vue

@ -251,10 +251,20 @@ export default {
created() {
this.getList();
},
watch: {
enterpriseId: {
handler(n, o) {
this.enterpriseId = n;
this.getList();
},
},
},
methods: {
/** 查询管理体系信息列表 */
getList() {
this.loading = true;
// console.log("this.enterpriseId", this.enterpriseId);
this.queryParams.data.enterpriseId = this.enterpriseId;
listSystem(this.queryParams).then((response) => {
this.systemList = response.records;
this.total = response.total;

Loading…
Cancel
Save