Compare commits

...

2 Commits

Author SHA1 Message Date
PQZ
6ece1abf94 Merge branch 'master' of http://122.51.230.86:3000/dianliang/lanan-repair-app 2024-11-13 09:49:20 +08:00
PQZ
21d9c7cc04 1 2024-11-13 09:49:17 +08:00

View File

@ -107,16 +107,18 @@ export default {
},
confirmOpe(type){
let forSign = true
this.repairList.map(item=>{
if (item.wares.price == null || item.wares.price == ''){
uni.showToast({
title: '售价不能为空!',
icon: 'none'
})
forSign = false
return;
}
})
if (type == 'yes') {
this.repairList.map(item=>{
if (item.wares.price == null || item.wares.price == ''){
uni.showToast({
title: '售价不能为空!',
icon: 'none'
})
forSign = false
return;
}
})
}
if (!forSign) {
return;
}