md
This commit is contained in:
parent
b19d0e3a7a
commit
9ba3012f09
@ -216,8 +216,22 @@ export default {
|
||||
}
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
$route () {
|
||||
if(this.$route.query.opType=='2'){
|
||||
this.queryParams.billMonth=this.$route.query.billMonth;
|
||||
this.queryParams.openBillStatus='0';
|
||||
|
||||
this.getList();
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
if(this.$route.query.opType=='2'){
|
||||
this.queryParams.billMonth=this.$route.query.billMonth;
|
||||
this.queryParams.openBillStatus='0';
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
/** 查询统计信息 */
|
||||
|
||||
@ -43,7 +43,23 @@ export default {
|
||||
queryType:null
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
$route () {
|
||||
if(this.$route.query.opType=='1'){
|
||||
this.activeTab="payback";
|
||||
}
|
||||
else if(this.$route.query.opType=='2'){
|
||||
this.activeTab="openbill";
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
if(this.$route.query.opType=='1'){
|
||||
this.activeTab="payback";
|
||||
}
|
||||
else if(this.$route.query.opType=='2'){
|
||||
this.activeTab="openbill";
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
handleTabsClick(){
|
||||
|
||||
@ -228,8 +228,21 @@ export default {
|
||||
}
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
$route () {
|
||||
if(this.$route.query.opType=='1'){
|
||||
this.queryParams.billMonth=this.$route.query.billMonth;
|
||||
this.queryParams.paymentStatus='0';
|
||||
this.getList();
|
||||
}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
if(this.$route.query.opType=='1'){
|
||||
this.queryParams.billMonth=this.$route.query.billMonth;
|
||||
this.queryParams.paymentStatus='0';
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
/** 查询统计信息 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user