完工验收逻辑优化

bug优化0603
WenShiJun 2024-06-12 10:24:27 +08:00
parent 79db9ce7dd
commit 533070cd92
3 changed files with 7 additions and 10 deletions

View File

@ -544,7 +544,7 @@ export default {
},
methods: {
updateRadioValue(key, event) {
this.pd[key] = event.detail.value;
this.pd[key] = event.detail.value || '0';
},
goToDetail(e) {
uni.navigateTo({
@ -619,10 +619,10 @@ export default {
this.buttonloading = true; //
if (STATUS == 8) {
if (_this.pd.FIRE_COMPLETED === "0") {
if (_this.pd.FIRE_COMPLETED === "0" || _this.pd.FIRE_COMPLETED === undefined) {
uni.showModal({
title: "提示",
content: "动火已完成为“否”,不允许通过。",
content: "动火是否完成未确认,不允许通过。",
showCancel: false,
confirmText: "知道了"
});
@ -630,10 +630,10 @@ export default {
uni.hideLoading(); //
return;
}
if (_this.pd.SITE_CLEANED === "0") {
if (_this.pd.SITE_CLEANED === "0" || _this.pd.SITE_CLEANED === undefined) {
uni.showModal({
title: "提示",
content: "作业现场已清理为“否”,不允许通过。",
content: "作业现场已清理未完成,不允许通过。",
showCancel: false,
confirmText: "知道了"
});
@ -641,10 +641,10 @@ export default {
uni.hideLoading(); //
return;
}
if (_this.pd.NO_REMAINING_EMBERS === "0") {
if (_this.pd.NO_REMAINING_EMBERS === "0" || _this.pd.NO_REMAINING_EMBERS === undefined) {
uni.showModal({
title: "提示",
content: "无遗留火种为“否”,不允许通过。",
content: "无遗留火种为未确定,不允许通过。",
showCancel: false,
confirmText: "知道了"
});

View File

@ -378,7 +378,6 @@
hdCount:{},
today :'',
triggered: false,
totalList:[],
isGoodsEdit: false, //
downOption:{

View File

@ -23,7 +23,6 @@
<view v-if="mesCount>0" class="cu-tag badge">{{mesCount}}</view>
</view>
<view :class="PageCur=='works'?'text-blue':'text-gray'">通知</view>
</view>
<view class="action" @click="NavChange" data-cur="my">
<view class='cuIcon-cu-image'>
@ -112,7 +111,6 @@
// this.checkUpdate("android");
},
onShow() {
console.log(this.$refs.basics,1515)
//
if(this.$refs.basics){
this.$refs.basics.getSumCount()