diff --git a/src/views/data/notice/columns.ts b/src/views/data/notice/columns.ts index 7dd52f2..44c70b7 100644 --- a/src/views/data/notice/columns.ts +++ b/src/views/data/notice/columns.ts @@ -11,12 +11,12 @@ export const columns = [ width: 100, }, { - label: '标题', + label: '通知标题', prop: 'title', width: 300, }, { - label: '封面', + label: '通知封面', prop: 'cover', render(record) { return h(ElAvatar, { @@ -29,7 +29,7 @@ export const columns = [ width: 100, }, { - label: '类型', + label: '通知类型', prop: 'type', // render(record) { // return h('span', record.row.type === 1 ? '通知' : '公告'); @@ -47,7 +47,7 @@ export const columns = [ }, }, { - label: '状态', + label: '通知状态', prop: 'status', // render(record) { // return h('span', record.row.status === 1 ? '正常' : '关闭') diff --git a/src/views/data/notice/edit.vue b/src/views/data/notice/edit.vue index be2b5f6..5491a9a 100644 --- a/src/views/data/notice/edit.vue +++ b/src/views/data/notice/edit.vue @@ -56,7 +56,7 @@