|
@@ -6,14 +6,14 @@
|
|
|
<div v-if='checkType=="firstCheck"||checkType=="secondCheck"'>
|
|
|
<p>强制检查项</p>
|
|
|
<p v-for="(t,i) in check[checkType].checkList" :key='i'>
|
|
|
- <i class="el-icon-check" v-if="!t.check"></i>
|
|
|
- <i class="el-icon-close" v-else></i>
|
|
|
+ <i class="el-icon-check" v-if="show&&!t.check"></i>
|
|
|
+ <i class="el-icon-close" v-if="show&&t.check"></i>
|
|
|
{{t.name}}
|
|
|
</p>
|
|
|
<p v-if="check[checkType].notCheckList.length">非强制检查项</p>
|
|
|
<p v-for="(t,i) in check[checkType].notCheckList" :key='-i-1'>
|
|
|
- <i class="el-icon-check" v-if="!t.check"></i>
|
|
|
- <i class="el-icon-close" v-else></i>
|
|
|
+ <i class="el-icon-check" v-if="show&&!t.check"></i>
|
|
|
+ <i class="el-icon-close" v-if="show&&t.check"></i>
|
|
|
{{t.name}}
|
|
|
</p>
|
|
|
</div>
|
|
@@ -64,6 +64,7 @@ export default {
|
|
|
notCheckList: [],
|
|
|
}
|
|
|
},
|
|
|
+ show: false,
|
|
|
errMsg: '',
|
|
|
checkType: ''
|
|
|
};
|
|
@@ -73,6 +74,7 @@ export default {
|
|
|
this.errMsg = msg.ErrorMsg || '';
|
|
|
this.checkType = type || '';
|
|
|
this.title = title
|
|
|
+ this.show = msg.BeginTime
|
|
|
if (type) {
|
|
|
this.check[type].checkList.forEach(t => {
|
|
|
if (t.value && t.value == 'GridCheck') {
|