modal.js
642 Bytes
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
/**
* Modal 模态组件
*
* @author: aiden.xu<aiden.xu@yoho.cn>
* @date: 2016/5/6
*/
'use strict';
const Overlay = require('./overlay');
class Modal {
/**
* Modal
*
* @param opts
*/
constructor(opts) {
// 默认参数
this.defaults = {
template: ''
};
// 初始化参数
this.settings = Object.assign({}, this.defaults, opts);
}
show() {
}
hide() {
}
}
(function($) {
$.extend(Overlay.prototype, {
show: function() {
},
hide: function() {
}
});
}(jQuery));
module.exports = Modal;