From c5138cba353672c56151d8f106672b9657117771 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 01 Mar 2021 15:05:43 +0800 Subject: [PATCH] 20210321 算力系统查询公告后台页面修改 --- src/main/resources/templates/febs/views/modules/helpCenter/helpCenterAdd.html | 1 + src/main/resources/templates/febs/views/modules/helpCenter/helpCenterList.html | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterAdd.html b/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterAdd.html index d283c54..7499e74 100644 --- a/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterAdd.html +++ b/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterAdd.html @@ -32,6 +32,7 @@ <input type="radio" name="articleNotice" value="1" title="最新公告" checked=""> <input type="radio" name="articleNotice" value="2" title="重要公告"> <input type="radio" name="articleNotice" value="3" title="关于我们"> + <input type="radio" name="articleNotice" value="4" title="算力系统"> </div> </div> <div class="layui-inline"> diff --git a/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterList.html b/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterList.html index a9c898a..ccdef4d 100644 --- a/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterList.html +++ b/src/main/resources/templates/febs/views/modules/helpCenter/helpCenterList.html @@ -133,9 +133,11 @@ return '<span style="color:green;">最新公告</span>' } else if (d.articleNotice === 2) { return '<span style="color:red;">重要公告</span>' - } else if (d.articleNotice === 4) { + } else if (d.articleNotice === 3) { return '<span style="color:blue;">关于我们</span>' - }else{ + }else if (d.articleNotice === 4) { + return '<span style="color:blue;">算力系统</span>' + }else{ return '' } }, minWidth: 80,align:'center'}, -- Gitblit v1.9.1