This commit is contained in:
weipengfei 2024-03-22 18:19:34 +08:00
parent 9d59bcd0e3
commit 8b2b5a9229
3 changed files with 6 additions and 4 deletions

View File

@ -2,8 +2,8 @@
"name" : "惠农生活",
"appid" : "__UNI__3A527D1",
"description" : "",
"versionName" : "2.0.06",
"versionCode" : 2006,
"versionName" : "2.0.07",
"versionCode" : 2007,
"transformPx" : false,
/* 5+App */
"app-plus" : {

View File

@ -1060,6 +1060,7 @@
that.hotTitle = '加载中';
query.page = that.hotPage;
query.limit = that.hotLimit;
query.sale_type = 1;
getProductslist({
...query
}).then(res => {

View File

@ -585,8 +585,9 @@
if (!that.payType) return that.$util.Tips({
title: '请选择支付方式'
});
if (that.payType == 'balance' && this.userInfo.now_money < this.payForm.money) {
if (that.payType == 'balance' && +this.userInfo.now_money < +this.payForm.money) {
return that.$util.Tips({
title: '余额不足,请选择其他的支付方式!'
});