|
|
|
@ -79,7 +79,7 @@
|
|
|
|
|
<view v-for="(item, index) in configSet" :key="index"> |
|
|
|
|
<view class="big-title">{{ item.title }}</view> |
|
|
|
|
<view v-for="(value, idx) in item.check_conf_msg" :key="idx" class="cyxj-content" > |
|
|
|
|
<view class="cyxj-content-card" v-if="item.set == 1"> |
|
|
|
|
<view class="cyxj-content-card" v-if="item.check_conf_msg[idx].status == 1"> |
|
|
|
|
<view class="xx-card"> |
|
|
|
|
<view class="xx-title">{{ value.title }}</view> |
|
|
|
|
<view class="xx-ul"> |
|
|
|
@ -221,7 +221,7 @@ export default {
|
|
|
|
|
for (let b in this.configSet) { |
|
|
|
|
for (let i in this.configSet[b].check_conf_msg) { |
|
|
|
|
let items = this.configSet[b].check_conf_msg[i]; |
|
|
|
|
if (this.configSet[b].set == 1) { |
|
|
|
|
if (this.configSet[b].status == 1) { |
|
|
|
|
if (items.choice == 'NG' && (!items.content || !items.situation)) { |
|
|
|
|
this.$functions.error('请完整填写信息'); |
|
|
|
|
return false; |
|
|
|
|