dialog.js
2.37 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
/*
* @Description: dialog
* @Time: 2015/11/18
* @author: chenglong.wang
*/
let $ = require('yoho-jquery');
let dialogHbs = require('plugin/dialog.hbs');
// fullWithBtn是供详情页获取限购码使用的特殊参数
exports.showDialog = function(data, callback, callbackForLeft, fullWithBtn) {
let $dialogBox,
defaultHideDuraton,
$dialogWrapper;
$('.dialog-wrapper').remove();
$('body').append(dialogHbs(data));
$dialogBox = $('.dialog-box');
$dialogWrapper = $('.dialog-wrapper');
// 显示
if (data.fast) {
$dialogWrapper.css({
display: 'block'
});
} else {
$dialogWrapper.fadeIn();
}
if (fullWithBtn) {
$('.dialog-wrapper .dialog-footer > span').css('width', '100%');
$('.dialog-wrapper .dialog-content').css({
'padding-left': '1.85rem',
'padding-right': '1.85rem'
});
$dialogWrapper.css('z-index', '10');
}
$dialogBox.css({
top: '50%',
marginTop: -($dialogBox.height() / 2)
});
// 隐藏
if (data.autoHide) {
defaultHideDuraton = 1000;
if (data.autoHide > 1) {
defaultHideDuraton = data.autoHide;
}
setTimeout(function() {
$dialogWrapper.fadeOut();
}, defaultHideDuraton);
}
// 禁止在dialog上可以上下滚动
if (!data.student) {
$dialogWrapper.on('touchmove', function() {
return false;
});
}
// 延迟绑定事件,防止触发touch弹出dialog之后直接触发这个click
setTimeout(() => {
$dialogWrapper.on('touchend', function(event) {
if ($(event.target).hasClass('dialog-left-btn')) {
if (typeof callbackForLeft === 'function') {
callbackForLeft();
}
$dialogWrapper.fadeOut();
} else if ($(event.target).hasClass('dialog-right-btn')) {
return callback();
} else {
$('.dialog-wrapper').remove();
$('body').css({
overflow: '',
position: '',
});
}
// 防止出现点透问题
event.preventDefault();
event.stopPropagation();
});
}, 500);
};
exports.hideDialog = function() {
$('.dialog-wrapper').remove();
};