sqcxjlInfo.vue
4.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<template>
<div class="sqcxjlInfo">
<el-form :model="form" boder label-width="130px">
<el-row>
<el-col :span="24" style="margin-bottom: 15px">
<div class="slxx_title title-block">
查询情况
<div class="triangle"></div>
</div>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="查询来源:" label-width="90px">{{ form.djSqcxDO.cxly }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询类型:">{{ form.djSqcxDO.cxlx }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询人员:" label-width="90px">{{ form.djSqcxDO.cxr }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询时间:">{{ form.djSqcxDO.cxsj }}
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item label="查询编号:" label-width="90px">{{ form.djSqcxDO.cxbh }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="查询用途:" label-width="90px">{{ form.djSqcxDO.cxyt }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="与产权人的关系:">{{ form.djSqcxDO.ycqrgxmc }}
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="不动产权证号:">{{ form.djSqcxDO.bdcqzh }}
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24" style="margin-bottom: 15px">
<div class="slxx_title title-block">
申请人
<div class="triangle"></div>
</div>
</el-col>
</el-row>
<el-row>
<el-col>
<lb-table :column="sqrData.columns" border :data="form.sqrList" :maxHeight="200" heightNumSetting
:pagination="false">
</lb-table>
</el-col>
</el-row>
<el-row>
<el-col :span="24" style="margin-bottom: 15px">
<div class="slxx_title title-block">
权利人
<div class="triangle"></div>
</div>
</el-col>
</el-row>
<el-row>
<el-col>
<lb-table :column="qlrData.columns" border :data="form.qlrList" :maxHeight="200" heightNumSetting
:pagination="false">
</lb-table>
</el-col>
</el-row>
<el-row>
<el-col :span="24" style="margin-bottom: 15px">
<div class="slxx_title title-block">
查询结果
<div class="triangle"></div>
</div>
</el-col>
</el-row>
<el-row>
<el-col>
<lb-table :column="cxjgData.columns" :data="form.cxjgList" :maxHeight="200" heightNumSetting
:pagination="false">
</lb-table>
</el-col>
</el-row>
<el-row>
<el-col :span="24" style="margin-bottom: 15px">
<div class="slxx_title title-block">
打印记录
<div class="triangle"></div>
</div>
</el-col>
</el-row>
<el-row>
<el-col>
<lb-table :column="dyjlcolumns" :data="form.dyjlList" :maxHeight="200" heightNumSetting :pagination="false">
</lb-table>
</el-col>
</el-row>
</el-form>
</div>
</template>
<script>
import { getJtfcInfo } from "@/api/jtfc.js";
import { datas, sendThis } from "./sqcxjlInfodata";
export default {
props: ["formData"],
data () {
return {
form: {},
ruleForm: {
cxyt: "",
ycyrgx: 1,
cxlx: "1", //查询类型 1:房产查询 2:登记簿查询
},
sqrData: {
columns: datas.sqrcolumns(),
data: [],
},
cxjgData: {
columns: datas.cxjgcolumns(),
data: [],
},
qlrData: {
columns: datas.qlrcolumns(),
data: [],
},
dyjlcolumns: datas.dyjlcolumns(),
};
},
mounted () {
sendThis(this);
var sqcxBsm = this.formData.sqcxBsm;
getJtfcInfo({ sqcxBsm: sqcxBsm })
.then((res) => {
if (res.code == 200) {
this.form = res.result;
this.sqrData.data = res.result.sqxx;
this.qlrData.data = res.result.qlrxx;
this.cxjgData.data = res.result.djSqcxCxjgDOList;
this.cxbh = res.result.djSqcxDO.cxbh;
}
})
.catch((error) => {
console.log(error);
});
},
methods: {},
};
</script>
<style scoped lang="scss">
@import "~@/styles/mixin.scss";
/deep/.el-form-item {
margin-bottom: 0 !important;
}
</style>