Commit e8ee1423e742f89e52760d42aa8bca2c6f251a91

Authored by 梁灏
1 parent f9d87766

optimize Table style

optimize Table style
Showing 2 changed files with 8 additions and 30 deletions   Show diff stats
src/styles/mixins/caret.less
1 1 // sortable
2 2 .sortable() {
3 3 display: inline-block;
4   - width: 8px;
  4 + width: 9px;
5 5 height: 12px;
6 6 margin-left: 4px;
7 7 margin-top: -1px;
... ...
test/routers/table.vue
1 1 <template>
2   - <i-table border :content="self" :columns="columns7" :data="data6"></i-table>
  2 + <i-table :columns="columns1" :data="data1"></i-table>
  3 + <i-table size="small" :columns="columns1" :data="data1"></i-table>
3 4 </template>
4 5 <script>
5 6 export default {
6 7 data () {
7 8 return {
8   - self: this,
9   - columns7: [
  9 + columns1: [
10 10 {
11 11 title: '姓名',
12   - key: 'name',
13   - render (row, column, index) {
14   - return `<Icon type="person"></Icon> <strong>${row.name}</strong>`;
15   - }
  12 + key: 'name'
16 13 },
17 14 {
18 15 title: '年龄',
19   - key: 'age'
  16 + key: 'age',
  17 + sortable: true
20 18 },
21 19 {
22 20 title: '地址',
23 21 key: 'address'
24   - },
25   - {
26   - title: '操作',
27   - key: 'action',
28   - width: 150,
29   - align: 'center',
30   - render (row, column, index) {
31   - return `<i-button type="primary" size="small" @click="show(${index})">查看</i-button> <i-button type="error" size="small" @click="remove(${index})">删除</i-button>`;
32   - }
33 22 }
34 23 ],
35   - data6: [
  24 + data1: [
36 25 {
37 26 name: '王小明',
38 27 age: 18,
... ... @@ -55,17 +44,6 @@
55 44 }
56 45 ]
57 46 }
58   - },
59   - methods: {
60   - show (index) {
61   - this.$Modal.info({
62   - title: '用户信息',
63   - content: `姓名:${this.data6[index].name}<br>年龄:${this.data6[index].age}<br>地址:${this.data6[index].address}`
64   - })
65   - },
66   - remove (index) {
67   - this.data6.splice(index, 1);
68   - }
69 47 }
70 48 }
71 49 </script>
... ...