Blame view

test/routers/select.vue 2.33 KB
e355dd49   梁灏   add Select Component
1
  <template>
3e855e34   梁灏   fixed #46
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
      <!--<i-select :model.sync="model1" style="width:200px">-->
          <!--<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>-->
      <!--</i-select>-->
      <!--{{ model1 | json }}-->
      <i-button @click="change">修改数据</i-button>
      <!--<i-select :model.sync="model10" multiple style="width:240px" @on-change="datachange">-->
          <!--<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>-->
      <!--</i-select>-->
      <!--{{ model10 | json }}-->
      <!--<i-select :model.sync="model11" filterable style="width:200px" @on-change="datachange">-->
          <!--<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>-->
      <!--</i-select>-->
      <!--{{ model11 | json }}-->
      <i-select :model.sync="model12" filterable multiple style="width:240px" @on-change="datachange">
          <i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
      </i-select>
      {{ model12 | json }}
e355dd49   梁灏   add Select Component
19
20
  </template>
  <script>
3e855e34   梁灏   fixed #46
21
      import { iSelect, iOption, iButton } from 'iview';
e355dd49   梁灏   add Select Component
22
      export default {
3e855e34   梁灏   fixed #46
23
          components: { iSelect, iOption, iButton },
e355dd49   梁灏   add Select Component
24
25
          data () {
              return {
3e855e34   梁灏   fixed #46
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
                  cityList: [
                      {
                          value: 'beijing',
                          label: '北京市'
                      },
                      {
                          value: 'shanghai',
                          label: '上海市'
                      },
                      {
                          value: 'shenzhen',
                          label: '深圳市'
                      },
                      {
                          value: 'hangzhou',
                          label: '杭州市'
                      },
                      {
                          value: 'nanjing',
                          label: '南京市'
                      },
                      {
                          value: 'chongqing',
                          label: '重庆市'
                      }
                  ],
                  model1: '',
                  model10: [],
                  model11: '',
                  model12: []
e355dd49   梁灏   add Select Component
56
57
              }
          },
e355dd49   梁灏   add Select Component
58
          methods: {
3e855e34   梁灏   fixed #46
59
60
61
62
63
              change () {
                  this.cityList.splice(2, 1);
              },
              datachange (data) {
                  console.log(data);
e355dd49   梁灏   add Select Component
64
65
66
              }
          }
      }
3e855e34   梁灏   fixed #46
67
  </script>