|  |  | 
 |  |  |     .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"> | 
 |  |  | 
 |  |  |                         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) { | 
 |  |  | 
 |  |  |             }; | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |         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> |