hhweb.js
7.25 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
/**
* 通用工具库
*/
var firstText;
layui.define(['form', 'element', 'vue', 'layer', 'laydate', 'jquery', 'table'], function (exports) {
var form = layui.form,
layer = layui.layer,
element = layui.element,
laydate = layui.laydate,
$ = layui.jquery,
table = layui.table;
//字符串常量
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("至少选择一条记录", { icon: 5, shadeClose: true, title: "错误信息" });
return;
}
layer.confirm('确定是否删除', 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) {
}
, 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);
});
});
}
}
$(document).ready(function () {
$('.layui-date').each(function () {
laydate.render({
elem: this
, btns: ['confirm']
, type: "datetime"
});
});
$(".NumText").keyup(function () {
hhweb.ValidTextVal(this, "NumText", "请输入整数");
}).bind("paste", function () { //CTR+V事件处理
hhweb.ValidTextVal(this, "NumText", "请输入整数");
}).css("ime-mode", "disabled"); //CSS设置输入法不可用
$(".NumDecText").keyup(function () {
hhweb.ValidTextVal(this, "NumDecText", "请输入数值");
}).bind("paste", function () { //CTR+V事件处理
hhweb.ValidTextVal(this, "NumDecText", "请输入数值");
}).css("ime-mode", "disabled"); //CSS设置输入法不可用
$(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();
});
//所有文本框绑定事件
var input = $('input:text:not(:disabled)');
input.each(function () {
if (firstText == undefined) {
firstText = $(this);
}
$(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");
});
});
$(firstText).focus();
});
exports(MOD_NAME, hhweb);
});