fix(news): 对着米游社的命名改了一下,对活动的 news_meta 进行处理渲染

* 回头找个色卡来搞一下,这些颜色好丑啊
This commit is contained in:
BTMuli
2023-03-10 10:41:32 +08:00
parent 1521dcc023
commit 15310bae94
2 changed files with 60 additions and 54 deletions

View File

@@ -83,22 +83,24 @@ export interface ResponsePost {
/**
* @description 官方动态类型
* @description 参考米游社官方页面
* @enum {number}
* @return {number}
*/
export enum EnumPostType {
/**
* @description 活动
* @description 这个有 news_meta
*/
Activity = 1,
Activity = 2,
/**
* @description 公告
*/
News = 2,
Notice = 1,
/**
* @description 咨讯
*/
Notice = 3,
News = 3,
}
/**