Bladeren bron

修改问题

liusungtsun 1 jaar geleden
bovenliggende
commit
749313766c

+ 0 - 1
src/components/selectTree/index.vue

@@ -79,7 +79,6 @@ export default {
     // },
     methods: {
         init(param, formatId = 'deptId') {
-            console.log('param', param, 'fromatId', formatId);
             this.$nextTick(() => {
                 this.dataList = this.handleTree(param, formatId);
             })

+ 4 - 2
src/views/ENTERPRISETRADEPERFORMANCE/index.vue

@@ -532,8 +532,8 @@ export default {
     handleNodeClick(data) {
       this.queryParams.deptId = data.deptId
       this.searchDeptName = data.deptName
-      this.$set(this.form, 'deptId', data.deptId)
-      this.$set(this.form, 'deptName', data.deptName)
+      // this.$set(this.form, 'deptId', data.deptId)
+      // this.$set(this.form, 'deptName', data.deptName)
     },
     // setSelectTreeData(){
     //   this.$refs.selectTree.init(this.deptList)
@@ -580,6 +580,8 @@ export default {
     },
     /** 重置按钮操作 */
     resetQuery() {
+      this.queryParams.deptId = null;
+      this.searchDeptName = ''
       this.resetForm("queryForm");
       this.handleQuery();
     },

+ 3 - 0
src/views/GARDENBASEDATA/index.vue

@@ -852,8 +852,11 @@ export default {
       const id = row.id || this.ids;
       getGARDENBASEDATA(id).then((response) => {
         this.form = response.data;
+        this.form.enterpriseStructureValue = this.form.enterpriseStructureValue.split(',')
+        this.form.businessEventsValue = this.form.businessEventsValue.split(',')
         this.open = true;
         this.title = "修改园区内企业基础数据";
+
         this.$nextTick(() => {
         that.$refs.selectTree.init(that.deptList)
       })