|
@@ -562,7 +562,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * 拉取小程序码与客户最新余额,下载二维码后绘制海报
|
|
|
|
|
|
|
+ * 拉取小程序码与客户当前余额,下载二维码后绘制海报
|
|
|
*/
|
|
*/
|
|
|
generatePoster() {
|
|
generatePoster() {
|
|
|
const that = this
|
|
const that = this
|
|
@@ -656,9 +656,9 @@ export default {
|
|
|
const rowGap = 36
|
|
const rowGap = 36
|
|
|
|
|
|
|
|
ctx.setTextAlign('left')
|
|
ctx.setTextAlign('left')
|
|
|
- // 负余额表示尚有待结:文案改「最新待结」,金额用绝对值并标红,便于客户理解
|
|
|
|
|
|
|
+ // 负余额表示尚有待结:文案改「当前待结」,金额用绝对值并标红,便于客户理解
|
|
|
const bal = Number(that.customBalance)
|
|
const bal = Number(that.customBalance)
|
|
|
- const balLabel = bal < 0 ? '最新待结' : '最新余额'
|
|
|
|
|
|
|
+ const balLabel = bal < 0 ? '当前待结' : '当前余额'
|
|
|
const balValue = bal < 0
|
|
const balValue = bal < 0
|
|
|
? ('¥' + that.formatMoney(Math.abs(bal)))
|
|
? ('¥' + that.formatMoney(Math.abs(bal)))
|
|
|
: ('¥' + that.formatMoney(bal))
|
|
: ('¥' + that.formatMoney(bal))
|