设计变更审批

This commit is contained in:
Teo
2025-08-23 06:36:17 +08:00
parent 5ffe04d20e
commit 4d0845ee53
8 changed files with 756 additions and 130 deletions

View File

@ -74,14 +74,14 @@
link
icon="Upload"
@click="handleAddChange(scope.row)"
v-if="scope.row.status == 'draft' || scope.row.status == 'back'"
v-if="(scope.row.status == 'finish' || scope.row.costEstimation == '0') && scope.row.auditStatus == 'draft'"
>上传</el-button
>
<el-button
type="success"
link
icon="View"
v-if="scope.row.status != 'draft'"
v-if="scope.row.auditStatus != 'draft'"
v-hasPermi="['design:designChange:query']"
@click="handleViewInfo(scope.row)"
>查看</el-button
@ -238,6 +238,7 @@ const handleViewInfo = (row) => {
path: `/approval/drawing/indexEdit`,
query: {
id: row.id,
costEstimation: row.costEstimation,
type: 'view'
}
});