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