From 8c6f0393f6f12928e3f549517e2b63c1e6798df1 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 16 Dec 2021 17:35:23 +0800
Subject: [PATCH] 20211216
---
src/main/resources/templates/febs/views/video/video/video-list.html | 86 +++++++++++++++++++++----------------------
1 files changed, 42 insertions(+), 44 deletions(-)
diff --git a/src/main/resources/templates/febs/views/video/video/video-list.html b/src/main/resources/templates/febs/views/video/video/video-list.html
index da5d066..49123d9 100644
--- a/src/main/resources/templates/febs/views/video/video/video-list.html
+++ b/src/main/resources/templates/febs/views/video/video/video-list.html
@@ -23,6 +23,17 @@
</select>
</div>
</div>
+
+ <div class="layui-inline">
+ <label class="layui-form-label layui-form-label-sm">是否会员</label>
+ <div class="layui-input-inline">
+ <select name="isUp">
+ <option value=""></option>
+ <option value="1">免费</option>
+ <option value="2">会员</option>
+ </select>
+ </div>
+ </div>
</div>
</div>
<div class="layui-col-md2 layui-col-sm12 layui-col-xs12 table-action-area">
@@ -45,32 +56,31 @@
</div>
</div>
</div>
-<script type="text/html" id="user-status">
+<script type="text/html" id="is-up-format">
{{#
var status = {
- 1: {title: '有效', color: 'green'},
- 0: {title: '禁用', color: 'volcano'}
- }[d.status];
+ 1: {title: '上架', color: 'green'},
+ 2: {title: '下架', color: 'volcano'}
+ }[d.isUp];
}}
<span class="layui-badge febs-bg-{{status.color}}">{{ status.title }}</span>
</script>
-<script type="text/html" id="user-sex">
+<script type="text/html" id="is-free-format">
{{#
- var sex = {
- 2: {title: '保密'},
- 1: {title: '女'},
- 0: {title: '男'}
- }[d.sex];
+ var free = {
+ 2: {title: '会员'},
+ 1: {title: '免费'}
+ }[d.isFree];
}}
- <span>{{ sex.title }}</span>
+ <span>{{ free.title }}</span>
</script>
<script type="text/html" id="user-option">
- <span shiro:lacksPermission="user:view,user:update,user:delete">
+ <span shiro:lacksPermission="video:view,video:update,video:delete">
<span class="layui-badge-dot febs-bg-orange"></span> 无权限
</span>
- <a lay-event="edit" shiro:hasPermission="user:update"><i
+ <a lay-event="edit" shiro:hasPermission="video:update"><i
class="layui-icon febs-edit-area febs-blue"></i></a>
- <a lay-event="del" shiro:hasPermission="user:delete"><i class="layui-icon febs-edit-area febs-red"></i></a>
+ <a lay-event="del" shiro:hasPermission="video:delete"><i class="layui-icon febs-edit-area febs-red"></i></a>
</script>
<script data-th-inline="none" type="text/javascript">
layui.use(['dropdown', 'jquery', 'laydate', 'form', 'table', 'febs', 'treeSelect'], function () {
@@ -98,10 +108,9 @@
click: function (name, elem, event) {
var checkStatus = table.checkStatus('videoTable');
if (name === 'add') {
- febs.modal.open('新增用户', 'system/user/add', {
+ febs.modal.view('新增视频', 'video/add', {
btn: ['提交', '重置'],
- area: $(window).width() <= 750 ? '95%' : '50%',
- offset: '30px',
+ area: ['100%', '100%'],
yes: function (index, layero) {
$('#video-add').find('#submit').trigger('click');
},
@@ -113,9 +122,9 @@
}
if (name === 'delete') {
if (!checkStatus.data.length) {
- febs.alert.warn('请选择需要删除的用户');
+ febs.alert.warn('请选择需要删除的视频');
} else {
- febs.modal.confirm('删除用户', '确定删除该用户?', function () {
+ febs.modal.confirm('删除视频', '确定删除该视频?', function () {
var userIds = [];
layui.each(checkStatus.data, function (key, item) {
userIds.push(item.userId)
@@ -127,11 +136,11 @@
},
options: [{
name: 'add',
- title: '新增用户',
+ title: '新增视频',
perms: 'user:add'
}, {
name: 'delete',
- title: '删除用户',
+ title: '删除视频',
perms: 'user:delete'
}]
});
@@ -140,18 +149,13 @@
table.on('tool(videoTable)', function (obj) {
var data = obj.data,
layEvent = obj.event;
- if (layEvent === 'detail') {
- febs.modal.view('用户信息', 'system/user/detail/' + data.name, {
- area: $(window).width() <= 750 ? '95%' : '660px'
- });
- }
if (layEvent === 'del') {
- febs.modal.confirm('删除用户', '确定删除该用户?', function () {
+ febs.modal.confirm('删除视频', '确定删除该视频?', function () {
deleteUsers(data.userId);
});
}
if (layEvent === 'edit') {
- febs.modal.open('修改用户', 'system/user/update/' + data.name, {
+ febs.modal.open('修改视频', 'video/update/' + data.name, {
area: $(window).width() <= 750 ? '90%' : '50%',
offset: '30px',
btn: ['提交', '取消'],
@@ -193,16 +197,14 @@
tableIns = febs.table.init({
elem: $view.find('table'),
id: 'videoTable',
- url: ctx + 'user/list',
+ url: ctx + 'video/video/list',
cols: [[
{type: 'checkbox'},
- {field: 'name', title: '用户名', minWidth: 100},
- {title: '性别', templet: '#user-sex'},
- {field: 'deptName', title: '部门'},
- {field: 'mobile', title: '手机', minWidth: 165},
- {field: 'email', title: '邮箱', minWidth: 180},
- {title: '状态', templet: '#user-status'},
- {field: 'createTime', title: '创建时间', minWidth: 180, sort: true},
+ {field: 'title', title: '视频名', minWidth: 100},
+ {field: 'thumb', title: '缩略图'},
+ {title: '是否上架', templet: '#is-up-format'},
+ {title: '会员', templet: '#is-free-format'},
+ {field: 'createdTime', title: '创建时间', minWidth: 180, sort: true},
{title: '操作', toolbar: '#user-option', minWidth: 140}
]]
});
@@ -212,18 +214,14 @@
return {
name: $searchForm.find('input[name="name"]').val().trim(),
isUp: $searchForm.find("select[name='isUp']").val(),
+ isFree: $searchForm.find("select[name='isFree']").val(),
invalidate_ie_cache: new Date()
};
}
- function deleteUsers(userIds) {
- var currentUserId = currentUser.userId + '';
- if (('' + userIds).split(',').indexOf(currentUserId) !== -1) {
- febs.alert.warn('所选用户包含当前登录用户,无法删除');
- return;
- }
- febs.get(ctx + 'user/delete/' + userIds, null, function () {
- febs.alert.success('删除用户成功');
+ function deleteUsers(ids) {
+ febs.get(ctx + 'video/delete/' + ids, null, function () {
+ febs.alert.success('删除视频成功');
$query.click();
});
}
--
Gitblit v1.9.1