sakura 1 jaar geleden
bovenliggende
commit
f668942cf5
1 gewijzigde bestanden met toevoegingen van 3 en 4 verwijderingen
  1. 3 4
      src/views/ENTERPRISETRADEPERFORMANCE/index.vue

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

@@ -486,11 +486,9 @@ export default {
       this.single = selection.length !== 1;
       this.multiple = !selection.length;
     },
-    changeDate(val) {
-      this.form.year = this.form.dateValue.slice(0, 4)
-      console.log('年' + this.form.year);
+    changeDate(val){
+      this.form.year = this.form.dateValue.slice(0,4)
       this.form.month = this.form.dateValue.slice(5)
-      console.log('月' + this.form.month);
     },
     /** 新增按钮操作 */
     handleAdd() {
@@ -505,6 +503,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 = "修改企业贸易绩效数据(每个月填报)";
       });