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
| <template>
| <GlobalWindow
| :title="title"
| :visible.sync="visible"
| :showConfirm="false"
| width="65%"
| :confirm-working="isWorking"
| @confirm="confirm"
| >
| <el-table
| :data="tableData"
| stripe
| style="width: 100%">
| <el-table-column
| prop="date"
| label="表号">
| </el-table-column>
| <el-table-column
| prop="name"
| label="表名称">
| </el-table-column>
| <el-table-column
| prop="付费类型"
| label="付费类型">
| </el-table-column>
| <el-table-column
| prop="设备绑定状态"
| label="设备绑定状态">
| </el-table-column>
| <el-table-column
| label="操作">
| <template slot-scope="{row}">
| <el-button type="text">解绑</el-button>
| </template>
| </el-table-column>
| </el-table>
| </GlobalWindow>
| </template>
| <script>
| import BaseOpera from '@/components/base/BaseOpera'
| import GlobalWindow from '@/components/common/GlobalWindow'
| export default {
| name: 'electricityMeter',
| extends: BaseOpera,
| components: { GlobalWindow },
| data () {
| return {
| tableData: []
| }
| },
| created () {
|
| },
| methods: {
|
| }
| }
| </script>
|
|