Commit 0e8d5dad authored by 13841799530's avatar 13841799530

bug修复

解润东
20220119
parent 642c7aa9
Pipeline #7878 passed with stage
in 14 seconds
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
</div> </div>
</van-checkbox-group> </van-checkbox-group>
<div class="page-footer"> <div class="page-footer">
<van-checkbox v-model="checkedAll" @change="checkedAllEvent" @click="checkedAllClick" :disabled="finish=='true'?true:false">全选</van-checkbox> <van-checkbox v-model="checkedAll" @change="checkedAllEvent" @click="checkedAllClick" v-if="noticeQuestionList.length>0" :disabled="finish=='true'?true:false">全选</van-checkbox>
</div> </div>
<van-field <van-field
readonly readonly
...@@ -500,7 +500,9 @@ export default { ...@@ -500,7 +500,9 @@ export default {
title: '提示', title: '提示',
message: '确定生成整改通知单?', message: '确定生成整改通知单?',
}).then(()=>{ }).then(()=>{
if(checkedList.length==0){this.$toast.fail('提交失败,请至少选择一个问题');return} if(this.noticeQuestionList.length>0){
if(checkedList.length==0){this.$toast.fail('提交失败,请至少选择一个问题');return}
}
var success=true var success=true
var num=0 var num=0
this.noticeTableList.forEach((item)=>{ this.noticeTableList.forEach((item)=>{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment