From 8bf923b44bbe9b45b73ddcc25df75c9c59f54e07 Mon Sep 17 00:00:00 2001 From: Hentua <wangdoubleone@gmail.com> Date: Thu, 15 Jun 2023 11:19:44 +0800 Subject: [PATCH] fix --- src/main/resources/templates/febs/views/modules/news/newsInfoList.html | 31 ++++++++++++++++++++++++++++--- 1 files changed, 28 insertions(+), 3 deletions(-) diff --git a/src/main/resources/templates/febs/views/modules/news/newsInfoList.html b/src/main/resources/templates/febs/views/modules/news/newsInfoList.html index 6b584bf..c13b975 100644 --- a/src/main/resources/templates/febs/views/modules/news/newsInfoList.html +++ b/src/main/resources/templates/febs/views/modules/news/newsInfoList.html @@ -28,7 +28,17 @@ .layui-table-cell { height: auto; } + .layui-form-onswitch { + background-color: #5FB878 !important; + } </style> +<script type="text/html" id="isTopSwitch"> + {{# if(d.isTop === 1) { }} + <input type="checkbox" value={{d.id}} lay-text="是|否" checked lay-skin="switch" lay-filter="isTopSwitch"> + {{# } else { }} + <input type="checkbox" value={{d.id}} lay-text="是|否" lay-skin="switch" lay-filter="isTopSwitch"> + {{# } }} +</script> <!-- 表格操作栏 start --> <script type="text/html" id="user-option"> <span shiro:lacksPermission="user:view,user:update,user:delete"> @@ -63,7 +73,7 @@ var data = obj.data, layEvent = obj.event; if (layEvent === 'newsInfoUpdate') { - febs.modal.open('编辑', 'modules/news/newsInfoUpdate/' + data.id, { + febs.modal.open('编辑', 'modules/news/newsInfoUpdate/' + data.id +'/notice', { btn: ['提交', '取消'], yes: function (index, layero) { $('#newsInfo-update').find('#submit').trigger('click'); @@ -101,7 +111,7 @@ }); $add.on('click', function () { - febs.modal.open('新增', 'modules/news/newsInfoAdd/', { + febs.modal.open('新增', 'modules/news/newsInfoAdd/notice', { btn: ['提交', '取消'], yes: function (index, layero) { $('#newsInfo-add').find('#submit').trigger('click'); @@ -116,7 +126,7 @@ tableIns = febs.table.init({ elem: $view.find('table'), id: 'newInfoTable', - url: ctx + 'admin/news/getNewInfoList', + url: ctx + 'admin/news/getNewInfoList?code=notice', cols: [[ {field: 'title', title: '标题', minWidth: 120,align:'center'}, {field: 'categoryName', title: '分类', minWidth: 120,align:'center'}, @@ -124,6 +134,7 @@ templet: function (d) { return '<a lay-event="seeImgThumb"><img id="seeImgThumb'+d.id+'" src="'+d.thumb+'" alt=""></a>'; }, minWidth: 150,align:'center'}, + {templet: '#isTopSwitch', title: '是否首页显示', minWidth: 120,align:'center'}, {field: 'createdTime', title: '创建时间', minWidth: 120,align:'center'}, {title: '操作', templet: function (d) { @@ -140,5 +151,19 @@ }; } + form.on('switch(isTopSwitch)', function (data) { + console.log(data.value); + if (data.elem.checked) { + febs.post(ctx + 'admin/news/topNews/' + data.value, null, function () { + febs.alert.success('设置成功'); + $query.click(); + }); + } else { + febs.post(ctx + 'admin/news/unTopNews/' + data.value, null, function () { + febs.alert.success('设置成功'); + $query.click(); + }); + } + }) }) </script> \ No newline at end of file -- Gitblit v1.9.1