forked from kuafuRace/phprap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
executable file
·255 lines (197 loc) · 5.6 KB
/
Copy pathapp.js
File metadata and controls
executable file
·255 lines (197 loc) · 5.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
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
/**
* 菜单折叠
*/
$('#sidebar-menu').metisMenu();
/**
* 吐司提示
*/
$('[data-toggle="tooltip"]').tooltip();
function alert(msg, type, callbak) {
var shift;
var time;
if(msg !==undefined && msg.length == 0){
return false;
}
if(type == 'success'){
shift = 5;
time = 1;
}else if(type == 'error'){
shift = 6;
time = 2;
}else{
shift = 6;
time = 2;
}
if(callbak == ''){
callbak = function () {
};
}
time = time * 1000;
layer.msg(msg, {time:time, shift: shift}, callbak);
}
/**
* 优化的确认框
* @param msg 确认框消息
* @param ok 确认回调函数
*/
function confirm(msg, callback) {
var d = dialog({
fixed: true,
width: '280',
title: '温馨提示',
content: msg,
lock: true,
opacity: .1,
okValue: '确定',
ok: function () {
if(typeof callback === "function") {
callback();
return true;
}
return false;
},
cancelValue: '取消',
cancel: function () {
d.close().remove();
return false;
}
});
d.showModal();
return false;
}
/**
* 重置表单
*/
function resetForm() {
$(':input','form')
.not(':button, :submit, :reset, :hidden')
.val('')
.removeAttr('checked')
.removeAttr('selected');
}
$(":reset").on('click', function (e) {
var e = e||window.event;
e.stopPropagation(); // 阻止冒泡事件
e.preventDefault(); // 兼容标准浏览器
e.returnValue = false; // 兼容IE6~8
resetForm();
});
/**
* iframe模态框
*/
(function($){
$("[data-modal]").on('click',function(e){
var e = e||window.event;
e.stopPropagation(); // 阻止冒泡事件
e.preventDefault(); // 兼容标准浏览器
e.returnValue = false; // 兼容IE6~8
var thisObj = $(this);
var scroll = thisObj.data('scroll'); // 是否滚动
var center = thisObj.data('center'); // 是否居中
var title = thisObj.data('title');
var src = thisObj.data('src');
var height = thisObj.data('height');
var okBtnShow = thisObj.data('ok-btn-show');
var modal = thisObj.data('modal');
var iframe = $(modal).find('iframe');
if(!modal || !iframe || !src){
return false;
}
if(scroll){
$(iframe).attr('scroll', scroll);
}else{
$(iframe).attr('scroll', 'auto');
}
if(title){
$(modal).find('.modal-title').text(title);
}
if(typeof(center) == undefined){
center = 'true';
}
if(typeof(okBtnShow) == undefined){
okBtnShow = 'true';
}
if(okBtnShow == false){
console.log('9999');
$(modal).find('button:submit').hide();
}
if(height){
$(iframe).css("height", height);
}else{
$(iframe).css("height", 300);
}
if(center == true){
$(modal).on('show.bs.modal', function () {
$(this).css('display', 'block');
var modalHeight = $(window).height() / 2 - $(this).find('.modal-dialog').height() / 2;
$(this).find('.modal-dialog').css({'margin-top': modalHeight});
});
}
$(iframe).attr('src', src);
setTimeout(function () {
$(modal).modal('show');
}, 500);
$(document).delegate("button:submit", 'click',function(e){
var e = e||window.event;
e.stopPropagation();
e.preventDefault(); // 兼容标准浏览器
window.event.returnValue = false; // 兼容IE6~8
$(iframe).contents().find("form").find("input:hidden").trigger('click');
});
});
})(jQuery);
/**
* 表单验证
*/
(function($){
$.fn.validateForm = function(options){
var defaults = {
submitBtn: '#js_submit',
before: '',
success: function (json) {
parent.location.reload();
},
error: ''
};
var thisObj = $(this);
var config = $.extend(defaults, options);
var submitBtn = config.submitBtn;
var before = config.before;
var success = config.success;
var error = config.error;
thisObj.Validform({
tiptype:function(msg,o){
if(!o.obj.is("form")){
if(3 == o.type){
alert(msg, 'error');
}
}
},
label:"label",
btnSubmit: submitBtn,
ajaxPost:true,
beforeSubmit: function () {
if(before && before() === false){
return false;
}
},
callback:function(json){
if(json.status == 'success'){
if(json.message){
alert(json.message, 'success', function () {
success && success(json);
});
}else{
success && success(json);
}
}else{
error && error(json);
$(".js_" + json.label).focus().addClass('Validform_error');
if(json.message){
alert(json.message, 'error');
}
}
}
});
};
})(jQuery);