diff --git a/api/common/notic.js b/api/common/notic.js new file mode 100644 index 0000000..ebf6128 --- /dev/null +++ b/api/common/notic.js @@ -0,0 +1,32 @@ +import request from '@/utils/request' + +export const NoticApi = { + /** + * 获取标签数据 + */ + getTabData: () => { + return request({ + url: '/system/notify-message/typeCount', + method: 'GET', + }) + }, + /** + * 获取列表数据 + */ + getListData: params => { + return request({ + url: '/system/notify-message/page', + method: 'GET', + params + }) + }, + /** + * 已读 + */ + readNotic: id => { + return request({ + url: `/system/notify-message/update-read?ids=${id}`, + method: 'PUT', + }) + } +} \ No newline at end of file diff --git a/sub/owner/notic.vue b/sub/owner/notic.vue index 7b79554..d7bf887 100644 --- a/sub/owner/notic.vue +++ b/sub/owner/notic.vue @@ -3,14 +3,16 @@ - {{ tab.name }} - {{ tab.count }} + + {{ $dict.echoDicValue(dictMap.notfy_message_type, tab.label) }} + + {{ tab.value }} @@ -26,13 +28,13 @@ - + - {{ item.title }} - {{ item.time }} + + {{ item.templateParams.title }} + + + {{ + `${$util.formatDate( + item.templateParams.startTime, + 'YYYY年M月D日' + )} - + ${$util.formatDate( + item.templateParams.endTime, + 'YYYY年M月D日' + )}` + }} + + + {{ + `到期时间 + ${$util.formatDate(item.templateParams.endTime, 'YYYY年M月D日')}` + }} + - +