设计出图

This commit is contained in:
2025-08-14 01:50:21 +08:00
parent 07b5d5238a
commit 0872d4ff68
6 changed files with 451 additions and 115 deletions

View File

@ -62,7 +62,7 @@
<el-table-column label="变更文件" align="center" width="300">
<template #default="scope">
<span
v-if="scope.row.ossVoList.length > 0"
v-if="scope.row.ossVoList && scope.row.ossVoList.length > 0"
style="color: rgb(41 145 255); cursor: pointer"
:key="item"
v-for="item of scope.row.ossVoList"
@ -81,7 +81,7 @@
<el-table-column label="备注" align="center" prop="remark" width="150" />
<el-table-column label="操作" fixed="right" width="300">
<template #default="scope">
<el-button type="primary" icon="Upload" @click="handleAddChange(scope.row)" v-if="!scope.row.fileId">上传变更图</el-button>
<el-button type="primary" icon="Upload" @click="handleAddChange(scope.row)" v-if="!scope.row.fileId">上传</el-button>
<el-button type="success" icon="View" @click="handleViewInfo(scope.row)">查看</el-button>
<!-- <el-tooltip content="查看文档" placement="top">
<el-button link type="primary" icon="Document" @click="handleView(scope.row)"></el-button>