Authored by 郝肖肖

有货币弹框宽度调整

... ... @@ -609,7 +609,7 @@
.yoho-coin-help-dialog {
position: fixed;
width: 450px;
width: 540px;
height: 510px;
background-color: #fff;
z-index: 2;
... ...
... ... @@ -31,7 +31,7 @@ function yohoCoinCompute(orderCompute) {
}
if (yohoCoinData.totalYohoCoinNum < 100) {
yohoCoinData.yohoCoinMsg = '共{yohoCoinData.totalYohoCoinNum}有货币,满{orderCompute.yoho_coin_pay_rule.num_limit}可用';
yohoCoinData.yohoCoinMsg = `共${yohoCoinData.totalYohoCoinNum}有货币,满${orderCompute.yoho_coin_pay_rule.num_limit}可用`;
} else if (yohoCoinData.useYohoCoin > 0 || yohoCoinData.yohoCoin > 0) {
yohoCoinData.yohoCoinMsg = '可抵¥' + (yohoCoinData.useYohoCoin > 0 ? yohoCoinData.useYohoCoin : yohoCoinData.yohoCoin);
yohoCoinData.yohoCoinClick = 1;
... ...