设计管理

This commit is contained in:
2025-08-19 20:01:29 +08:00
parent 53309746f5
commit 271f99fb16
12 changed files with 599 additions and 330 deletions

View File

@ -93,7 +93,7 @@
link
icon="View"
v-hasPermi="['design:designChange:query']"
v-if="scope.row.status == 'back' || scope.row.status == 'termination'"
v-if="scope.row.status != 'draft'"
@click="handleViewHistory(scope.row)"
>查看单据</el-button
>
@ -107,13 +107,7 @@
<el-table v-if="fileList.length > 0" :data="fileList" style="width: 100%" border>
<el-table-column prop="fileName" label="文件名称" align="center">
<template #default="scope">
<el-link
:key="scope.row.fileId"
:href="scope.row.fileUrl"
target="_blank"
:type="scope.row.status == '1' ? 'primary' : 'info'"
:underline="false"
>
<el-link :key="scope.row.fileId" :href="scope.row.fileUrl" target="_blank" type="primary" :underline="false">
{{ scope.row.originalName }}
</el-link>
</template>