sqcxjldata.js
1.78 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
81
82
83
84
85
86
87
88
import filter from '@/utils/filter.js'
let vm = null
const sendThis = (_this) => {
vm = _this
}
class data extends filter {
constructor() {
super()
}
columns() {
return [
{
label: '序号',
type: 'index',
width: '50'
},
{
label: "查询来源",
render: (h, scope) => {
switch (scope.row.cxly) {
case '1':
return <div>办事大厅</div>
case '2':
return <div>自助查询机</div>
case '3':
return <div>政务一体化平台</div>
case '4':
return <div>互联网</div>
case '5':
return <div>微信公众号</div>
}
}
},
{
label: "查询类型",
render: (h, scope) => {
switch (scope.row.cxlx) {
case '1':
return <div>家庭房产</div>
case '2':
return <div>房屋明细</div>
}
}
},
{
label: "查询编号",
prop: "cxbh"
},
{
prop: "cxsj",
label: "查询时间",
},
{
prop: "cxr",
label: "受理人员",
},
{
prop: "sqrxm",
label: "申请人",
},
{
prop: "ycqrgxmc",
label: "与产权人的关系",
},
{
prop: "qlrxm",
label: "权利人",
},
{
prop: "cxyt",
label: "查询用途",
},
{
label: "操作",
width: 80,
render: (h, scope) => {
return <el-button type="text" icon='el-icon-view' onClick={() => { vm.handleViewClick(scope) }}>查看</el-button>
}
}
]
}
}
let datas = new data()
export {
datas,
sendThis
}