SupervisionInfo.vue
1.54 KB
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
<template>
<div style="border:1px solid black;">
<el-row class="bd_bottom">
<el-col :span="4" class="bd_right bd_padding">名称</el-col>
<el-col :span="8" class="bd_padding">{{ infoData.name }}</el-col>
<el-col :span="4" class="bd_left bd_right bd_padding">所属区域</el-col>
<el-col :span="8" class="bd_padding">{{ infoData.areaCodeName }}</el-col>
</el-row>
<el-row class="bd_bottom">
<el-col :span="4" class="bd_right bd_padding">督察类型</el-col>
<el-col :span="8" class="bd_padding">{{ infoData.typeName }}</el-col>
<el-col :span="4" class="bd_left bd_right bd_padding">督察结果</el-col>
<el-col :span="8" class="bd_padding">{{ infoData.supervisionResultName }}</el-col>
</el-row>
<el-row class="bd_bottom">
<el-col :span="4" class="bd_right bd_padding">督察状态</el-col>
<el-col :span="8" class="bd_padding">{{ infoData.supervisionStatus == 0 ? "未督察" : "已督察" }}</el-col>
<el-col :span="4" class="bd_left bd_right bd_padding">督察时间</el-col>
<el-col :span="8" class="bd_padding">{{ infoData.supervisionAt }}</el-col>
</el-row>
<el-row class="bd_bottom">
<el-col :span="4" class="bd_right bd_padding">创建时间</el-col>
<el-col :span="20" class="bd_padding">{{ infoData.createAt }}</el-col>
</el-row>
</div>
</template>
<script>
export default {
name: "SupervisionInfo",
props: {
infoData: {
type: Object
},
},
data() {
return {}
},
created() {
},
methods: {}
}
</script>