-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtable-row.vue
84 lines (83 loc) · 1.62 KB
/
table-row.vue
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
<template>
<tr ref="tableTrWrapper">
<td
v-for="(column, index) in columns"
:key="column.type"
:class="[
'table-column',
column.align ? `is-${column.align}`: '',
index === 0 ? 'first-table-column' : '',
index === columns.length - 1 ? 'last-table-column' : '',
]"
:style="minWidth(column.width)"
@click="rowClick"
>
<TableCell
:colspan="index"
:row="row"
:column="column"
></TableCell>
</td>
</tr>
</template>
<script>
import TableCell from './table-cell';
export default {
name: 'snb-table-row',
components: {
TableCell,
},
props: {
columns: {
type: Array,
default: () => []
},
row: {
type: Object,
default: () => {}
},
isLastRow: {
type: Boolean,
default: false
},
},
data () {
return {
};
},
computed: {
},
created() {
},
mounted () {
this.getCellsWidth();
},
methods: {
getCellsWidth () {
if (!this.isLastRow) return;
this.$nextTick(() => {
const _colWidth = [];
let _childDomArr = this.$refs.tableTrWrapper.querySelectorAll('.table-column');
for (let i = 0; i < _childDomArr.length; i++) {
_colWidth.push(_childDomArr[i].offsetWidth);
}
this.$emit('colsWidth', _colWidth);
});
},
minWidth (width) {
if (width) {
return { 'min-width': `${width}px` };
}
},
rowClick () {
this.$emit('rowClick', this.row);
}
},
watch: {
columns () {
if (!this.isLastRow) return;
this.getCellsWidth(); // 获取列宽度
}
}
};
</script>