Blame view

examples/routers/table.vue 3.08 KB
2cb8a6d9   梁灏   commit Table comp...
1
  <template>
8a392d25   梁灏   Table expand supp...
2
      <Table :columns="columns10" :data="data9"></Table>
2cb8a6d9   梁灏   commit Table comp...
3
4
  </template>
  <script>
8a392d25   梁灏   Table expand supp...
5
      import expandRow from '../components/tableExpand.vue';
2cb8a6d9   梁灏   commit Table comp...
6
      export default {
8a392d25   梁灏   Table expand supp...
7
          components: { expandRow },
51356c2c   梁灏   fixed #658
8
9
          data () {
              return {
8a392d25   梁灏   Table expand supp...
10
                  columns10: [
10d3a323   Aresn   fixed #1011
11
                      {
8a392d25   梁灏   Table expand supp...
12
13
14
15
16
17
                          type: 'expand',
                          width: 100,
                          title: '展',
                          renderHeader (h) {
                              return h('i', '展开')
                          },
8b530b1c   梁灏   fixed #1342
18
                          render: (h, params) => {
8a392d25   梁灏   Table expand supp...
19
20
21
22
23
                              return h(expandRow, {
                                  props: {
                                      row: params.row
                                  }
                              })
8b530b1c   梁灏   fixed #1342
24
                          }
51356c2c   梁灏   fixed #658
25
26
                      },
                      {
8a392d25   梁灏   Table expand supp...
27
28
                          title: '姓名',
                          key: 'name'
51356c2c   梁灏   fixed #658
29
30
                      },
                      {
8a392d25   梁灏   Table expand supp...
31
32
                          title: '年龄',
                          key: 'age'
51356c2c   梁灏   fixed #658
33
                      },
8a392d25   梁灏   Table expand supp...
34
35
36
37
                      {
                          title: '地址',
                          key: 'address'
                      }
51356c2c   梁灏   fixed #658
38
                  ],
8a392d25   梁灏   Table expand supp...
39
                  data9: [
835b37ff   梁灏   fixed #1403
40
41
42
43
                      {
                          name: '王小明',
                          age: 18,
                          address: '北京市朝阳区芍药居',
8a392d25   梁灏   Table expand supp...
44
45
46
47
48
49
                          job: '数据工程师',
                          interest: '羽毛球',
                          birthday: '1991-05-14',
                          book: '乔布斯传',
                          movie: '致命魔术',
                          music: 'I Cry'
835b37ff   梁灏   fixed #1403
50
51
52
53
54
                      },
                      {
                          name: '张小刚',
                          age: 25,
                          address: '北京市海淀区西二旗',
8a392d25   梁灏   Table expand supp...
55
56
57
58
59
60
                          job: '数据科学家',
                          interest: '排球',
                          birthday: '1989-03-18',
                          book: '我的奋斗',
                          movie: '罗马假日',
                          music: 'My Heart Will Go On'
835b37ff   梁灏   fixed #1403
61
                      },
8a392d25   梁灏   Table expand supp...
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
                      {
                          name: '李小红',
                          age: 30,
                          address: '上海市浦东新区世纪大道',
                          job: '数据产品经理',
                          interest: '网球',
                          birthday: '1992-01-31',
                          book: '赢',
                          movie: '乔布斯',
                          music: 'Don’t Cry'
                      },
                      {
                          name: '周小伟',
                          age: 26,
                          address: '深圳市南山区深南大道',
                          job: '数据分析师',
                          interest: '桌球,跑步',
                          birthday: '1988-7-25',
                          book: '红楼梦',
                          movie: '倩女幽魂',
                          music: '演员'
                      }
8b530b1c   梁灏   fixed #1342
84
                  ]
2cb8a6d9   梁灏   commit Table comp...
85
              }
2cb8a6d9   梁灏   commit Table comp...
86
87
          }
      }
548eac43   梁灏   fixed #1387 and u...
88
  </script>