kimi
2021-02-18 749a5510a9f014446a3cd6ba57b3cb0cc8148dc1
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
<!DOCTYPE html>
<html>
 
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
        <title></title>
        <!--标准mui.css-->
        <link rel="stylesheet" href="../css/mui.min.css">
        <!--App自定义的css-->
        <link rel="stylesheet" type="text/css" href="../css/app.css" />
        <link href="../css/mui.picker.css" rel="stylesheet" />
        <link href="../css/mui.poppicker.css" rel="stylesheet" />
        <!--<link rel="stylesheet" type="text/css" href="../css/mui.picker.min.css" />-->
        <style>
            .mui-btn {
                font-size: 16px;
                padding: 8px;
                margin: 3px;
            }
            h5.mui-content-padded {
                margin-left: 3px;
                margin-top: 20px !important;
            }
            h5.mui-content-padded:first-child {
                margin-top: 12px !important;
            }
            .ui-alert {
                text-align: center;
                padding: 20px 10px;
                font-size: 16px;
            }
        </style>
    </head>
 
    <body>
        <header class="mui-bar mui-bar-nav">
            <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
            <h1 class="mui-title">picker(选择器)</h1>
        </header>
        <div class="mui-content">
            <div class="mui-content-padded">
                <h5 class="mui-content-padded">原生 SELECT</h5>
                <select class="mui-btn mui-btn-block">
                    <option value="item-1">item-1</option>
                    <option value="item-2">item-2</option>
                    <option value="item-3">item-3</option>
                    <option value="item-4">item-4</option>
                    <option value="item-5">item-5</option>
                </select>
                <br />
                <p>原生 SELECT(选择框)在不同的设备上UI可能会有差异,并且不支持多级联动(多个 SELECT 可实现,但较麻烦),故mui封装了picker组件,参见如下示例。</p>
                <h5 class="mui-content-padded">普通示例</h5>
                <button id='showUserPicker' class="mui-btn mui-btn-block" type='button'>一级选择示例 ...</button>
                <div id='userResult' class="ui-alert"></div>
                <h5 class="mui-content-padded">级联示例</h5>
                <button id='showCityPicker' class="mui-btn mui-btn-block" type='button'>二级联动示例 ...</button>
                <div id='cityResult' class="ui-alert"></div>
                <button id='showCityPicker3' class="mui-btn mui-btn-block" type='button'>三级联动示例 ...</button>
                <div id='cityResult3' class="ui-alert"></div>
            </div>
        </div>
        <script src="../js/mui.min.js"></script>
        <!--<script src="../js/mui.picker.min.js"></script>-->
        <script src="../js/mui.picker.js"></script>
        <script src="../js/mui.poppicker.js"></script>
        <script src="../js/city.data.js" type="text/javascript" charset="utf-8"></script>
        <script src="../js/city.data-3.js" type="text/javascript" charset="utf-8"></script>
        <script>
            (function($, doc) {
                $.init();
                $.ready(function() {
                    /**
                     * 获取对象属性的值
                     * 主要用于过滤三级联动中,可能出现的最低级的数据不存在的情况,实际开发中需要注意这一点;
                     * @param {Object} obj 对象
                     * @param {String} param 属性名
                     */
                    var _getParam = function(obj, param) {
                        return obj[param] || '';
                    };
                    //普通示例
                    var userPicker = new $.PopPicker();
                    userPicker.setData([{
                        value: 'ywj',
                        text: '董事长 叶文洁'
                    }, {
                        value: 'aaa',
                        text: '总经理 艾AA'
                    }, {
                        value: 'lj',
                        text: '罗辑'
                    }, {
                        value: 'ymt',
                        text: '云天明'
                    }, {
                        value: 'shq',
                        text: '史强'
                    }, {
                        value: 'zhbh',
                        text: '章北海'
                    }, {
                        value: 'zhy',
                        text: '庄颜'
                    }, {
                        value: 'gyf',
                        text: '关一帆'
                    }, {
                        value: 'zhz',
                        text: '智子'
                    }, {
                        value: 'gezh', 
                        text: '歌者'
                    }]);
                    var showUserPickerButton = doc.getElementById('showUserPicker');
                    var userResult = doc.getElementById('userResult');
                    showUserPickerButton.addEventListener('tap', function(event) {
                        userPicker.show(function(items) {
                            userResult.innerText = JSON.stringify(items[0]);
                            //返回 false 可以阻止选择框的关闭
                            //return false;
                        });
                    }, false);
                    //-----------------------------------------
                    //级联示例
                    var cityPicker = new $.PopPicker({
                        layer: 2
                    });
                    cityPicker.setData(cityData);
                    var showCityPickerButton = doc.getElementById('showCityPicker');
                    var cityResult = doc.getElementById('cityResult');
                    showCityPickerButton.addEventListener('tap', function(event) {
                        cityPicker.show(function(items) {
                            cityResult.innerText = "你选择的城市是:" + items[0].text + " " + items[1].text;
                            //返回 false 可以阻止选择框的关闭
                            //return false;
                        });
                    }, false);
                    //-----------------------------------------
                    //                    //级联示例
                    var cityPicker3 = new $.PopPicker({
                        layer: 3
                    });
                    cityPicker3.setData(cityData3);
                    var showCityPickerButton = doc.getElementById('showCityPicker3');
                    var cityResult3 = doc.getElementById('cityResult3');
                    showCityPickerButton.addEventListener('tap', function(event) {
                        cityPicker3.show(function(items) {
                            cityResult3.innerText = "你选择的城市是:" + _getParam(items[0], 'text') + " " + _getParam(items[1], 'text') + " " + _getParam(items[2], 'text');
                            //返回 false 可以阻止选择框的关闭
                            //return false;
                        });
                    }, false);
                });
            })(mui, document);
        </script>
    </body>
 
</html>