store.js
5.5 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
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'store/index' + location.search,
add_url: 'store/add',
edit_url: 'store/edit',
del_url: 'store/del',
multi_url: 'store/multi',
user_province_url: 'user_province/index',
table: 'store',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'id',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
// {field: 'user_id', title: __('User_id')},
{field: 'user.username', title: __('User.username')},
{field: 'name', title: __('Name')},
{field: 'type', title: __('Type'),formatter:Table.api.formatter.label,searchList:{'1':'个人店铺','2':'企业店铺'}},
{field: 'property', title: __('Property')},
{field: 'thumbnail', title: __('Thumbnail'), operate:false, events: Table.api.events.image, formatter: Table.api.formatter.image},
{field: 'money', title: __('满免运费价格')},
{field: 'freight', title: __('运费')},
{field: 'phone', title: __('Phone')},
{field: 'address', title: __('Address'), operate:false},
{field: 'viptype', title: __('Viptype'),formatter:Table.api.formatter.label,searchList:{'1':'普通会员','2':'超级会员'}},
{field: 'svip_passtime', title: __('Expiration'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
// {field: 'expiration', title: __('huiyuanhuoqishi'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
// {field: 'expiration', title: __('Expiration'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
{field: 'province_ids', title: __('Province_ids')},
{field: 'createtime', title: __('Createtime'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
{field: 'updatetime', title: __('Updatetime'), operate:false, addclass:'datetimerange', formatter: Table.api.formatter.datetime},
{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate,
buttons: [
{
name: 'user_province',
text: __(''),
title: __('开通省份'),
classname: 'btn btn-xs btn-warning btn-magic btn-dialog',
icon: 'fa fa-list',
url: $.fn.bootstrapTable.defaults.extend.user_province_url + "/user_id/{user_id}",
extend: "data-area='[\"90%\",\"90%\"]'",
/*hidden:function(row){
console.log(row.viptype);
if($.inArray(row.viptype,[1]) >= 0){
return false;
}
return true;
},*/
callback: function (data) {
//Layer.alert(data, {title: "操作成功"});
table.bootstrapTable('refresh', {});
},
},
]
}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
},
add: function () {
Controller.api.bindevent();
},
edit: function () {
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
$("#c-city_id").data("params", function (obj) {
return {custom: {pid: $("#c-province_id").val(),level: '2'}};
});
$("#c-province_id").on('change',function(){
$("#c-county_id").val('');
$("#c-county_id_text").val('');
$("#c-city_id").val('');
$("#c-city_id_text").val('');
});
$("#c-county_id").data("params", function (obj) {
return {custom: {pid: $("#c-city_id").val(),level: '3'}};
});
$("#c-city_id").on('change',function(){
$("#c-county_id").val('');
$("#c-county_id_text").val('');
});
}
}
};
return Controller;
});