优化
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user