Commit f0678671 authored by youjie's avatar youjie

no message

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