|
@@ -7,9 +7,11 @@
|
|
|
<el-tab-pane label="质保资料" name="key2" disabled>
|
|
|
<HcMassForm :table="tableInfo" :info="taskInfo" :is-edit="isEdits" />
|
|
|
</el-tab-pane>
|
|
|
- <el-tab-pane name="key3" label="审计咨询意见">
|
|
|
- <HcHtmlForm ref="htmlFormRef" :detail="detailInfo" />
|
|
|
- </el-tab-pane>
|
|
|
+ <template v-if="!isNullES(detailInfo.opinionType)">
|
|
|
+ <el-tab-pane v-if="detailInfo.opinionType != 4" name="key3" label="审计咨询意见">
|
|
|
+ <HcHtmlForm ref="htmlFormRef" :detail="detailInfo" />
|
|
|
+ </el-tab-pane>
|
|
|
+ </template>
|
|
|
</el-tabs>
|
|
|
<HcMaterialForm v-if="taskInfo.meterType === 2" :table="tableInfo" :info="taskInfo" :is-edit="isEdits" />
|
|
|
<HcStartWorkForm v-if="taskInfo.meterType === 3" :table="tableInfo" :info="taskInfo" :is-edit="isEdits" />
|
|
@@ -37,7 +39,7 @@
|
|
|
<script setup>
|
|
|
import { onMounted, ref, watch } from 'vue'
|
|
|
import { useAppStore } from '~src/store'
|
|
|
-import { getObjValue } from 'js-fast-way'
|
|
|
+import { getObjValue, isNullES } from 'js-fast-way'
|
|
|
import HcMiddlepayForm from './middlepay-form.vue'
|
|
|
import HcMassForm from './mass-form.vue'
|
|
|
import HcStartWorkForm from './start-work-form.vue'
|