refactor: ♻️ 优化button图标使用方式

This commit is contained in:
ray
2024-11-12 22:32:46 +08:00
parent 78cafd9653
commit a5a6e21ae9
9 changed files with 204 additions and 631 deletions

View File

@@ -27,13 +27,8 @@
</el-form>
</div>
<el-card shadow="never" class="table-wrapper">
<el-table
ref="dataTableRef"
v-loading="loading"
:data="pageData"
highlight-current-row
>
<el-card shadow="never">
<el-table ref="dataTableRef" v-loading="loading" :data="pageData" highlight-current-row>
<el-table-column type="index" label="序号" width="60" />
<el-table-column label="通知标题" prop="title" min-width="200" />
<el-table-column align="center" label="通知类型" width="150">
@@ -41,12 +36,7 @@
<DictLabel v-model="scope.row.type" code="notice_type" />
</template>
</el-table-column>
<el-table-column
align="center"
label="发布人"
prop="publisherName"
width="100"
/>
<el-table-column align="center" label="发布人" prop="publisherName" width="100" />
<el-table-column align="center" label="通知等级" width="100">
<template #default="scope">
<DictLabel v-model="scope.row.level" code="notice_level" />
@@ -60,12 +50,7 @@
width="150"
/>
<el-table-column
align="center"
label="发布人"
prop="publisherName"
width="150"
/>
<el-table-column align="center" label="发布人" prop="publisherName" width="150" />
<el-table-column align="center" label="状态" width="100">
<template #default="scope">
<el-tag v-if="scope.row.isRead == 1" type="success">已读</el-tag>
@@ -74,12 +59,7 @@
</el-table-column>
<el-table-column align="center" fixed="right" label="操作" width="80">
<template #default="scope">
<el-button
type="primary"
size="small"
link
@click="viewNoticeDetail(scope.row.id)"
>
<el-button type="primary" size="small" link @click="viewNoticeDetail(scope.row.id)">
查看
</el-button>
</template>