|
@@ -286,7 +286,7 @@
|
|
</sd-form-item-td>
|
|
</sd-form-item-td>
|
|
</tr>
|
|
</tr>
|
|
<!-- 问题性质 -->
|
|
<!-- 问题性质 -->
|
|
- <tr v-if="logInfo === 2">
|
|
|
|
|
|
+ <tr v-if="logInfo === 2 && model.questionFlag === 1">
|
|
<sd-form-item-td :colspan="3" :name="'questionNature'" :label="'问题性质'">
|
|
<sd-form-item-td :colspan="3" :name="'questionNature'" :label="'问题性质'">
|
|
<a-select v-model="model.questionNature" placeholder="请选择问题性质">
|
|
<a-select v-model="model.questionNature" placeholder="请选择问题性质">
|
|
<a-select-option v-for="(item, i) in questionOption" :key="i" :value="item">{{
|
|
<a-select-option v-for="(item, i) in questionOption" :key="i" :value="item">{{
|
|
@@ -295,7 +295,7 @@
|
|
</a-select>
|
|
</a-select>
|
|
</sd-form-item-td>
|
|
</sd-form-item-td>
|
|
</tr>
|
|
</tr>
|
|
- <tr v-else>
|
|
|
|
|
|
+ <tr v-else-if="model.questionFlag === 1">
|
|
<!-- 只读问题性质 -->
|
|
<!-- 只读问题性质 -->
|
|
<sd-form-item-td
|
|
<sd-form-item-td
|
|
:colspan="3"
|
|
:colspan="3"
|
|
@@ -335,6 +335,7 @@ const xzList = [
|
|
'制度理解存在人为偏差',
|
|
'制度理解存在人为偏差',
|
|
'工作疏忽未按制度行事',
|
|
'工作疏忽未按制度行事',
|
|
'人为规避制度管控要求',
|
|
'人为规避制度管控要求',
|
|
|
|
+ '其它',
|
|
]
|
|
]
|
|
const baseData = [
|
|
const baseData = [
|
|
[
|
|
[
|
|
@@ -579,7 +580,7 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 如果是处于第一阶段则需要选择问题性质
|
|
// 如果是处于第一阶段则需要选择问题性质
|
|
- if (this.logInfo === 2) {
|
|
|
|
|
|
+ if (this.logInfo === 2 && questionFlag === 1) {
|
|
// 判断问题性质是否已经选择
|
|
// 判断问题性质是否已经选择
|
|
const questionNature = this.$refs.docform.getFieldValue('questionNature')
|
|
const questionNature = this.$refs.docform.getFieldValue('questionNature')
|
|
if (!questionNature) {
|
|
if (!questionNature) {
|