Browse Source

数据池管理-企业贸易绩效数据-解决点击修改时间的回显问题

Sanmu8 1 year ago
parent
commit
bd645ddbb9
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/views/ENTERPRISETRADEPERFORMANCE/index.vue

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

@@ -627,9 +627,7 @@ export default {
     },
     changeDate(val){
       this.form.year = this.form.dateValue.slice(0,4)
-      console.log('年'+this.form.year);
       this.form.month = this.form.dateValue.slice(5)
-      console.log('月'+this.form.month);
     },
     /** 新增按钮操作 */
     handleAdd() {
@@ -644,6 +642,7 @@ export default {
       const id = row.id || this.ids;
       getENTERPRISETRADEPERFORMANCE(id).then((response) => {
         this.form = response.data;
+        this.form.dateValue = this.form.year + '-' +this.form.month
         this.open = true;
         this.title = "修改企业贸易绩效数据(每个月填报)";
       });