select.js
1.48 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
/**
* 选择框组件
*
* @author: shenzm<zhimin.shen@yoho.cn>
* @date: 2016/07/26
*/
'use strict';
import $ from 'jquery';
import template from 'components/select.hbs';
import Overlay from './overlay';
function Select(items) {
if (!$.isArray(items) || items.length === 0) {
return;
}
// 初始化参数
const tpl = template({
items: items
});
// 生成模版
const elem = $(tpl);
const del = elem.find('.item-del');
// 覆盖层
const overlay = new Overlay({
onClose: function() {
elem.removeClass('slide-in');
elem.hide();
}
});
const hide = function() {
elem.removeClass('slide-in');
overlay.hide();
elem.hide();
};
const show = function(cb) {
if (elem.parent().length === 0) {
const lis = elem.find('.item-li');
lis.each(function(index) {
if ($(this).attr('status') === 'false' || $(this).attr('status') === '') {
$(this).click(function() {
hide();
cb(items[index]);
});
}
});
elem.appendTo('body');
}
overlay.show();
elem.show();
setTimeout(() => {
elem.addClass('slide-in');
}, 200);
};
$(del).click(function() {
hide();
});
return {
show: show,
hide: hide
};
}
export default Select;