Commit f0678671 authored by youjie's avatar youjie

no message

parent dffeb89d
...@@ -1717,6 +1717,7 @@ ...@@ -1717,6 +1717,7 @@
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let data = res.data.data; let data = res.data.data;
this.msg = JSON.parse(JSON.stringify(data)); this.msg = JSON.parse(JSON.stringify(data));
this.msg.SigningCustomerId = Number(data.SigningCustomerId)
let obj = { let obj = {
AccountId: '', AccountId: '',
CurrencyId: '', CurrencyId: '',
...@@ -1886,12 +1887,16 @@ ...@@ -1886,12 +1887,16 @@
}) })
}, },
getCustomerIdList() {this.apipost( getCustomerIdList() {
this.apipost(
"app_today_visit_GetMySigningCustomerList", "app_today_visit_GetMySigningCustomerList",
{pageIndex: 1,pageSize: 1000,CustomerStatus: 0}, {pageIndex: 1,pageSize: 1000,CustomerStatus: 0},
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.CustomerIdList = res.data.data; this.CustomerIdList = res.data.data;
if(this.msg.SigningCustomerId){
this.getSigningCustomerId()
}
} else { } else {
this.loading = false; this.loading = false;
this.$message.error(res.data.message); this.$message.error(res.data.message);
......
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