Compare commits

..

No commits in common. "6ece1abf9404469e0ca9daa466bcc349cdec3091" and "1f1c515f4fb3b4bacf3096684ad37ee9c13ef0dd" have entirely different histories.

View File

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