Blame view

examples/routers/select.vue 11.7 KB
89828b5b   梁灏   update Select
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
  <!--<template>-->
      <!--<div>-->
          <!--{{ model10 }} - -->
          <!--{{ model11 }}-->
          <!--<Select v-model="model10" style="width:260px">-->
              <!--<Option v-for="(item, index) in cityList" :value="item.value" :key="index">{{ item.label }}</Option>-->
          <!--</Select>-->
          <!--<Select v-model="model11" style="width:260px">-->
              <!--<Option v-for="(item, index) in cityList" :value="item.value" :key="index">{{ item.label }}</Option>-->
          <!--</Select>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--cityList: [],-->
                  <!--model10: '',-->
                  <!--model11: '',-->
                  <!--model12: ''-->
              <!--}-->
          <!--},-->
          <!--mounted () {-->
              <!--setTimeout(() => {-->
                  <!--this.cityList = [-->
                      <!--{-->
                          <!--value: 'beijing',-->
                          <!--label: '北京市'-->
                      <!--},-->
                      <!--{-->
                          <!--value: 'shanghai',-->
                          <!--label: '上海市'-->
                      <!--},-->
                      <!--{-->
                          <!--value: 'shenzhen',-->
                          <!--label: '深圳市'-->
                      <!--},-->
                      <!--{-->
                          <!--value: 'hangzhou',-->
                          <!--label: '杭州市'-->
                      <!--},-->
                      <!--{-->
                          <!--value: 'nanjing',-->
                          <!--label: '南京市'-->
                      <!--},-->
                      <!--{-->
                          <!--value: 'chongqing',-->
                          <!--label: '重庆市'-->
                      <!--}-->
                  <!--];-->
              <!--}, 1000);-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
e1b86bcf   梁灏   fixed #1865
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
  <!--<template>-->
      <!--<div>-->
          <!--<Select v-model="value">-->
              <!--<Option v-for="item in list" :value="item.value" :label="item.label" :key="item.value"></Option>-->
          <!--</Select>-->
          <!--<Button @click="setList">set list</Button>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--value: '',-->
                  <!--list: []-->
              <!--}-->
          <!--},-->
          <!--methods: {-->
              <!--setList () {-->
                  <!--let list = [];-->
                  <!--for (let i = 0; i < 400; i++) {-->
                      <!--list.push({-->
                          <!--value: 'value' + i,-->
                          <!--label: 'label' + i-->
                      <!--});-->
                  <!--}-->
                  <!--this.list = list;-->
              <!--}-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
45103ca4   梁灏   fixed #2066
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
  <!--<template>-->
      <!--<div style="width: 400px;margin: 50px;">-->
          <!--<div>data: {{ model13 }}</div>-->
          <!--<Row>-->
              <!--<Col span="12" style="padding-right:10px">-->
              <!--<Select-->
                      <!--size="small"-->
                      <!--placeholder="提示提示"-->
                      <!--v-model="model13"-->
                      <!--filterable-->
                      <!--remote-->
                      <!--transfer-->
                      <!--:remote-method="remoteMethod1"-->
                      <!--:loading="loading1">-->
                  <!--<Option v-for="(option, index) in options1" :value="option.value" :key="index">{{option.label}}</Option>-->
              <!--</Select>-->
              <!--</Col>-->
              <!--<Col span="12">-->
              <!--<Select-->
                      <!--v-model="model14"-->
                      <!--multiple-->
                      <!--filterable-->
                      <!--remote-->
                      <!--:remote-method="remoteMethod2"-->
                      <!--:loading="loading2">-->
                  <!--<Option v-for="(option, index) in options2" :value="option.value" :key="index">{{option.label}}</Option>-->
              <!--</Select>-->
              <!--</Col>-->
          <!--</Row>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--model13: '',-->
                  <!--loading1: false,-->
                  <!--options1: [],-->
                  <!--model14: [],-->
                  <!--loading2: false,-->
                  <!--options2: [],-->
                  <!--list: ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New hampshire', 'New jersey', 'New mexico', 'New york', 'North carolina', 'North dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode island', 'South carolina', 'South dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West virginia', 'Wisconsin', 'Wyoming']-->
              <!--}-->
          <!--},-->
          <!--methods: {-->
              <!--remoteMethod1 (query) {-->
                  <!--if (query !== '') {-->
                      <!--this.loading1 = true;-->
                      <!--setTimeout(() => {-->
                          <!--this.loading1 = false;-->
                          <!--const list = this.list.map(item => {-->
                              <!--return {-->
                                  <!--value: item,-->
                                  <!--label: item-->
                              <!--};-->
                          <!--});-->
                          <!--this.options1 = list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                      <!--}, 200);-->
                  <!--} else {-->
                      <!--this.options1 = [];-->
                  <!--}-->
              <!--},-->
              <!--remoteMethod2 (query) {-->
                  <!--if (query !== '') {-->
                      <!--this.loading2 = true;-->
                      <!--setTimeout(() => {-->
                          <!--this.loading2 = false;-->
                          <!--const list = this.list.map(item => {-->
                              <!--return {-->
                                  <!--value: item,-->
                                  <!--label: item-->
                              <!--};-->
                          <!--});-->
                          <!--this.options2 = list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                      <!--}, 200);-->
                  <!--} else {-->
                      <!--this.options2 = [];-->
                  <!--}-->
              <!--}-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
feb21a0a   梁灏   fixed #2893
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
  <!--<template>-->
      <!--<div style="width: 300px">-->
          <!--<Select-->
                  <!--v-model="model14"-->
                  <!--multiple-->
                  <!--filterable-->
                  <!--remote-->
                  <!--:remote-method="remoteMethod2"-->
                  <!--:loading="loading2">-->
              <!--<Option v-for="(option, index) in options2" :value="option.value" :key="index">{{option.label}}</Option>-->
          <!--</Select>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--export default {-->
          <!--data () {-->
              <!--return {-->
                  <!--model13: '',-->
                  <!--loading1: false,-->
                  <!--options1: [],-->
                  <!--model14: [],-->
                  <!--loading2: false,-->
                  <!--options2: [],-->
                  <!--list: ['a', 'b', 'c']-->
              <!--}-->
          <!--},-->
          <!--methods: {-->
              <!--remoteMethod2 (query) {-->
                  <!--if (query !== '') {-->
                      <!--this.loading2 = true;-->
                      <!--setTimeout(() => {-->
                          <!--this.loading2 = false;-->
                          <!--const list = this.list.map(item => {-->
                              <!--return {-->
                                  <!--value: item,-->
                                  <!--label: item-->
                              <!--};-->
                          <!--});-->
                          <!--this.options2 = list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);-->
                      <!--}, 200);-->
                  <!--} else {-->
                      <!--this.options2 = [];-->
                  <!--}-->
              <!--}-->
          <!--}-->
      <!--}-->
  <!--</script>-->
  
  
