This commit is contained in:
2025-08-19 21:15:01 +08:00
parent adb3ba7123
commit 616e9fc7b7
4 changed files with 31 additions and 33 deletions

View File

@ -65,9 +65,7 @@
</el-table-column>
<el-table-column label="外部意见" align="center">
<template #default="scope">
<el-link v-if="scope.row.opinion" :key="scope.row.opinion" :href="scope.row.opinion" target="_blank" type="primary" :underline="false">
{{ scope.row.opinion }}
</el-link>
<el-link v-if="scope.row.opinion" :href="scope.row.opinion" target="_blank" type="primary"> 查看文件 </el-link>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" />
@ -427,6 +425,7 @@ const handleAdd = () => {
const handleView = (row?: any) => {
fileList.value = row.fileVoList;
design.value = row.design;
activeName.value = '3';
getVolumeFileList('3');
viewVisible.value = true;
};
@ -447,6 +446,9 @@ const onSubmitOpinion = async () => {
return;
}
await updateVolumeCatalog({ ...updateRow.value });
proxy?.$modal.msgSuccess('操作成功');
uploadOpinionVisible.value = false;
await getList();
};
const onUploadSuccess = (fileList, res) => {
if (res.code == 200) {