|
@@ -403,7 +403,9 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="attachment" label="附件" width="">
|
|
|
<template #default="scope">
|
|
|
- <el-link :href="scope.row.attachment" target="_blank" type="primary">查看附件</el-link>
|
|
|
+ <el-link v-if="scope.row.attachment" :href="scope.row.attachment" target="_blank"
|
|
|
+ type="primary">查看附件</el-link>
|
|
|
+ <el-link v-else target="_blank" type="info" disabled>暂无附件</el-link>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column fixed="right" label="操作" width="">
|