|
@@ -461,9 +461,10 @@
|
|
toAuthStore()
|
|
toAuthStore()
|
|
}else{
|
|
}else{
|
|
if(this.detail.status==0 || this.detail.dealerScopeFlag==0){
|
|
if(this.detail.status==0 || this.detail.dealerScopeFlag==0){
|
|
- uni.showToast({
|
|
|
|
- title: '此商品已'+(this.detail.status==0?'下架':'售罄'),
|
|
|
|
- icon: 'none'
|
|
|
|
|
|
+ uni.showModal({
|
|
|
|
+ content: '此商品已'+(this.detail.status==0?'下架':'售罄'),
|
|
|
|
+ showCancel:false,
|
|
|
|
+ confirmText:'知道了'
|
|
})
|
|
})
|
|
}else{
|
|
}else{
|
|
// 打开数量选择弹框
|
|
// 打开数量选择弹框
|
|
@@ -471,9 +472,10 @@
|
|
this.showPopu = true
|
|
this.showPopu = true
|
|
}else{
|
|
}else{
|
|
if(this.hasPay && this.minPayAmount>this.payAmount){
|
|
if(this.hasPay && this.minPayAmount>this.payAmount){
|
|
- uni.showToast({
|
|
|
|
- title: '支付金额不能小于'+this.minPayAmount+'元!',
|
|
|
|
- icon: 'none'
|
|
|
|
|
|
+ uni.showModal({
|
|
|
|
+ content: '支付金额不能小于'+this.minPayAmount+'元!',
|
|
|
|
+ showCancel:false,
|
|
|
|
+ confirmText:'知道了'
|
|
})
|
|
})
|
|
}else{
|
|
}else{
|
|
// 去结算生产订单
|
|
// 去结算生产订单
|