e355dd49   梁灏   add Select Component
219
  <template>
feb21a0a   梁灏   fixed #2893
220
221
      <Row>
          <Col span="12" style="padding-right:10px">
500694ba   梁灏   fixed Select bug ...
222
223
224
225
226
227
228
          <Select
                  v-model="model13"
                  filterable
                  remote
                  :remote-method="remoteMethod1"
                  :loading="loading1">
              <Option v-for="(option, index) in options1" :value="option.value" :key="index">{{option.label}}</Option>
45103ca4   梁灏   fixed #2066
229
          </Select>
feb21a0a   梁灏   fixed #2893
230
231
          </Col>
          <Col span="12">
500694ba   梁灏   fixed Select bug ...
232
233
234
235
236
237
238
239
240
          <Select
                  v-model="model14"
                  multiple
                  filterable
                  remote
                  :remote-method="remoteMethod2"
                  :loading="loading2">
              <Option v-for="(option, index) in options2" :value="option.value" :key="index">{{option.label}}</Option>
          </Select>
feb21a0a   梁灏   fixed #2893
241
242
          </Col>
      </Row>
e355dd49   梁灏   add Select Component
243
  </template>
e355dd49   梁灏   add Select Component
244
  <script>
e355dd49   梁灏   add Select Component
245
      export default {
e355dd49   梁灏   add Select Component
246
247
          data () {
              return {
500694ba   梁灏   fixed Select bug ...
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
                  model13: '',
                  loading1: false,
                  options1: [],
                  model14: [],
                  loading2: false,
                  options2: [],
                  list: ['Alabama', 'Alaska', 'Arizona', 'Arkansas', 'California', 'Colorado', 'Connecticut', 'Delaware', 'Florida', 'Georgia', 'Hawaii', 'Idaho', 'Illinois', 'Indiana', 'Iowa', 'Kansas', 'Kentucky', 'Louisiana', 'Maine', 'Maryland', 'Massachusetts', 'Michigan', 'Minnesota', 'Mississippi', 'Missouri', 'Montana', 'Nebraska', 'Nevada', 'New hampshire', 'New jersey', 'New mexico', 'New york', 'North carolina', 'North dakota', 'Ohio', 'Oklahoma', 'Oregon', 'Pennsylvania', 'Rhode island', 'South carolina', 'South dakota', 'Tennessee', 'Texas', 'Utah', 'Vermont', 'Virginia', 'Washington', 'West virginia', 'Wisconsin', 'Wyoming']
              }
          },
          methods: {
              remoteMethod1 (query) {
                  if (query !== '') {
                      this.loading1 = true;
                      setTimeout(() => {
                          this.loading1 = false;
                          const list = this.list.map(item => {
                              return {
                                  value: item,
                                  label: item
                              };
                          });
                          this.options1 = list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);
                      }, 200);
                  } else {
                      this.options1 = [];
                  }
              },
              remoteMethod2 (query) {
                  if (query !== '') {
                      this.loading2 = true;
                      setTimeout(() => {
                          this.loading2 = false;
                          const list = this.list.map(item => {
                              return {
                                  value: item,
                                  label: item
                              };
                          });
                          this.options2 = list.filter(item => item.label.toLowerCase().indexOf(query.toLowerCase()) > -1);
                      }, 200);
                  } else {
                      this.options2 = [];
                  }
e355dd49   梁灏   add Select Component
291
              }
e355dd49   梁灏   add Select Component
292
293
          }
      }
e1b86bcf   梁灏   fixed #1865
294
  </script>
feb21a0a   梁灏   fixed #2893

500694ba   梁灏   fixed Select bug ...