优化
This commit is contained in:
@ -38,7 +38,14 @@
|
||||
<el-table-column label="操作" align="center">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['design:extract:query']">审核</el-button>
|
||||
<el-button link type="primary" icon="Download" @click="handleDownload(scope.row)" v-hasPermi="['design:extract:export']">导出</el-button
|
||||
<el-button
|
||||
link
|
||||
type="primary"
|
||||
v-if="scope.row.status != 'finish'"
|
||||
icon="Download"
|
||||
@click="handleDownload(scope.row)"
|
||||
v-hasPermi="['design:extract:export']"
|
||||
>导出</el-button
|
||||
><el-button
|
||||
link
|
||||
type="warning"
|
||||
@ -65,15 +72,17 @@
|
||||
<el-table :loading="loadingFlie" :data="fileList" style="width: 100%" border>
|
||||
<el-table-column prop="fileName" label="文件名称" align="center">
|
||||
<template #default="scope">
|
||||
<el-link
|
||||
<!-- <el-link
|
||||
:key="scope.row.fileId"
|
||||
:href="scope.row.fileUrl"
|
||||
target="_blank"
|
||||
:type="scope.row.status == '1' ? 'primary' : 'info'"
|
||||
:underline="false"
|
||||
disabled
|
||||
>
|
||||
{{ scope.row.fileName }}
|
||||
</el-link>
|
||||
</el-link> -->
|
||||
<span>{{ scope.row.fileName }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="版本号" align="center" width="120" prop="version"> </el-table-column>
|
||||
|
Reference in New Issue
Block a user