Browse Source

fix:加上审计报告

main
buaixuexideshitongxue 3 weeks ago
parent
commit
0a60dc4600
  1. 11
      src/views/warning/components/detail.vue

11
src/views/warning/components/detail.vue

@ -317,6 +317,16 @@ const isTooltipDisabled = (value, placeholder = "") => {
}
return (value === null || value === undefined || value === "") && !placeholder;
};
function showSjbg() {
if(!formData.value.project.node){
return false;
}
const node = formData.value.project.node;
const nodes = ['original', 'audit', 'end'];
return nodes.indexOf(node) > -1
}
//
const getDetailFun = async (val) => {
@ -1149,6 +1159,7 @@ watch(() => formData.value.project.auditUnitId, (val) => {
<el-tab-pane v-if="FileTabShowFun()" label="审计附件" name="audit"></el-tab-pane>
<el-tab-pane v-if="formData.review?.isExploration === '1'" label="勘察附件" name="exploration"></el-tab-pane>
<el-tab-pane v-if="formData.review?.isCross === '1'" label="对审附件" name="cross"></el-tab-pane>
<el-tab-pane v-if="showSjbg()" label="审计报告" name="sjbg"></el-tab-pane>
</el-tabs>
<el-table :data="formData.files[activeName]" preserve-expanded-content >
<el-table-column type="expand">

Loading…
Cancel
Save