fields.js
7.6 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
index_url: 'workorder/fields/index' + location.search,
add_url: 'workorder/fields/add',
edit_url: 'workorder/fields/edit',
del_url: 'workorder/fields/del',
multi_url: 'workorder/fields/multi',
import_url: 'workorder/fields/import',
table: 'workorder_fields',
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: $.fn.bootstrapTable.defaults.extend.index_url,
pk: 'id',
sortName: 'weigh',
columns: [
[
{checkbox: true},
{field: 'id', title: __('Id')},
{
field: 'position',
title: __('Position'),
searchList: {"0": __('Position 0'), "1": __('Position 1'), "2": __('Position 2')},
formatter: Table.api.formatter.status
},
{field: 'name', title: __('Name')},
{field: 'title', title: __('Title')},
{
field: 'type_list',
title: __('Type_list'),
searchList: {
"string": __('Type_list string'),
"textarea": __('Type_list textarea'),
"text": __('Type_list text'),
"editor": __('Type_list editor'),
"number": __('Type_list number'),
"date": __('Type_list date'),
"time": __('Type_list time'),
"datetime": __('Type_list datetime'),
"select": __('Type_list select'),
"selects": __('Type_list selects'),
"image": __('Type_list image'),
"images": __('Type_list images'),
"file": __('Type_list file'),
"files": __('Type_list files'),
"switch": __('Type_list switch'),
"checkbox": __('Type_list checkbox'),
"radio": __('Type_list radio'),
"city": __('Type_list city')
},
formatter: Table.api.formatter.normal
},
// {field: 'default', title: __('Default')},
// {field: 'rule', title: __('Rule')},
// {field: 'errormsg', title: __('Errormsg')},
{field: 'notice', title: __('Notice')},
{field: 'field_length', title: __('Field_length')},
{
field: 'isfilter',
title: __('Isfilter'),
searchList: {"1": __('Yes'), "0": __('No')},
formatter: Controller.api.formatter.toggle
},
// {field: 'extend', title: __('Extend')},
{
field: 'isbasicinfo',
title: __('Isbasicinfo'),
searchList: {"0": __('Isbasicinfo 0'), "1": __('Isbasicinfo 1')},
formatter: Controller.api.formatter.status
},
{
field: 'status',
title: __('Status'),
searchList: {"0": __('Status 0'), "1": __('Status 1')},
formatter: Table.api.formatter.status
},
{field: 'weigh', title: __('Weigh')},
{
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: function (value, row, index) {
var ban_del = ['title', 'describe'];
if (ban_del.includes(row.name)) {
var that = $.extend({}, this);
var table = $(that.table).clone(true);
$(table).data("operate-del", null);
that.table = table;
return Table.api.formatter.operate.call(that, value, row, index);
}
return Table.api.formatter.operate.call(this, value, row, index);
}
}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
},
add: function () {
Controller.api.bindevent();
},
edit: function () {
Controller.api.bindevent();
},
api: {
bindevent: function () {
$("form#add-form").data("validator-options", {ignore: ':hidden'});
$(document).on("change", "#c-type_list", function () {
$(".tf").addClass("hidden");
$(".tf.tf-" + $(this).val()).removeClass("hidden");
});
$(document).on("change", '#c-position', function () {
$(".pp").addClass("hidden");
$(".pp.position-" + $(this).val()).removeClass("hidden");
})
Form.api.bindevent($("form[role=form]"));
$("#c-type_list").trigger("change");
$("#c-position").trigger("change");
},
formatter: {
toggle: function (value, row, index) {
if (row.position == 0) {
var that = $.extend({}, this);
var table = $(that.table).clone(true);
that.table = table;
return Table.api.formatter.toggle.call(that, value, row, index);
} else {
return '-';
}
},
status: function (value, row, index) {
if (row.position == 0) {
var that = $.extend({}, this);
var table = $(that.table).clone(true);
that.table = table;
return Table.api.formatter.status.call(that, value, row, index);
} else {
return '-';
}
}
}
}
};
return Controller;
});