goods.js
6.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'goods/index' + location.search,
add_url: 'goods/add',
edit_url: 'goods/edit',
del_url: 'goods/del',
multi_url: 'goods/multi',
table: 'goods',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'btype.name', title: __('Btype.name'),operate:'LIKE'},//品牌名称
{field: 'btype.address', title: __('Btype.address')},//品牌产地
{field: 'name', title: __('Name'),operate:'LIKE'},//商品名称
{field: 'name_en', title: __('Name_en'),operate:'LIKE'},//商品名称(英文)
{field: 'image', title: __('Image'),events: Table.api.events.image, formatter: Table.api.formatter.image,operate:false},//商品图
{field: 'flag', title: __('Flag'),formatter:
function(value,row,index){
var value1 = '';
if(row.is_recommend === 1){
//推荐
value1 += '<span style="color:red">推荐</span><br/>';
}
if(row.is_design === 1){
//设计师
value1+= '<span style="color:purple">设计师作品</span><br/>';
}
if(row.is_new === 1){
//新人特惠
value1 += '<span style="color:blue">新人特惠</span>';
}
return value1;
},searchList: {'': __('选择'), 1: __('推荐'), 2: __('设计师作品'), 3: __('新人特惠')}
},//商品标识
// {field: 'sale_price', title: __('Sale_price')},//销售价格
{field: 'market_price', title: __('Market_price'),operate:false},//市场价格
{field: 'expense_price', title: __('Expense_price'),operate:false},//运费
{field: 'hots', title: __('Hots'),sortable: true,operate:false},//浏览量
{field: 'sales', title: __('Sales'),sortable: true,operate:false},//销量
{field: 'collections', title: __('Collections'),sortable: true,operate:false},//收藏量
{field: 'sort', title: __('Sort'),sortable: true,operate:false},//排序
{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);
},
recyclebin: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
'dragsort_url': ''
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: 'goods/recyclebin' + location.search,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{field: 'name', title: __('Name'), align: 'left'},
{
field: 'deletetime',
title: __('Deletetime'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime
},
{
field: 'operate',
width: '130px',
title: __('Operate'),
table: table,
events: Table.api.events.operate,
buttons: [
{
name: 'Restore',
text: __('Restore'),
classname: 'btn btn-xs btn-info btn-ajax btn-restoreit',
icon: 'fa fa-rotate-left',
url: 'goods/restore',
refresh: true
},
{
name: 'Destroy',
text: __('Destroy'),
classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit',
icon: 'fa fa-times',
url: 'goods/destroy',
refresh: true
}
],
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;
});