hhweb.js
13.1 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/**
* 通用工具库
*/
layui.define(['form', 'I18nPage', 'element', 'vue', 'layer', 'laydate', 'jquery', 'table'], function (exports) {
var form = layui.form,
layer = layui.layer,
element = layui.element,
laydate = layui.laydate,
$ = layui.jquery,
I18nPage = layui.I18nPage,
table = layui.table;
var Lang = I18nPage.GetLang();
var _lang = "cn";
if (Lang !== "cn") {
_lang = "en";
}
var DeleteSome = "至少选择一条记录", DeleteConfirm = "确定要删除所选信息", ErrorTitle = "错误信息",
NumTitle = "请输入整数", NumDecTitle = "请输入数值" ;
if (Lang !== "cn") {
DeleteSome = "Please Select Some Data";
DeleteConfirm = "Confirm To Delete";
ErrorTitle = "Error Info";
NumTitle = "Please Input Int";
NumDecTitle = "Please Input Numeric";
}
//字符串常量
var MOD_NAME = 'hhweb',
THIS = 'layui-this',
SHOW = 'layui-show',
HIDE = 'layui-hide',
DISABLED = 'layui-disabled';
//外部接口
var hhweb = {
config: {} //全局配置项
//设置全局项
, set: function (options) {
var that = this;
that.config = $.extend({}, that.config, options);
return that;
}
//事件监听
, on: function (events, callback) {
return layui.onevent.call(this, MOD_NAME, events, callback);
}
//删除
, del: function (url, dataids, callback) {
if (dataids == undefined || dataids == "" || dataids.length == 0) {
layer.alert(DeleteSome, { icon: 5, shadeClose: true, title: ErrorTitle });
return;
}
var title = "信息";
if (Lang !== "cn") {
title = "Message";
}
layer.confirm(DeleteConfirm, { icon: 3, title: title }, function (index) {
$.post(url, { ids: dataids },
function (data) {
if (data.Code == 200) {
if (callback != undefined) callback();
} else {
layer.msg(data.Message);
}
}, "json");
layer.close(index);
});
}
//正则表达式验证输入合法性
, ValidTextVal(obj, type, msg) {
if (type == "NumText") {
var oldlength = $(obj).val().length;
$(obj).val($(obj).val().replace(/\D/g, ''));
if ($(obj).val().length != oldlength) {
layer.msg(msg)
}
}
if (type == "NumDecText") {
var oldlength = $(obj).val().length;
$(obj).val($(obj).val().replace(/[^0-9.]/g, ''));
if ($(obj).val().length != oldlength) {
layer.msg(msg)
}
}
}
//元素可用
, DomEnable(dom) {
$(dom).removeAttr("disabled");
$(dom).css("background-color", "white");
}
//元素禁用
, DomDisable(dom) {
$(dom).attr({ disabled: "disabled" });
}
//元素禁用样式2
, DomDisableImportant(dom) {
$(dom).attr({ disabled: "disabled" });
$(dom).css("background-color", "#eee");
}
//验证必填项
, CheckRequired(filterId, func) {
var filter = ".required";
if (func != undefined) {
filter = filter + func;
}
if (filterId != undefined) {
filter = filterId + " " + filter;
}
var rtn = null;
var required = $(filter);
required.each(function () {
if ($(this).parent().parent().css("display") == "block") {
if ($(this).val() == null || $(this).val().replace(/^\s+|\s+$/g, "") == "") {
rtn = $(this);
return false;
}
}
});
return rtn;
}
//元素闪烁
, blink(selector) {
$(selector).fadeOut('normal', function () {
$(this).fadeIn('normal', function () {
blink(this);
});
});
}
//获取缓存中当前用户表格字段的设置
, ColumnSetting(tablelid, cols_arr) {
var account = window.localStorage.getItem("Account");
var paths = window.location.pathname.split("/");
var controller = paths[paths.length - 2];
var cookieName = account + "_" + controller + "_" + tablelid;
var cookieval = window.localStorage.getItem(cookieName);
var colsetting = {};
if (cookieval !== undefined) {
colsetting = JSON.parse(cookieval);
}
cols_arr[0].forEach(function (item, len) {
if (colsetting != null) {
if (colsetting[item.field] !== undefined) {
item.hide = !(colsetting[item.field]);
}
}
});
return cols_arr;
}
//渲染样式控件
, InitUIClass() {
//时间输入框
$('.layui-date').each(function () {
laydate.render({
elem: this
, btns: ['confirm']
, type: "datetime"
, lang: _lang
, done: function (value, date, endDate) {
try {
var Id = this.elem[0].attributes["name"].nodeValue;
var Expression = this.elem[0]['__v_model'].expression;
for (var item in hhweb.Config) {
var vueobj = item;
var vueclass = hhweb.Config[item];
if (vueobj === Id) {
vueclass[Expression] = value;
}
}
} catch (e) {
}
}
});
});
//数值输入框
$(".NumText").keyup(function () {
hhweb.ValidTextVal(this, "NumText", NumTitle);
}).bind("paste", function () { //CTR+V事件处理
hhweb.ValidTextVal(this, "NumText", NumTitle);
}).css("ime-mode", "disabled"); //CSS设置输入法不可用
//小数输入框
$(".NumDecText").keyup(function () {
hhweb.ValidTextVal(this, "NumDecText", NumDecTitle);
}).bind("paste", function () { //CTR+V事件处理
hhweb.ValidTextVal(this, "NumDecText", NumDecTitle);
}).css("ime-mode", "disabled"); //CSS设置输入法不可用
//所有可用输入框绑定事件回车跳转
var input = $('input:text:not(:disabled)');
input.each(function () {
$(this).bind("keydown", function (e) {
var n = input.length;
if (e.which == 13) {
e.preventDefault(); //Skip default behavior of the enter key
if ($(this).val() != "") {
var nextIndex = input.index(this) + 1;
if (nextIndex < n) {
input[nextIndex].focus();
}
else {
input[nextIndex - 1].blur();
}
}
else {
$(this).focus();
}
}
});
//绑定获取焦点事件
$(this).bind('focus', function (event) {
$(this).css("background-color", "yellow");
//$(this).val("");
});
//绑定失去焦点事件
$(this).bind('blur', function (event) {
$(this).css("background-color", "white");
});
});
}
, RenderSwitch(VueConfig) {
var vueEdit = VueConfig.vueEdit;
var vueQuery = VueConfig.vueQuery;
if (vueEdit !== undefined) {
var vm = vueEdit.vm;
var layfilter = vueEdit.layfilter;
if (layfilter == undefined) {
layfilter = 'eform';
}
$("input:checkbox[lay-filter='" + layfilter + "']").each(function () {
if (vm.$data[this.name] !== undefined) {
if (vm.$data[this.name] !== null) {
$(this).prop("checked", vm.$data[this.name]);
}
else {
$(this).prop("checked", false);
}
}
});
form.render();
}
if (vueQuery !== undefined) {
var vmq = vueQuery.vue;
var layfilter = vueQuery.layfilter;
if (layfilter == undefined) {
layfilter = 'qform';
}
$("input:checkbox[lay-filter='" + layfilter + "']").each(function () {
if (vmq.$data[this.name] !== undefined) {
if (vmq.$data[this.name] !== null) {
$(this).prop("checked", vmq.$data[this.name]);
}
else {
$(this).prop("checked", false);
}
}
});
form.render();
}
}
}
$(document).ready(function () {
$(document).on('keydown', function (e) {
//禁用页面F5刷新
if (e.which == 116) {
e.preventDefault(); //Skip default behavior of the enter key
}
//CTRL+ENTER 提交
if (e.ctrlKey && e.keyCode == 13) {
if ($(".layui-layer-btn0").length > 0) {
$(".layui-layer-btn0").click();
}
}
//ESC 取消
if (e.keyCode == 27) {
if ($(".layui-layer-close1").length > 0) {
$(".layui-layer-close1").click();
}
}
})
//单击行勾选checkbox事件
$(document).on("click", ".layui-table-body table.layui-table tbody tr", function () {
var index = $(this).attr('data-index');
var tableBox = $(this).parents('.layui-table-box');
//存在固定列
if (tableBox.find(".layui-table-fixed.layui-table-fixed-l").length > 0) {
tableDiv = tableBox.find(".layui-table-fixed.layui-table-fixed-l");
} else {
tableDiv = tableBox.find(".layui-table-body.layui-table-main");
}
var checkCell = tableDiv.find("tr[data-index=" + index + "]").find("td div.laytable-cell-checkbox div.layui-form-checkbox I");
if (checkCell.length > 0) {
checkCell.click();
}
});
$(document).on("click", "td div.laytable-cell-checkbox div.layui-form-checkbox", function (e) {
e.stopPropagation();
});
form.on('checkbox()', function (data) {
if (data.elem.name == "layTableCheckbox") {
return null;
}
try {
var attributes = data.elem.attributes;
if (attributes['lay-filter'] !== undefined) {
if (attributes['lay-filter'].nodeValue == 'LAY_TABLE_TOOL_COLS') {
var tb = data.elem.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode;
var account = window.localStorage.getItem("Account");
var paths = window.location.pathname.split("/");
var controller = paths[paths.length - 2];
var tablelid = tb.previousElementSibling.id;
var checkflag = data.elem.checked;
var colname = attributes['name'].nodeValue;
var cookieName = account + "_" + controller + "_" + tablelid;
var cookieval = window.localStorage.getItem(cookieName);
var colsetting = {};
if (cookieval == undefined) {
colsetting[colname] = checkflag;
}
else {
colsetting = JSON.parse(cookieval);
colsetting[colname] = checkflag;
}
window.localStorage.setItem(cookieName, JSON.stringify(colsetting));
}
}
} catch (e) {
}
});
});
exports(MOD_NAME, hhweb);
});