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
| <template>
| <div class="refinery">
| <el-table :data="tableData" border style="width: 100%">
| <el-table-column label="序号" width="45px" type="index"></el-table-column>
| <el-table-column
| v-for="(item,index) in tableHeader"
| :key="index"
| :prop="item.propS"
| :label="item.name"
| :width="item.width"></el-table-column>
| </el-table>
| </div>
| </template>
|
| <script>
| export default {
| name: 'refinery',
| data () {
| return {
| tableData: []
| }
| },
| props: {
| tableHeader: {
| type: Array,
| default: () => {
| return []
| },
| tableContent: {
| type: Array,
| default: () => {
| return []
| }
| }
| }
| },
| watch: {
| param: {
| tableContent (newValue, oldValue) {
| this.tableData = newValue
| console.log(newValue)
| },
| deep: true
| }
|
| }
| }
| </script>
|
| <style scoped lang="less">
|
| </style>
|
|