|
|
@@ -68,7 +68,7 @@ Page({
|
|
|
}).format();
|
|
|
if (res.data.sa_accountclassinfos) res.data.sa_accountclassinfos = res.data.sa_accountclassinfos.map(v => {
|
|
|
v.amount = CNY(v.amount)
|
|
|
- v.text = `\n(余额:${CNY(v.balance)},信用额度:${CNY(v.creditquota)})`
|
|
|
+ v.text = `\n(实时余额:${CNY(v.realbalance)},当前余额:${CNY(v.balance)},信用额度:${CNY(v.creditquota)})`
|
|
|
return v
|
|
|
})
|
|
|
this.setData({
|
|
|
@@ -497,9 +497,7 @@ Page({
|
|
|
title: s.msg != '成功' ? s.msg : isrecheck ? '预提交成功' : '撤回预提交成功',
|
|
|
icon: "none"
|
|
|
});
|
|
|
- if (s.msg == '成功') that.setData({
|
|
|
- "detail.status": isrecheck ? "预提交" : '新建'
|
|
|
- })
|
|
|
+ if (s.msg == '成功') that.getDetail(true)
|
|
|
})
|
|
|
}
|
|
|
})
|
|
|
@@ -523,9 +521,7 @@ Page({
|
|
|
title: s.msg != '成功' ? s.msg : '提交成功',
|
|
|
icon: "none"
|
|
|
});
|
|
|
- if (s.msg == '成功') that.setData({
|
|
|
- "detail.status": "提交"
|
|
|
- })
|
|
|
+ if (s.msg == '成功') that.getDetail(true)
|
|
|
})
|
|
|
}
|
|
|
})
|