index.js
1.56 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
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
import filter from '@/utils/filter.js'
class data extends filter {
constructor() {
super()
}
columns() {
return [
{
prop: "areacode",
label: "行政区代码",
width: 100,
},
{
prop: "areaName",
label: "行政区名称",
width: 100,
},
{
prop: "bizMsgid",
label: "业务报文ID",
},
{
prop: "createdate",
label: "创建时间",
},
{
prop: "recflowid",
label: "业务流水号",
},
{
prop: "estatenum",
label: "不动产单元号",
width: 240,
},
{
prop: "rectype",
label: "业务编码",
},
{
prop: "rectypeName",
label: "业务名称",
},
{
prop: "createdate",
label: "接收时间",
},
{
prop: 'jcjg',
label: '检查结果',
render: (h, scope) => {
return (
<div>
{
scope.row.jcjg
? <span class='adopt'>通过</span>
: <span>通过1</span>
}
</div>
)
}
},
{
prop: 'rkjg',
label: '入库结果',
render: (h, scope) => {
return (
<div>
{
scope.row.jcjg
? <span class='warehousing'>入库</span>
: <span>入库1</span>
}
</div>
)
}
},
]
}
}
export default new data()