Commit 9d8f23eb authored by youjie's avatar youjie

no message

parent 36b1484c
......@@ -261,7 +261,7 @@
}
},
deep: true,
immediate: false
immediate: true
},
datas: {
handler(newVal, oldVal) {
......
......@@ -274,7 +274,7 @@
}
},
deep: true,
immediate: false
immediate: true
},
datas: {
handler(newVal, oldVal) {
......
......@@ -266,7 +266,7 @@
}
},
deep: true,
immediate: false
immediate: true
},
datas: {
handler(newVal, oldVal) {
......
......@@ -268,7 +268,7 @@
}
},
deep: true,
immediate: false
immediate: true
},
datas: {
handler(newVal, oldVal) {
......
......@@ -236,7 +236,7 @@
},
],
currencyVisible: false,
oldDataIndex: 1,
oldDataIndex: 1,//选中类型
loading: false,
msg: {
TCIDs: ''
......@@ -649,12 +649,17 @@
});
this.apipost("dmcstatistics_post_GetNewLeaderPayMoneyStatics", this.msg, (res) => {
if (res.resultCode == 1) {
this.params = res.data;
this.params = {
...this.params,
...res.data
};
for (let i = 1; i < 5; i++) {
this.$set(this.params, `dataIndex${i}`, 0);
if(this.params[`dataIndex${i}`]==undefined){
this.$set(this.params, `dataIndex${i}`, 0);
}
}
this.$set(this.params, `type`, this.oldDataIndex);
if (this.params.BusList && this.params.BusList.length > 0) {
for (let i = 0; i < this.params.BusList.length; i++) {
this.$set(this.params.BusList, `TotalMoney`, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment