video.js
3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'video/index' + location.search,
add_url: 'video/add',
edit_url: 'video/edit',
del_url: 'video/del',
multi_url: 'video/multi',
table: 'video',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'title', title: __('Title')},
{field: 'keyword', title: __('Keyword')},
{field: 'thumbnail', title: __('Thumbnail'), events: Table.api.events.image,formatter: Table.api.formatter.image},
{field: 'type_ids', title: __('Type_ids'),searchList:$.getJSON('video/type')},
{field: 'water_url', title: __('Water_url'), formatter: Table.api.formatter.url},
{field: 'two_url', title: __('Two_url'), formatter: Table.api.formatter.url},
{field: 'four_url', title: __('Four_url'), formatter: Table.api.formatter.url},
{field: 'eight_url', title: __('Eight_url'), formatter: Table.api.formatter.url},
{field: 'is_recommend', title: __('Is_recommend'),formatter: Table.api.formatter.label,searchList:{'0': '否', '1': '是'}},
{field: 'buy_num', title: __('Buy_num')},
{field: 'click_num', title: __('Click_num')},
{field: 'price', title: __('Price')},
{field: 'vip_price', title: __('Vip_price')},
{field: 'four_price', title: __('Four_price')},
{field: 'four_vipprice', title: __('Four_vipprice')},
{field: 'eight_price', title: __('Eight_price')},
{field: 'eight_vipprice', title: __('Eight_vipprice')},
{field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', formatter: Table.api.formatter.datetime},
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
},
add: function () {
Controller.api.bindevent();
},
edit: function () {
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
}
}
};
return Controller;
});