|
|
|
|
@ -83,10 +83,10 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div v-if="currentRow.reportFile?.length"> |
|
|
|
|
<div class="text-primary mt-10 mb-10">督察报告附件</div> |
|
|
|
|
<file-list :files="currentRow.reportFile"/> |
|
|
|
|
</div> |
|
|
|
|
<!-- <div v-if="currentRow.reportFile?.length">--> |
|
|
|
|
<!-- <div class="text-primary mt-10 mb-10">督察报告附件</div>--> |
|
|
|
|
<!-- <file-list :files="currentRow.reportFile"/>--> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
|
|
|
|
|
<div v-if="currentRow.thingFiles?.length"> |
|
|
|
|
<div class="text-primary mt-10 mb-10">附件</div> |
|
|
|
|
@ -1552,6 +1552,22 @@
|
|
|
|
|
</div> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item |
|
|
|
|
prop="files" |
|
|
|
|
label-position="top" |
|
|
|
|
> |
|
|
|
|
<template #label> |
|
|
|
|
<h5 class="inline-block mb-0" style="text-align: left">佐证材料</h5> |
|
|
|
|
</template> |
|
|
|
|
<div style="width: 100%" class="mb-10 mt-10"> |
|
|
|
|
<file-upload-group |
|
|
|
|
v-model:files="form.files" |
|
|
|
|
:problemSourcesCode="negative.problemSourcesCode" |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
<file-list v-model:files="form.files" :removeEnable="true" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
</el-form> |
|
|
|
|
</template> |
|
|
|
|
<script lang="ts" setup> |
|
|
|
|
@ -1606,6 +1622,8 @@ watchEffect(() => {
|
|
|
|
|
const negative = inject("negative"); |
|
|
|
|
const form = ref({ |
|
|
|
|
handlePolices: [{}], |
|
|
|
|
files: [], |
|
|
|
|
thingFiles: [], |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
//禁闭信息数组 |
|
|
|
|
|