Merge remote-tracking branch 'origin/dev' into dev
Showing
16 changed files
with
2953 additions
and
0 deletions
src/api/v1.js
0 → 100644
1 | /* | ||
2 | * @Description: 互联共享数据 | ||
3 | * @Autor: | ||
4 | * @LastEditTime: 2023-09-06 09:47:59 | ||
5 | */ | ||
6 | |||
7 | import request from "@/utils/request"; | ||
8 | let SERVER = window.config | ||
9 | ? window.config | ||
10 | : JSON.parse(localStorage.getItem("ApiUrl")); | ||
11 | |||
12 | /** | ||
13 | * @description: 身份核查 | ||
14 | * @param {*} data | ||
15 | * @author: | ||
16 | */ | ||
17 | export function sfhc(data) { | ||
18 | return request({ | ||
19 | url: SERVER.SERVERAPI + "/v1/gab/sfhc", | ||
20 | method: "post", | ||
21 | data, | ||
22 | }); | ||
23 | } | ||
24 | /** | ||
25 | * @description: 婚姻 | ||
26 | * @param {*} data | ||
27 | * @author: | ||
28 | */ | ||
29 | export function hy(data) { | ||
30 | return request({ | ||
31 | url: SERVER.SERVERAPI + "/v1/mzb/hy", | ||
32 | method: "post", | ||
33 | data, | ||
34 | }); | ||
35 | } | ||
36 | /** | ||
37 | * @description: 金融许可证 | ||
38 | * @param {*} data | ||
39 | * @author: | ||
40 | */ | ||
41 | export function jrxkz(data) { | ||
42 | return request({ | ||
43 | url: SERVER.SERVERAPI + "/v1/ybj/jrxkz", | ||
44 | method: "post", | ||
45 | data, | ||
46 | }); | ||
47 | } | ||
48 | /** | ||
49 | * @description: 企业基本信息查询 | ||
50 | * @param {*} data | ||
51 | * @author: | ||
52 | */ | ||
53 | export function qyjbxx(data) { | ||
54 | return request({ | ||
55 | url: SERVER.SERVERAPI + "/v1/scjg/qyjbxx", | ||
56 | method: "post", | ||
57 | data, | ||
58 | }); | ||
59 | } | ||
60 | /** | ||
61 | * @description: 企业基本信息验证 | ||
62 | * @param {*} data | ||
63 | * @author: | ||
64 | */ | ||
65 | export function qyjbxxyz(data) { | ||
66 | return request({ | ||
67 | url: SERVER.SERVERAPI + "/v1/scjg/qyjbxxyz", | ||
68 | method: "post", | ||
69 | data, | ||
70 | }); | ||
71 | } | ||
72 | /** | ||
73 | * @description: 地域信息查询 | ||
74 | * @param {*} data | ||
75 | * @author: | ||
76 | */ | ||
77 | export function dm(data) { | ||
78 | return request({ | ||
79 | url: SERVER.SERVERAPI + "/v1/mzb/dm", | ||
80 | method: "post", | ||
81 | data, | ||
82 | }); | ||
83 | } | ||
84 | /** | ||
85 | * @description: 个体工商户基本信息查询 | ||
86 | * @param {*} data | ||
87 | * @author: | ||
88 | */ | ||
89 | export function gtgshjbxx(data) { | ||
90 | return request({ | ||
91 | url: SERVER.SERVERAPI + "/v1/sczj/gtgshjbxx", | ||
92 | method: "post", | ||
93 | data, | ||
94 | }); | ||
95 | } | ||
96 | /** | ||
97 | * @description: 个体工商户基本信息验证 | ||
98 | * @param {*} data | ||
99 | * @author: | ||
100 | */ | ||
101 | export function gtgshjbxxyz(data) { | ||
102 | return request({ | ||
103 | url: SERVER.SERVERAPI + "/v1/sczj/gtgshjbxxyz", | ||
104 | method: "post", | ||
105 | data, | ||
106 | }); | ||
107 | } | ||
108 | /** | ||
109 | * @description: 中编办机构信息查询 | ||
110 | * @param {*} data | ||
111 | * @author: | ||
112 | */ | ||
113 | export function xydm(data) { | ||
114 | return request({ | ||
115 | url: SERVER.SERVERAPI + "/v1/zbb/xydm", | ||
116 | method: "post", | ||
117 | data, | ||
118 | }); | ||
119 | } | ||
120 | /** | ||
121 | * @description: 机构信息查询 | ||
122 | * @param {*} data | ||
123 | * @author: | ||
124 | */ | ||
125 | export function jgxxcx(data) { | ||
126 | return request({ | ||
127 | url: SERVER.SERVERAPI + "/v1/mzb/xydm", | ||
128 | method: "post", | ||
129 | data, | ||
130 | }); | ||
131 | } | ||
132 | /** | ||
133 | * @description: 不动产登记信息查询 | ||
134 | * @param {*} data | ||
135 | * @author: | ||
136 | */ | ||
137 | export function bdcdj(data) { | ||
138 | return request({ | ||
139 | url: SERVER.SERVERAPI + "/v1/mzt/bdcdj", | ||
140 | method: "post", | ||
141 | data, | ||
142 | }); | ||
143 | } | ||
144 | /** | ||
145 | * @description: 电子营业执照 | ||
146 | * @param {*} data | ||
147 | * @author: | ||
148 | */ | ||
149 | export function dzyyzz(data) { | ||
150 | return request({ | ||
151 | url: SERVER.SERVERAPI + "/v1/sczj/dzyyzz", | ||
152 | method: "post", | ||
153 | data, | ||
154 | }); | ||
155 | } | ||
156 | /** | ||
157 | * @description: 公证书信息查询 | ||
158 | * @param {*} data | ||
159 | * @author: | ||
160 | */ | ||
161 | export function gzsxx(data) { | ||
162 | return request({ | ||
163 | url: SERVER.SERVERAPI + "/v1/sft/gzsxx", | ||
164 | method: "post", | ||
165 | data, | ||
166 | }); | ||
167 | } | ||
168 | /** | ||
169 | * @description: 判决文书 | ||
170 | * @param {*} data | ||
171 | * @author: | ||
172 | */ | ||
173 | export function pjws(data) { | ||
174 | return request({ | ||
175 | url: SERVER.SERVERAPI + "/v1/zgf/pjws", | ||
176 | method: "post", | ||
177 | data, | ||
178 | }); | ||
179 | } | ||
180 | /** | ||
181 | * @description: 判决文书二次查询 | ||
182 | * @param {*} data | ||
183 | * @author: | ||
184 | */ | ||
185 | export function pjwsDetail(data) { | ||
186 | return request({ | ||
187 | url: SERVER.SERVERAPI + "/v1/zgf/pjwsDetail", | ||
188 | method: "post", | ||
189 | data, | ||
190 | }); | ||
191 | } | ||
192 |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-07 10:17:08 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\bdcdjxxcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="110px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="7"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="7"> | ||
34 | <el-form-item label="名称"> | ||
35 | <el-input | ||
36 | placeholder="名称" | ||
37 | v-model="queryForm.certCode" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="7"> | ||
45 | <el-form-item label="证件类型编码"> | ||
46 | <el-input | ||
47 | placeholder="证件类型编码" | ||
48 | v-model="queryForm.certCode" | ||
49 | clearable | ||
50 | class="width100" | ||
51 | > | ||
52 | </el-input> | ||
53 | </el-form-item> | ||
54 | </el-col> | ||
55 | <el-col :span="3" class="btnColRight"> | ||
56 | <el-button | ||
57 | type="primary" | ||
58 | native-type="submit" | ||
59 | @click="handleSearch" | ||
60 | >查询</el-button | ||
61 | > | ||
62 | </el-col> </el-row | ||
63 | ><el-row> | ||
64 | <el-col :span="7"> | ||
65 | <el-form-item label="证件号码"> | ||
66 | <el-input | ||
67 | placeholder="证件号码" | ||
68 | v-model="queryForm.businessNumber" | ||
69 | clearable | ||
70 | class="width100" | ||
71 | > | ||
72 | </el-input> | ||
73 | </el-form-item> | ||
74 | </el-col> | ||
75 | <el-col :span="8"> | ||
76 | <el-form-item class="wide" label="行政区划地市代码"> | ||
77 | <el-input | ||
78 | placeholder="行政区划地市代码" | ||
79 | v-model="queryForm.certCode" | ||
80 | clearable | ||
81 | class="width100" | ||
82 | > | ||
83 | </el-input> | ||
84 | </el-form-item> | ||
85 | </el-col> | ||
86 | <el-col :span="9"> | ||
87 | <el-form-item class="wide" label="行政区划地县代码"> | ||
88 | <el-input | ||
89 | placeholder="行政区划地县代码" | ||
90 | v-model="queryForm.certCode" | ||
91 | clearable | ||
92 | class="width100" | ||
93 | > | ||
94 | </el-input> | ||
95 | </el-form-item> | ||
96 | </el-col> | ||
97 | </el-row> | ||
98 | </el-form> | ||
99 | </div> | ||
100 | <div class="from-clues-content"> | ||
101 | <el-table | ||
102 | :data="checkResult" | ||
103 | border | ||
104 | style="width: 100%" | ||
105 | :header-cell-style="{ 'text-align': 'center' }" | ||
106 | :cell-style="{ 'text-align': 'center' }" | ||
107 | > | ||
108 | <el-table-column prop="tdfwzl" label="土地房屋坐落" width="150"> | ||
109 | </el-table-column> | ||
110 | <el-table-column prop="fwlx" label="房屋类型" width="150"> | ||
111 | </el-table-column> | ||
112 | <el-table-column prop="jd" label="街道" width="150"> | ||
113 | </el-table-column> | ||
114 | <el-table-column prop="mph" label="门牌号" width="120"> | ||
115 | </el-table-column> | ||
116 | <el-table-column prop="fh" label="附号" width="160"> | ||
117 | </el-table-column> | ||
118 | <el-table-column prop="dh" label="栋号" width="120"> | ||
119 | </el-table-column> | ||
120 | <el-table-column prop="dyh" label="单元号" width="120"> | ||
121 | </el-table-column> | ||
122 | <el-table-column prop="lc" label="楼层" width="80"> | ||
123 | </el-table-column> | ||
124 | <el-table-column prop="fwbh" label="房屋编号" width="120"> | ||
125 | </el-table-column> | ||
126 | <el-table-column prop="mj" label="面积" width="120"> | ||
127 | </el-table-column> | ||
128 | </el-table> | ||
129 | </div> | ||
130 | </div> | ||
131 | </div> | ||
132 | </template> | ||
133 | |||
134 | <script> | ||
135 | import { bdcdj } from "@/api/v1.js"; | ||
136 | export default { | ||
137 | name: "BdcdjWebSfhc", | ||
138 | data() { | ||
139 | return { | ||
140 | queryForm: {}, | ||
141 | checkResult: [], | ||
142 | }; | ||
143 | }, | ||
144 | mounted() {}, | ||
145 | methods: { | ||
146 | handleSearch() { | ||
147 | bdcdj(this.queryForm).then((res) => { | ||
148 | if (res.status == "OK") { | ||
149 | this.checkResult = res.body; | ||
150 | } | ||
151 | }); | ||
152 | }, | ||
153 | }, | ||
154 | }; | ||
155 | </script> | ||
156 | |||
157 | <style lang="scss" scoped> | ||
158 | .wide { | ||
159 | /deep/ label { | ||
160 | width: 140px !important; | ||
161 | } | ||
162 | } | ||
163 | </style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 17:09:26 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\dyxxcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="90px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="7"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="7"> | ||
34 | <el-form-item label="6位区划代码"> | ||
35 | <el-input | ||
36 | placeholder="6位区划代码" | ||
37 | v-model="queryForm.placeCode" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="7"> | ||
45 | <el-form-item label="地名"> | ||
46 | <el-input | ||
47 | placeholder="地名" | ||
48 | v-model="queryForm.standardName" | ||
49 | clearable | ||
50 | class="width100" | ||
51 | > | ||
52 | </el-input> | ||
53 | </el-form-item> | ||
54 | </el-col> | ||
55 | <el-col :span="3" class="btnColRight"> | ||
56 | <el-button | ||
57 | type="primary" | ||
58 | native-type="submit" | ||
59 | @click="handleSearch" | ||
60 | >查询</el-button | ||
61 | > | ||
62 | </el-col> | ||
63 | </el-row> | ||
64 | </el-form> | ||
65 | </div> | ||
66 | <div class="from-clues-content"> | ||
67 | <el-form | ||
68 | :model="checkResult" | ||
69 | ref="checkResult" | ||
70 | @submit.native.prevent | ||
71 | label-width="110px" | ||
72 | > | ||
73 | <el-row> | ||
74 | <el-col :span="12"> | ||
75 | <el-form-item label="区划代码 :"> | ||
76 | <el-input | ||
77 | v-model="checkResult.uniscid" | ||
78 | disabled | ||
79 | class="width100" | ||
80 | > | ||
81 | </el-input> | ||
82 | </el-form-item> | ||
83 | </el-col> | ||
84 | <el-col :span="12"> | ||
85 | <el-form-item label="地名 :"> | ||
86 | <el-input | ||
87 | v-model="checkResult.place_code" | ||
88 | disabled | ||
89 | class="width100" | ||
90 | > | ||
91 | </el-input> | ||
92 | </el-form-item> | ||
93 | </el-col> | ||
94 | </el-row> | ||
95 | <el-row> | ||
96 | <el-col :span="12"> | ||
97 | <el-form-item label="罗马字母拼音 :"> | ||
98 | <el-input | ||
99 | v-model="checkResult.roman_alphabet_spelling" | ||
100 | disabled | ||
101 | class="width100" | ||
102 | > | ||
103 | </el-input> | ||
104 | </el-form-item> | ||
105 | </el-col> | ||
106 | <el-col :span="12"> | ||
107 | <el-form-item label="地名类别 :"> | ||
108 | <el-input | ||
109 | v-model="checkResult.place_type" | ||
110 | disabled | ||
111 | class="width100" | ||
112 | > | ||
113 | </el-input> | ||
114 | </el-form-item> | ||
115 | </el-col> | ||
116 | </el-row> | ||
117 | <el-row> | ||
118 | <el-col :span="24"> | ||
119 | <el-form-item label="地名含义 :"> | ||
120 | <el-input | ||
121 | type="textarea" | ||
122 | class="width100" | ||
123 | disabled | ||
124 | v-model="checkResult.place_meaning" | ||
125 | ></el-input> | ||
126 | </el-form-item> | ||
127 | </el-col> | ||
128 | </el-row> | ||
129 | <el-row> | ||
130 | <el-col :span="24"> | ||
131 | <el-form-item label="地名来历 :"> | ||
132 | <el-input | ||
133 | type="textarea" | ||
134 | class="width100" | ||
135 | disabled | ||
136 | v-model="checkResult.place_origin" | ||
137 | ></el-input> | ||
138 | </el-form-item> | ||
139 | </el-col> | ||
140 | </el-row> | ||
141 | <el-row> | ||
142 | <el-col :span="24"> | ||
143 | <el-form-item label="历史沿革 :"> | ||
144 | <el-input | ||
145 | type="textarea" | ||
146 | class="width100" | ||
147 | disabled | ||
148 | v-model="checkResult.place_history" | ||
149 | ></el-input> | ||
150 | </el-form-item> | ||
151 | </el-col> | ||
152 | </el-row> | ||
153 | </el-form> | ||
154 | </div> | ||
155 | </div> | ||
156 | </div> | ||
157 | </template> | ||
158 | |||
159 | <script> | ||
160 | import { dm } from "@/api/v1.js"; | ||
161 | export default { | ||
162 | name: "BdcdjWebSfhc", | ||
163 | data() { | ||
164 | return { | ||
165 | queryForm: {}, | ||
166 | checkResult: {}, | ||
167 | }; | ||
168 | }, | ||
169 | mounted() {}, | ||
170 | methods: { | ||
171 | handleSearch() { | ||
172 | dm(this.queryForm).then((res) => { | ||
173 | if (res.status == "OK") { | ||
174 | this.checkResult = res.data.rows[0]; | ||
175 | } | ||
176 | }); | ||
177 | }, | ||
178 | }, | ||
179 | }; | ||
180 | </script> | ||
181 | |||
182 | <style lang="scss" scoped> | ||
183 | </style> | ||
184 | |||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-07 10:58:32 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\dzyyzzcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="90px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="8"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="12"> | ||
34 | <el-form-item class="wide" label="唯一标识(随机码)"> | ||
35 | <el-input | ||
36 | placeholder="唯一标识(随机码)" | ||
37 | v-model="queryForm.qrid" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="4" class="btnColRight"> | ||
45 | <el-button | ||
46 | type="primary" | ||
47 | native-type="submit" | ||
48 | @click="handleSearch" | ||
49 | >查询</el-button | ||
50 | > | ||
51 | </el-col> | ||
52 | </el-row> | ||
53 | </el-form> | ||
54 | </div> | ||
55 | <div class="from-clues-content"> | ||
56 | <el-form | ||
57 | :model="checkResult" | ||
58 | ref="checkResult" | ||
59 | @submit.native.prevent | ||
60 | label-width="110px" | ||
61 | > | ||
62 | <el-row> | ||
63 | <el-col :span="12"> | ||
64 | <el-form-item label="登记机关 :"> | ||
65 | <el-input | ||
66 | v-model="checkResult.regorg_cn" | ||
67 | disabled | ||
68 | class="width100" | ||
69 | > | ||
70 | </el-input> | ||
71 | </el-form-item> | ||
72 | </el-col> | ||
73 | <el-col :span="12"> | ||
74 | <el-form-item label="登记日期 :"> | ||
75 | <el-input | ||
76 | v-model="checkResult.apprdate" | ||
77 | disabled | ||
78 | class="width100" | ||
79 | > | ||
80 | </el-input> | ||
81 | </el-form-item> | ||
82 | </el-col> | ||
83 | </el-row> | ||
84 | <el-row> | ||
85 | <el-col :span="12"> | ||
86 | <el-form-item label="注册资本 :"> | ||
87 | <el-input | ||
88 | v-model="checkResult.regcap" | ||
89 | disabled | ||
90 | class="width100" | ||
91 | > | ||
92 | </el-input> | ||
93 | </el-form-item> | ||
94 | </el-col> | ||
95 | <el-col :span="12"> | ||
96 | <el-form-item label="成立日期 :"> | ||
97 | <el-input | ||
98 | v-model="checkResult.esdate" | ||
99 | disabled | ||
100 | class="width100" | ||
101 | > | ||
102 | </el-input> | ||
103 | </el-form-item> | ||
104 | </el-col> | ||
105 | </el-row> | ||
106 | <el-row> | ||
107 | <el-col :span="12"> | ||
108 | <el-form-item label="经营期限 :"> | ||
109 | <el-input | ||
110 | v-model="checkResult.opfrom" | ||
111 | disabled | ||
112 | class="width100" | ||
113 | > | ||
114 | </el-input> | ||
115 | </el-form-item> | ||
116 | </el-col> | ||
117 | <el-col :span="12"> | ||
118 | <el-form-item label="期限至 :"> | ||
119 | <el-input | ||
120 | v-model="checkResult.opto" | ||
121 | disabled | ||
122 | class="width100" | ||
123 | > | ||
124 | </el-input> | ||
125 | </el-form-item> | ||
126 | </el-col> | ||
127 | </el-row> | ||
128 | <el-row> | ||
129 | <el-col :span="12"> | ||
130 | <el-form-item label="组成形式 :"> | ||
131 | <el-input | ||
132 | v-model="checkResult.compform" | ||
133 | disabled | ||
134 | class="width100" | ||
135 | > | ||
136 | </el-input> | ||
137 | </el-form-item> | ||
138 | </el-col> | ||
139 | <el-col :span="12"> | ||
140 | <el-form-item label="注册号 :"> | ||
141 | <el-input | ||
142 | v-model="checkResult.regno" | ||
143 | disabled | ||
144 | class="width100" | ||
145 | > | ||
146 | </el-input> | ||
147 | </el-form-item> | ||
148 | </el-col> | ||
149 | </el-row> | ||
150 | <el-row> | ||
151 | <el-col :span="24"> | ||
152 | <el-form-item label="住所 :"> | ||
153 | <el-input | ||
154 | type="textarea" | ||
155 | v-model="checkResult.dom" | ||
156 | disabled | ||
157 | class="width100" | ||
158 | > | ||
159 | </el-input> | ||
160 | </el-form-item> | ||
161 | </el-col> | ||
162 | </el-row> | ||
163 | <el-row> | ||
164 | <el-col :span="24"> | ||
165 | <el-form-item label="经营范围 :"> | ||
166 | <el-input | ||
167 | type="textarea" | ||
168 | v-model="checkResult.opscope" | ||
169 | disabled | ||
170 | class="width100" | ||
171 | > | ||
172 | </el-input> | ||
173 | </el-form-item> | ||
174 | </el-col> | ||
175 | </el-row> | ||
176 | </el-form> | ||
177 | </div> | ||
178 | </div> | ||
179 | </div> | ||
180 | </template> | ||
181 | |||
182 | <script> | ||
183 | import { dzyyzz } from "@/api/v1.js"; | ||
184 | export default { | ||
185 | name: "BdcdjWebSfhc", | ||
186 | data() { | ||
187 | return { | ||
188 | queryForm: {}, | ||
189 | checkResult: {}, | ||
190 | }; | ||
191 | }, | ||
192 | mounted() {}, | ||
193 | methods: { | ||
194 | handleSearch() { | ||
195 | dzyyzz(this.queryForm).then((res) => { | ||
196 | if (res.status == "OK") { | ||
197 | this.checkResult = res.data.rows[0]; | ||
198 | } | ||
199 | }); | ||
200 | }, | ||
201 | }, | ||
202 | }; | ||
203 | </script> | ||
204 | |||
205 | <style lang="scss" scoped> | ||
206 | .wide { | ||
207 | /deep/ label { | ||
208 | width: 140px !important; | ||
209 | } | ||
210 | } | ||
211 | </style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 17:18:33 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\gtgshjbxxcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="160px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="10"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="10"> | ||
34 | <el-form-item label="个体工商户经营者姓名"> | ||
35 | <el-input | ||
36 | placeholder="个体工商户经营者姓名" | ||
37 | v-model="queryForm.entname" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="4" class="btnColRight"> | ||
45 | <el-button | ||
46 | type="primary" | ||
47 | native-type="submit" | ||
48 | @click="handleSearch" | ||
49 | >查询</el-button | ||
50 | > | ||
51 | </el-col> | ||
52 | </el-row> | ||
53 | <el-row> | ||
54 | <el-col :span="10"> | ||
55 | <el-form-item label="个体工商户名称"> | ||
56 | <el-input | ||
57 | placeholder="个体工商户名称" | ||
58 | v-model="queryForm.uniscid" | ||
59 | clearable | ||
60 | class="width100" | ||
61 | > | ||
62 | </el-input> | ||
63 | </el-form-item> | ||
64 | </el-col> | ||
65 | <el-col :span="14"> | ||
66 | <el-form-item | ||
67 | class="wide" | ||
68 | label="个体工商户统一社会信用代码或注册号" | ||
69 | > | ||
70 | <el-input | ||
71 | placeholder="个体工商户统一社会信用代码或注册号" | ||
72 | v-model="queryForm.uniscid" | ||
73 | clearable | ||
74 | class="width100" | ||
75 | > | ||
76 | </el-input> | ||
77 | </el-form-item> | ||
78 | </el-col> | ||
79 | </el-row> | ||
80 | </el-form> | ||
81 | </div> | ||
82 | <div class="from-clues-content"> | ||
83 | <el-form | ||
84 | :model="checkResult" | ||
85 | ref="checkResult" | ||
86 | @submit.native.prevent | ||
87 | label-width="140px" | ||
88 | > | ||
89 | <el-row> | ||
90 | <el-col :span="12"> | ||
91 | <el-form-item label="统一社会信用代码 :"> | ||
92 | <el-input v-model="checkResult.uniscid" disabled class="width100"> | ||
93 | </el-input> | ||
94 | </el-form-item> | ||
95 | </el-col> | ||
96 | <el-col :span="12"> | ||
97 | <el-form-item label="个体名称 :"> | ||
98 | <el-input | ||
99 | v-model="checkResult.traname" | ||
100 | disabled | ||
101 | class="width100" | ||
102 | > | ||
103 | </el-input> | ||
104 | </el-form-item> | ||
105 | </el-col> | ||
106 | </el-row> | ||
107 | <el-row> | ||
108 | <el-col :span="12"> | ||
109 | <el-form-item label="类型 :"> | ||
110 | <el-input | ||
111 | v-model="checkResult.enttype" | ||
112 | disabled | ||
113 | class="width100" | ||
114 | > | ||
115 | </el-input> | ||
116 | </el-form-item> | ||
117 | </el-col> | ||
118 | <el-col :span="12"> | ||
119 | <el-form-item label="注册号 :"> | ||
120 | <el-input | ||
121 | v-model="checkResult.regno" | ||
122 | disabled | ||
123 | class="width100" | ||
124 | > | ||
125 | </el-input> | ||
126 | </el-form-item> | ||
127 | </el-col> | ||
128 | </el-row> | ||
129 | <el-row> | ||
130 | <el-col :span="12"> | ||
131 | <el-form-item label="经营者 :"> | ||
132 | <el-input | ||
133 | v-model="checkResult.name" | ||
134 | disabled | ||
135 | class="width100" | ||
136 | > | ||
137 | </el-input> | ||
138 | </el-form-item> | ||
139 | </el-col> | ||
140 | <el-col :span="12"> | ||
141 | <el-form-item label="经营场所 :"> | ||
142 | <el-input | ||
143 | v-model="checkResult.oploc" | ||
144 | disabled | ||
145 | class="width100" | ||
146 | > | ||
147 | </el-input> | ||
148 | </el-form-item> | ||
149 | </el-col> | ||
150 | </el-row> | ||
151 | <el-row> | ||
152 | <el-col :span="12"> | ||
153 | <el-form-item label="注册日期: :"> | ||
154 | <el-input | ||
155 | v-model="checkResult.estdate" | ||
156 | disabled | ||
157 | class="width100" | ||
158 | > | ||
159 | </el-input> | ||
160 | </el-form-item> | ||
161 | </el-col> | ||
162 | <el-col :span="12"> | ||
163 | <el-form-item label="核准日期: :"> | ||
164 | <el-input | ||
165 | v-model="checkResult.apprdate" | ||
166 | disabled | ||
167 | class="width100" | ||
168 | > | ||
169 | </el-input> | ||
170 | </el-form-item> | ||
171 | </el-col> | ||
172 | </el-row> | ||
173 | <el-row> | ||
174 | <el-col :span="12"> | ||
175 | <el-form-item label="组成形式 :"> | ||
176 | <el-input | ||
177 | v-model="checkResult.compformcn" | ||
178 | disabled | ||
179 | class="width100" | ||
180 | > | ||
181 | </el-input> | ||
182 | </el-form-item> | ||
183 | </el-col> | ||
184 | <el-col :span="12"> | ||
185 | <el-form-item label="数据更新时间 :"> | ||
186 | <el-input | ||
187 | v-model="checkResult.updatetime" | ||
188 | disabled | ||
189 | class="width100" | ||
190 | > | ||
191 | </el-input> | ||
192 | </el-form-item> | ||
193 | </el-col> | ||
194 | </el-row> | ||
195 | <el-row> | ||
196 | <el-col :span="12"> | ||
197 | <el-form-item label="登记机关 :"> | ||
198 | <el-input | ||
199 | v-model="checkResult.regorgcn" | ||
200 | disabled | ||
201 | class="width100" | ||
202 | > | ||
203 | </el-input> | ||
204 | </el-form-item> | ||
205 | </el-col> | ||
206 | <el-col :span="12"> | ||
207 | <el-form-item label="登记状态 :"> | ||
208 | <el-input | ||
209 | v-model="checkResult.regstatecn" | ||
210 | disabled | ||
211 | class="width100" | ||
212 | > | ||
213 | </el-input> | ||
214 | </el-form-item> | ||
215 | </el-col> | ||
216 | </el-row> | ||
217 | <el-row> | ||
218 | <el-col :span="24"> | ||
219 | <el-form-item label="经营范围 :"> | ||
220 | <el-input | ||
221 | type="textarea" | ||
222 | class="width100" | ||
223 | disabled | ||
224 | v-model="checkResult.opscope" | ||
225 | ></el-input> | ||
226 | </el-form-item> | ||
227 | </el-col> | ||
228 | </el-row> | ||
229 | </el-form> | ||
230 | </div> | ||
231 | </div> | ||
232 | </div> | ||
233 | </template> | ||
234 | |||
235 | <script> | ||
236 | import { gtgshjbxx } from "@/api/v1.js"; | ||
237 | export default { | ||
238 | name: "BdcdjWebSfhc", | ||
239 | data() { | ||
240 | return { | ||
241 | queryForm: {}, | ||
242 | checkResult: {}, | ||
243 | }; | ||
244 | }, | ||
245 | mounted() {}, | ||
246 | methods: { | ||
247 | handleSearch() { | ||
248 | gtgshjbxx(this.queryForm).then((res) => { | ||
249 | if (res.status == "OK") { | ||
250 | this.checkResult = res.body; | ||
251 | } | ||
252 | }); | ||
253 | }, | ||
254 | }, | ||
255 | }; | ||
256 | </script> | ||
257 | |||
258 | <style lang="scss" scoped> | ||
259 | .wide { | ||
260 | /deep/ label { | ||
261 | width: 258px !important; | ||
262 | } | ||
263 | } | ||
264 | </style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 17:26:49 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\gtgshjbxxyz.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="160px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="20"> | ||
23 | <el-form-item | ||
24 | class="wide" | ||
25 | label="个体工商户统一社会信用代码或注册号" | ||
26 | > | ||
27 | <el-input | ||
28 | placeholder="个体工商户统一社会信用代码或注册号" | ||
29 | v-model="queryForm.epbno" | ||
30 | clearable | ||
31 | class="width100" | ||
32 | > | ||
33 | </el-input> | ||
34 | </el-form-item> | ||
35 | </el-col> | ||
36 | <el-col :span="4" class="btnColRight"> | ||
37 | <el-button | ||
38 | type="primary" | ||
39 | native-type="submit" | ||
40 | @click="handleSearch" | ||
41 | >查询</el-button | ||
42 | > | ||
43 | </el-col> | ||
44 | </el-row> | ||
45 | <el-row> | ||
46 | <el-col :span="12"> | ||
47 | <el-form-item label="个体工商户经营者姓名"> | ||
48 | <el-input | ||
49 | placeholder="个体工商户经营者姓名" | ||
50 | v-model="queryForm.name" | ||
51 | clearable | ||
52 | class="width100" | ||
53 | > | ||
54 | </el-input> | ||
55 | </el-form-item> | ||
56 | </el-col> | ||
57 | <el-col :span="12"> | ||
58 | <el-form-item label="个体工商户名称"> | ||
59 | <el-input | ||
60 | placeholder="个体工商户名称" | ||
61 | v-model="queryForm.traname" | ||
62 | clearable | ||
63 | class="width100" | ||
64 | > | ||
65 | </el-input> | ||
66 | </el-form-item> | ||
67 | </el-col> | ||
68 | </el-row> | ||
69 | <el-row> | ||
70 | <el-col :span="12"> | ||
71 | <el-form-item label="业务号"> | ||
72 | <el-input | ||
73 | placeholder="业务号" | ||
74 | v-model="queryForm.businessNumber" | ||
75 | clearable | ||
76 | class="width100" | ||
77 | > | ||
78 | </el-input> | ||
79 | </el-form-item> | ||
80 | </el-col> | ||
81 | <el-col :span="12"> | ||
82 | <el-form-item label="核准日期"> | ||
83 | <el-date-picker | ||
84 | type="date" | ||
85 | placeholder="核准日期" | ||
86 | v-model="queryForm.apprdate" | ||
87 | clearable | ||
88 | class="width100" | ||
89 | > | ||
90 | </el-date-picker> | ||
91 | </el-form-item> | ||
92 | </el-col> | ||
93 | </el-row> | ||
94 | <el-row> | ||
95 | <el-col :span="12"> | ||
96 | <el-form-item label="组成形式"> | ||
97 | <el-input | ||
98 | placeholder="组成形式" | ||
99 | v-model="queryForm.compformcn" | ||
100 | clearable | ||
101 | class="width100" | ||
102 | > | ||
103 | </el-input> | ||
104 | </el-form-item> | ||
105 | </el-col> | ||
106 | <el-col :span="12"> | ||
107 | <el-form-item label="成立日期"> | ||
108 | <el-date-picker | ||
109 | type="date" | ||
110 | placeholder="成立日期" | ||
111 | v-model="queryForm.estdate" | ||
112 | clearable | ||
113 | class="width100" | ||
114 | > | ||
115 | </el-date-picker> | ||
116 | </el-form-item> | ||
117 | </el-col> | ||
118 | </el-row> | ||
119 | <el-row> | ||
120 | <el-col :span="12"> | ||
121 | <el-form-item label="经营场所"> | ||
122 | <el-input | ||
123 | placeholder="经营场所" | ||
124 | v-model="queryForm.oploc" | ||
125 | clearable | ||
126 | class="width100" | ||
127 | > | ||
128 | </el-input> | ||
129 | </el-form-item> | ||
130 | </el-col> | ||
131 | <el-col :span="12"> | ||
132 | <el-form-item label="经营范围"> | ||
133 | <el-input | ||
134 | placeholder="经营范围" | ||
135 | v-model="queryForm.opscope" | ||
136 | clearable | ||
137 | class="width100" | ||
138 | > | ||
139 | </el-input> | ||
140 | </el-form-item> | ||
141 | </el-col> | ||
142 | </el-row> | ||
143 | </el-form> | ||
144 | </div> | ||
145 | <div class="from-clues-content"> | ||
146 | <p>验证结果:<span></span></p> | ||
147 | </div> | ||
148 | </div> | ||
149 | </div> | ||
150 | </template> | ||
151 | |||
152 | <script> | ||
153 | import { gtgshjbxxyz } from "@/api/v1.js"; | ||
154 | export default { | ||
155 | name: "BdcdjWebSfhc", | ||
156 | data() { | ||
157 | return { | ||
158 | queryForm: {}, | ||
159 | checkResult: {}, | ||
160 | }; | ||
161 | }, | ||
162 | mounted() {}, | ||
163 | methods: { | ||
164 | handleSearch() { | ||
165 | gtgshjbxxyz(this.queryForm).then((res) => { | ||
166 | if (res.status == "OK") { | ||
167 | this.checkResult = res.body; | ||
168 | } | ||
169 | }); | ||
170 | }, | ||
171 | }, | ||
172 | }; | ||
173 | </script> | ||
174 | |||
175 | <style lang="scss" scoped> | ||
176 | .wide { | ||
177 | /deep/ label { | ||
178 | width: 258px !important; | ||
179 | } | ||
180 | } | ||
181 | .from-clues-content { | ||
182 | margin-left: 40px; | ||
183 | p { | ||
184 | margin-top: 20px; | ||
185 | color: grey; | ||
186 | } | ||
187 | } | ||
188 | </style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-07 11:11:32 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\gzsxxcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="80px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="9"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="9"> | ||
34 | <el-form-item label="证件号码"> | ||
35 | <el-input | ||
36 | placeholder="证件号码" | ||
37 | v-model="queryForm.certCode" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="6" class="btnColRight"> | ||
45 | <el-button | ||
46 | type="primary" | ||
47 | native-type="submit" | ||
48 | @click="handleSearch" | ||
49 | >查询</el-button | ||
50 | > | ||
51 | </el-col> | ||
52 | </el-row> | ||
53 | </el-form> | ||
54 | </div> | ||
55 | <div class="from-clues-content"> | ||
56 | <el-table | ||
57 | :data="checkResult" | ||
58 | border | ||
59 | style="width: 100%" | ||
60 | :header-cell-style="{ 'text-align': 'center' }" | ||
61 | :cell-style="{ 'text-align': 'center' }" | ||
62 | > | ||
63 | <el-table-column prop="apply_name" label="当事人姓名" width="150"> | ||
64 | </el-table-column> | ||
65 | <el-table-column prop="apply_card_num" label="证件号码" width="150"> | ||
66 | </el-table-column> | ||
67 | <el-table-column prop="notary_type" label="公证业务类别" width="150"> | ||
68 | </el-table-column> | ||
69 | <el-table-column prop="notary_num" label="公证书编号" width="120"> | ||
70 | </el-table-column> | ||
71 | <el-table-column prop="notary_content" label="公证书内容" width="160"> | ||
72 | </el-table-column> | ||
73 | <el-table-column prop="org_name" label="公证机构名称" width="160"> | ||
74 | </el-table-column> | ||
75 | <el-table-column prop="notary_name" label="公证员" width="120"> | ||
76 | </el-table-column> | ||
77 | <el-table-column prop="accept_date" label="公证日期" width="120"> </el-table-column> | ||
78 | <el-table-column prop="fwbh" label="房屋编号" width="120"> | ||
79 | </el-table-column> | ||
80 | <el-table-column prop="mj" label="面积" width="120"> | ||
81 | </el-table-column> | ||
82 | <el-table-column prop="sfdy" label="是否抵押" width="120"> | ||
83 | </el-table-column> | ||
84 | <el-table-column prop="sfcf" label="是否查封" width="120"> | ||
85 | </el-table-column> | ||
86 | </el-table> | ||
87 | </div> | ||
88 | </div> | ||
89 | </div> | ||
90 | </template> | ||
91 | |||
92 | <script> | ||
93 | import { gzsxx } from "@/api/v1.js"; | ||
94 | export default { | ||
95 | name: "BdcdjWebSfhc", | ||
96 | data() { | ||
97 | return { | ||
98 | queryForm: {}, | ||
99 | checkResult: [], | ||
100 | }; | ||
101 | }, | ||
102 | mounted() {}, | ||
103 | methods: { | ||
104 | handleSearch() { | ||
105 | gzsxx(this.queryForm).then((res) => { | ||
106 | if (res.status == "OK") { | ||
107 | this.checkResult = res.body; | ||
108 | } | ||
109 | }); | ||
110 | }, | ||
111 | }, | ||
112 | }; | ||
113 | </script> | ||
114 | |||
115 | <style lang="scss" scoped> | ||
116 | .wide { | ||
117 | /deep/ label { | ||
118 | width: 140px !important; | ||
119 | } | ||
120 | } | ||
121 | </style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 10:03:23 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\hydjxxhy.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <el-table :data="checkResult" border style="width: 100%" :header-cell-style="{ 'text-align': 'center'}" :cell-style="{ 'text-align': 'center' }"> | ||
14 | <el-table-column prop="op_type" label="婚姻登记业务类型" width="150"> | ||
15 | </el-table-column> | ||
16 | <el-table-column prop="dept_code" label="登记机关代码" width="150"> | ||
17 | </el-table-column> | ||
18 | <el-table-column prop="dept_name" label="登记机关名称" width="150"> | ||
19 | </el-table-column> | ||
20 | <el-table-column prop="op_date" label="登记日期" width="120"> | ||
21 | </el-table-column> | ||
22 | <el-table-column prop="cert_no" label="结婚证/离婚证字号" width="160"> | ||
23 | </el-table-column> | ||
24 | <el-table-column prop="name_woman" label="女方姓名" width="120"> | ||
25 | </el-table-column> | ||
26 | <el-table-column prop="cert_num_woman" label="女方身份证件号" width="140"> | ||
27 | </el-table-column> | ||
28 | <el-table-column prop="birth_woman" label="女方出生日期" width="120"> | ||
29 | </el-table-column> | ||
30 | <el-table-column prop="nation_woman" label="女方国籍" width="80"> | ||
31 | </el-table-column> | ||
32 | <el-table-column prop="name_man" label="男方姓名" width="120"> | ||
33 | </el-table-column> | ||
34 | <el-table-column prop="cert_num_man" label="男方身份证件号" width="140"> | ||
35 | </el-table-column> | ||
36 | <el-table-column prop="birth_man" label="男方出生日期" width="120"> | ||
37 | </el-table-column> | ||
38 | <el-table-column prop="nation_man" label="男方国籍" width="80"> | ||
39 | </el-table-column> | ||
40 | </el-table> | ||
41 | </div> | ||
42 | </template> | ||
43 | |||
44 | <script> | ||
45 | import { hy } from "@/api/v1.js"; | ||
46 | export default { | ||
47 | name: "BdcdjWebSfhc", | ||
48 | prop: { | ||
49 | condition: { | ||
50 | type: Object, | ||
51 | default: () => { | ||
52 | return {}; | ||
53 | }, | ||
54 | }, | ||
55 | }, | ||
56 | data() { | ||
57 | return { | ||
58 | checkResult: [], | ||
59 | }; | ||
60 | }, | ||
61 | |||
62 | mounted() { | ||
63 | hy(this.condition).then((res) => { | ||
64 | if (res.status == 'OK') { | ||
65 | this.checkResult = res.data.rows | ||
66 | } | ||
67 | }); | ||
68 | }, | ||
69 | |||
70 | methods: {}, | ||
71 | }; | ||
72 | </script> | ||
73 | |||
74 | <style lang="scss" scoped></style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-07 09:14:22 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\jgxxcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="124px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="10"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="10"> | ||
34 | <el-form-item label="社会组织名称"> | ||
35 | <el-input | ||
36 | placeholder="社会组织名称" | ||
37 | v-model="queryForm.name" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="4" class="btnColRight"> | ||
45 | <el-button | ||
46 | type="primary" | ||
47 | native-type="submit" | ||
48 | @click="handleSearch" | ||
49 | >查询</el-button | ||
50 | > | ||
51 | </el-col> | ||
52 | </el-row> | ||
53 | <el-row> | ||
54 | <el-col :span="10"> | ||
55 | <el-form-item label="统一社会信用代码"> | ||
56 | <el-input | ||
57 | placeholder="统一社会信用代码" | ||
58 | v-model="queryForm.tyshxydm" | ||
59 | clearable | ||
60 | class="width100" | ||
61 | > | ||
62 | </el-input> | ||
63 | </el-form-item> | ||
64 | </el-col> | ||
65 | <el-col :span="14"> | ||
66 | <el-form-item class="wide" label="社会组织信息查询服务"> | ||
67 | <el-input | ||
68 | placeholder="社会组织信息查询服务" | ||
69 | v-model="queryForm.searchType" | ||
70 | clearable | ||
71 | class="width100" | ||
72 | > | ||
73 | </el-input> | ||
74 | </el-form-item> | ||
75 | </el-col> | ||
76 | </el-row> | ||
77 | </el-form> | ||
78 | </div> | ||
79 | <div class="from-clues-content"> | ||
80 | <el-form | ||
81 | :model="checkResult" | ||
82 | ref="checkResult" | ||
83 | @submit.native.prevent | ||
84 | label-width="140px" | ||
85 | > | ||
86 | <el-row> | ||
87 | <el-col :span="12"> | ||
88 | <el-form-item label="统一社会信用代码 :"> | ||
89 | <el-input | ||
90 | v-model="checkResult.usc_code" | ||
91 | disabled | ||
92 | class="width100" | ||
93 | > | ||
94 | </el-input> | ||
95 | </el-form-item> | ||
96 | </el-col> | ||
97 | <el-col :span="12"> | ||
98 | <el-form-item label="社会组织名称 :"> | ||
99 | <el-input v-model="checkResult.org_name" disabled class="width100"> | ||
100 | </el-input> | ||
101 | </el-form-item> | ||
102 | </el-col> | ||
103 | </el-row> | ||
104 | <el-row> | ||
105 | <el-col :span="12"> | ||
106 | <el-form-item label="法定代表人 :"> | ||
107 | <el-input v-model="checkResult.legal_name" disabled class="width100"> | ||
108 | </el-input> | ||
109 | </el-form-item> | ||
110 | </el-col> | ||
111 | <el-col :span="12"> | ||
112 | <el-form-item label="注册资金 :"> | ||
113 | <el-input | ||
114 | v-model="checkResult.registered_capital" | ||
115 | disabled | ||
116 | class="width100" | ||
117 | > | ||
118 | </el-input> | ||
119 | </el-form-item> | ||
120 | </el-col> | ||
121 | </el-row> | ||
122 | <el-row> | ||
123 | <el-col :span="12"> | ||
124 | <el-form-item label="住所具体地址 :"> | ||
125 | <el-input v-model="checkResult.domicile_addres" disabled class="width100"> | ||
126 | </el-input> | ||
127 | </el-form-item> | ||
128 | </el-col> | ||
129 | <el-col :span="12"> | ||
130 | <el-form-item label="证书有效期起 :"> | ||
131 | <el-input v-model="checkResult.valid_from" disabled class="width100"> | ||
132 | </el-input> | ||
133 | </el-form-item> | ||
134 | </el-col> | ||
135 | </el-row> | ||
136 | <el-row> | ||
137 | <el-col :span="12"> | ||
138 | <el-form-item label="证书有效期止 :"> | ||
139 | <el-input v-model="checkResult.valid_to" disabled class="width100"> | ||
140 | </el-input> | ||
141 | </el-form-item> | ||
142 | </el-col> | ||
143 | <el-col :span="12"> | ||
144 | <el-form-item label="发证机关 :"> | ||
145 | <el-input v-model="checkResult.issue_certificate_dept" disabled class="width100"> | ||
146 | </el-input> | ||
147 | </el-form-item> | ||
148 | </el-col> | ||
149 | </el-row> | ||
150 | <el-row> | ||
151 | <el-col :span="12"> | ||
152 | <el-form-item label="活动地域 :"> | ||
153 | <el-input v-model="checkResult.activity_range" disabled class="width100"> | ||
154 | </el-input> | ||
155 | </el-form-item> | ||
156 | </el-col> | ||
157 | <el-col :span="12"> | ||
158 | <el-form-item label="发证日期 :"> | ||
159 | <el-input v-model="checkResult.registration_date" disabled class="width100"> | ||
160 | </el-input> | ||
161 | </el-form-item> | ||
162 | </el-col> | ||
163 | </el-row> | ||
164 | <el-row> | ||
165 | <el-col :span="12"> | ||
166 | <el-form-item label="主管单位 :"> | ||
167 | <el-input v-model="checkResult.manager_dept" disabled class="width100"> | ||
168 | </el-input> | ||
169 | </el-form-item> | ||
170 | </el-col> | ||
171 | <el-col :span="12"> | ||
172 | <el-form-item label="是否慈善组织 :"> | ||
173 | <el-input v-model="checkResult.ifcharity" disabled class="width100"> | ||
174 | </el-input> | ||
175 | </el-form-item> | ||
176 | </el-col> | ||
177 | </el-row> | ||
178 | <el-row> | ||
179 | <el-col :span="24"> | ||
180 | <el-form-item label="业务范围 :"> | ||
181 | <el-input | ||
182 | type="textarea" | ||
183 | v-model="checkResult.business_scope" | ||
184 | disabled | ||
185 | class="width100" | ||
186 | > | ||
187 | </el-input> | ||
188 | </el-form-item> | ||
189 | </el-col> | ||
190 | </el-row> | ||
191 | </el-form> | ||
192 | </div> | ||
193 | </div> | ||
194 | </div> | ||
195 | </template> | ||
196 | |||
197 | <script> | ||
198 | import { jgxxcx } from "@/api/v1.js"; | ||
199 | export default { | ||
200 | name: "BdcdjWebSfhc", | ||
201 | data() { | ||
202 | return { | ||
203 | queryForm: {}, | ||
204 | checkResult: {}, | ||
205 | }; | ||
206 | }, | ||
207 | mounted() {}, | ||
208 | methods: { | ||
209 | handleSearch() { | ||
210 | jgxxcx(this.queryForm).then((res) => { | ||
211 | if (res.status == "OK") { | ||
212 | this.checkResult = res.data.rows[0]; | ||
213 | } | ||
214 | }); | ||
215 | }, | ||
216 | }, | ||
217 | }; | ||
218 | </script> | ||
219 | |||
220 | <style lang="scss" scoped> | ||
221 | .wide { | ||
222 | /deep/ label { | ||
223 | width: 180px !important; | ||
224 | } | ||
225 | } | ||
226 | </style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 11:19:07 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\jrxkcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="80px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="7"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="7"> | ||
34 | <el-form-item label="机构编码"> | ||
35 | <el-input | ||
36 | placeholder="机构编码" | ||
37 | v-model="queryForm.certCode" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="6"> | ||
45 | <el-form-item label="查询类型"> | ||
46 | <el-select | ||
47 | v-model="queryForm.typeId" | ||
48 | class="width100" | ||
49 | filterable | ||
50 | clearable | ||
51 | placeholder="查询类型" | ||
52 | > | ||
53 | <el-option | ||
54 | v-for="item in typeList" | ||
55 | :key="item.code" | ||
56 | :label="item.name" | ||
57 | :value="item.code" | ||
58 | > | ||
59 | </el-option> | ||
60 | </el-select> | ||
61 | </el-form-item> | ||
62 | </el-col> | ||
63 | <el-col :span="4" class="btnColRight"> | ||
64 | <el-button | ||
65 | type="primary" | ||
66 | native-type="submit" | ||
67 | @click="handleSearch" | ||
68 | >查询</el-button | ||
69 | > | ||
70 | </el-col> | ||
71 | </el-row> | ||
72 | </el-form> | ||
73 | </div> | ||
74 | <div class="from-clues-content"> | ||
75 | <el-form | ||
76 | :model="checkResult" | ||
77 | ref="checkResult" | ||
78 | @submit.native.prevent | ||
79 | label-width="120px" | ||
80 | > | ||
81 | <el-row> | ||
82 | <el-col :span="12"> | ||
83 | <el-form-item label="金融许可证id :"> | ||
84 | <el-input v-model="checkResult.id" disabled class="width100"> | ||
85 | </el-input> | ||
86 | </el-form-item> | ||
87 | </el-col> | ||
88 | <el-col :span="12"> | ||
89 | <el-form-item label="流水号 :"> | ||
90 | <el-input | ||
91 | v-model="checkResult.certFlowNo" | ||
92 | disabled | ||
93 | class="width100" | ||
94 | > | ||
95 | </el-input> | ||
96 | </el-form-item> | ||
97 | </el-col> | ||
98 | </el-row> | ||
99 | <el-row> | ||
100 | <el-col :span="12"> | ||
101 | <el-form-item label="机构编码 :"> | ||
102 | <el-input | ||
103 | v-model="checkResult.certCode" | ||
104 | disabled | ||
105 | class="width100" | ||
106 | > | ||
107 | </el-input> | ||
108 | </el-form-item> | ||
109 | </el-col> | ||
110 | <el-col :span="12"> | ||
111 | <el-form-item label="机构全称 :"> | ||
112 | <el-input | ||
113 | v-model="checkResult.fullName" | ||
114 | disabled | ||
115 | class="width100" | ||
116 | > | ||
117 | </el-input> | ||
118 | </el-form-item> | ||
119 | </el-col> | ||
120 | </el-row> | ||
121 | <el-row> | ||
122 | <el-col :span="12"> | ||
123 | <el-form-item label="机构简称 :"> | ||
124 | <el-input | ||
125 | v-model="checkResult.simpleName" | ||
126 | disabled | ||
127 | class="width100" | ||
128 | > | ||
129 | </el-input> | ||
130 | </el-form-item> | ||
131 | </el-col> | ||
132 | <el-col :span="12"> | ||
133 | <el-form-item label="英文名称 :"> | ||
134 | <el-input | ||
135 | v-model="checkResult.englishName" | ||
136 | disabled | ||
137 | class="width100" | ||
138 | > | ||
139 | </el-input> | ||
140 | </el-form-item> | ||
141 | </el-col> | ||
142 | </el-row> | ||
143 | <el-row> | ||
144 | <el-col :span="12"> | ||
145 | <el-form-item label="设立日期 :"> | ||
146 | <el-input v-model="checkResult.setDate" disabled class="width100"> | ||
147 | </el-input> | ||
148 | </el-form-item> | ||
149 | </el-col> | ||
150 | <el-col :span="12"> | ||
151 | <el-form-item label="打印日期 :"> | ||
152 | <el-input | ||
153 | v-model="checkResult.printDate" | ||
154 | disabled | ||
155 | class="width100" | ||
156 | > | ||
157 | </el-input> | ||
158 | </el-form-item> | ||
159 | </el-col> | ||
160 | </el-row> | ||
161 | <el-row> | ||
162 | <el-col :span="12"> | ||
163 | <el-form-item label="类型 :"> | ||
164 | <el-select | ||
165 | v-model="checkResult.typeId" | ||
166 | class="width100" | ||
167 | placeholder="" | ||
168 | disabled | ||
169 | > | ||
170 | <el-option | ||
171 | v-for="item in typeList" | ||
172 | :key="item.code" | ||
173 | :label="item.name" | ||
174 | :value="item.code" | ||
175 | > | ||
176 | </el-option> | ||
177 | </el-select> | ||
178 | </el-form-item> | ||
179 | </el-col> | ||
180 | <el-col :span="12"> | ||
181 | <el-form-item label="监管机构名称 :"> | ||
182 | <el-input | ||
183 | v-model="checkResult.organName" | ||
184 | disabled | ||
185 | class="width100" | ||
186 | > | ||
187 | </el-input> | ||
188 | </el-form-item> | ||
189 | </el-col> | ||
190 | </el-row> | ||
191 | <el-row> | ||
192 | <el-col :span="24"> | ||
193 | <el-form-item label="经营范围 :"> | ||
194 | <el-input | ||
195 | type="textarea" | ||
196 | class="width100" | ||
197 | disabled | ||
198 | v-model="checkResult.scope" | ||
199 | ></el-input> | ||
200 | </el-form-item> | ||
201 | </el-col> | ||
202 | </el-row> | ||
203 | <el-row> | ||
204 | <el-col :span="24"> | ||
205 | <el-form-item label="机构地址 :"> | ||
206 | <el-input | ||
207 | type="textarea" | ||
208 | class="width100" | ||
209 | disabled | ||
210 | v-model="checkResult.address" | ||
211 | ></el-input> | ||
212 | </el-form-item> | ||
213 | </el-col> | ||
214 | </el-row> | ||
215 | </el-form> | ||
216 | </div> | ||
217 | </div> | ||
218 | </div> | ||
219 | </template> | ||
220 | |||
221 | <script> | ||
222 | import { jrxkz } from "@/api/v1.js"; | ||
223 | export default { | ||
224 | name: "BdcdjWebSfhc", | ||
225 | data() { | ||
226 | return { | ||
227 | queryForm: {}, | ||
228 | checkResult: {}, | ||
229 | typeList: [ | ||
230 | { name: "银行", code: "01" }, | ||
231 | { name: "保险", code: "02" }, | ||
232 | ], | ||
233 | }; | ||
234 | }, | ||
235 | mounted() {}, | ||
236 | methods: { | ||
237 | handleSearch() { | ||
238 | jrxkz(this.queryForm).then((res) => { | ||
239 | if (res.status == "OK") { | ||
240 | this.checkResult = res.data; | ||
241 | } | ||
242 | }); | ||
243 | }, | ||
244 | }, | ||
245 | }; | ||
246 | </script> | ||
247 | |||
248 | <style lang="scss" scoped></style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 15:32:14 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\qyjbxxcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="124px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="10"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="10"> | ||
34 | <el-form-item label="主体名称"> | ||
35 | <el-input | ||
36 | placeholder="主体名称" | ||
37 | v-model="queryForm.entname" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="4" class="btnColRight"> | ||
45 | <el-button | ||
46 | type="primary" | ||
47 | native-type="submit" | ||
48 | @click="handleSearch" | ||
49 | >查询</el-button | ||
50 | > | ||
51 | </el-col> | ||
52 | </el-row> | ||
53 | <el-row> | ||
54 | <el-col :span="10"> | ||
55 | <el-form-item label="统一社会信用代码"> | ||
56 | <el-input | ||
57 | placeholder="统一社会信用代码" | ||
58 | v-model="queryForm.uniscid" | ||
59 | clearable | ||
60 | class="width100" | ||
61 | > | ||
62 | </el-input> | ||
63 | </el-form-item> | ||
64 | </el-col> | ||
65 | </el-row> | ||
66 | </el-form> | ||
67 | </div> | ||
68 | <div class="from-clues-content"> | ||
69 | <el-form | ||
70 | :model="checkResult" | ||
71 | ref="checkResult" | ||
72 | @submit.native.prevent | ||
73 | label-width="140px" | ||
74 | > | ||
75 | <el-row> | ||
76 | <el-col :span="12"> | ||
77 | <el-form-item label="统一社会信用代码 :"> | ||
78 | <el-input v-model="checkResult.uniscid" disabled class="width100"> | ||
79 | </el-input> | ||
80 | </el-form-item> | ||
81 | </el-col> | ||
82 | <el-col :span="12"> | ||
83 | <el-form-item label="企业类型(中文) :"> | ||
84 | <el-input | ||
85 | v-model="checkResult.enttypeCn" | ||
86 | disabled | ||
87 | class="width100" | ||
88 | > | ||
89 | </el-input> | ||
90 | </el-form-item> | ||
91 | </el-col> | ||
92 | </el-row> | ||
93 | <el-row> | ||
94 | <el-col :span="12"> | ||
95 | <el-form-item label="主体名称 :"> | ||
96 | <el-input | ||
97 | v-model="checkResult.entname" | ||
98 | disabled | ||
99 | class="width100" | ||
100 | > | ||
101 | </el-input> | ||
102 | </el-form-item> | ||
103 | </el-col> | ||
104 | <el-col :span="12"> | ||
105 | <el-form-item label="法定代表人 :"> | ||
106 | <el-input | ||
107 | v-model="checkResult.name" | ||
108 | disabled | ||
109 | class="width100" | ||
110 | > | ||
111 | </el-input> | ||
112 | </el-form-item> | ||
113 | </el-col> | ||
114 | </el-row> | ||
115 | <el-row> | ||
116 | <el-col :span="12"> | ||
117 | <el-form-item label="成立日期 :"> | ||
118 | <el-input | ||
119 | v-model="checkResult.estdate" | ||
120 | disabled | ||
121 | class="width100" | ||
122 | > | ||
123 | </el-input> | ||
124 | </el-form-item> | ||
125 | </el-col> | ||
126 | <el-col :span="12"> | ||
127 | <el-form-item label="核准日期 :"> | ||
128 | <el-input | ||
129 | v-model="checkResult.apprdate" | ||
130 | disabled | ||
131 | class="width100" | ||
132 | > | ||
133 | </el-input> | ||
134 | </el-form-item> | ||
135 | </el-col> | ||
136 | </el-row> | ||
137 | <el-row> | ||
138 | <el-col :span="12"> | ||
139 | <el-form-item label="经营期限自 :"> | ||
140 | <el-input v-model="checkResult.opfrom" disabled class="width100"> | ||
141 | </el-input> | ||
142 | </el-form-item> | ||
143 | </el-col> | ||
144 | <el-col :span="12"> | ||
145 | <el-form-item label="经营期限至 :"> | ||
146 | <el-input | ||
147 | v-model="checkResult.opto" | ||
148 | disabled | ||
149 | class="width100" | ||
150 | > | ||
151 | </el-input> | ||
152 | </el-form-item> | ||
153 | </el-col> | ||
154 | </el-row> | ||
155 | <el-row> | ||
156 | <el-col :span="12"> | ||
157 | <el-form-item label="注册资本 :"> | ||
158 | <el-input v-model="checkResult.regcap" disabled class="width100"> | ||
159 | </el-input> | ||
160 | </el-form-item> | ||
161 | </el-col> | ||
162 | <el-col :span="12"> | ||
163 | <el-form-item label="注册资本币种 :"> | ||
164 | <el-input | ||
165 | v-model="checkResult.regcapcurCn" | ||
166 | disabled | ||
167 | class="width100" | ||
168 | > | ||
169 | </el-input> | ||
170 | </el-form-item> | ||
171 | </el-col> | ||
172 | </el-row> | ||
173 | <el-row> | ||
174 | <el-col :span="12"> | ||
175 | <el-form-item label="注册号 :"> | ||
176 | <el-input v-model="checkResult.regno" disabled class="width100"> | ||
177 | </el-input> | ||
178 | </el-form-item> | ||
179 | </el-col> | ||
180 | <el-col :span="12"> | ||
181 | <el-form-item label="登记机关(中文) :"> | ||
182 | <el-input | ||
183 | v-model="checkResult.regorgCn" | ||
184 | disabled | ||
185 | class="width100" | ||
186 | > | ||
187 | </el-input> | ||
188 | </el-form-item> | ||
189 | </el-col> | ||
190 | </el-row> | ||
191 | <el-row> | ||
192 | <el-col :span="12"> | ||
193 | <el-form-item label="登记状态(中文) :"> | ||
194 | <el-input | ||
195 | v-model="checkResult.regstateCn" | ||
196 | disabled | ||
197 | class="width100" | ||
198 | > | ||
199 | </el-input> | ||
200 | </el-form-item> | ||
201 | </el-col> | ||
202 | </el-row> | ||
203 | <el-row> | ||
204 | <el-col :span="24"> | ||
205 | <el-form-item label="经营范围 :"> | ||
206 | <el-input | ||
207 | type="textarea" | ||
208 | class="width100" | ||
209 | disabled | ||
210 | v-model="checkResult.opscope" | ||
211 | ></el-input> | ||
212 | </el-form-item> | ||
213 | </el-col> | ||
214 | </el-row> | ||
215 | <el-row> | ||
216 | <el-col :span="24"> | ||
217 | <el-form-item label="住所 :"> | ||
218 | <el-input | ||
219 | type="textarea" | ||
220 | class="width100" | ||
221 | disabled | ||
222 | v-model="checkResult.dom" | ||
223 | ></el-input> | ||
224 | </el-form-item> | ||
225 | </el-col> | ||
226 | </el-row> | ||
227 | </el-form> | ||
228 | </div> | ||
229 | </div> | ||
230 | </div> | ||
231 | </template> | ||
232 | |||
233 | <script> | ||
234 | import { qyjbxx } from "@/api/v1.js"; | ||
235 | export default { | ||
236 | name: "BdcdjWebSfhc", | ||
237 | data() { | ||
238 | return { | ||
239 | queryForm: {}, | ||
240 | checkResult: {}, | ||
241 | }; | ||
242 | }, | ||
243 | mounted() {}, | ||
244 | methods: { | ||
245 | handleSearch() { | ||
246 | qyjbxx(this.queryForm).then((res) => { | ||
247 | if (res.status == "OK") { | ||
248 | this.checkResult = res.body; | ||
249 | } | ||
250 | }); | ||
251 | }, | ||
252 | }, | ||
253 | }; | ||
254 | </script> | ||
255 | |||
256 | <style lang="scss" scoped></style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 16:25:19 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\qyjbxxyz.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="124px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="10"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="10"> | ||
34 | <el-form-item label="主体名称"> | ||
35 | <el-input | ||
36 | placeholder="主体名称" | ||
37 | v-model="queryForm.entname" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="4" class="btnColRight"> | ||
45 | <el-button | ||
46 | type="primary" | ||
47 | native-type="submit" | ||
48 | @click="handleSearch" | ||
49 | >查询</el-button | ||
50 | > | ||
51 | </el-col> | ||
52 | </el-row> | ||
53 | <el-row> | ||
54 | <el-col :span="10"> | ||
55 | <el-form-item label="统一社会信用代码"> | ||
56 | <el-input | ||
57 | placeholder="统一社会信用代码" | ||
58 | v-model="queryForm.uniscid" | ||
59 | clearable | ||
60 | class="width100" | ||
61 | > | ||
62 | </el-input> | ||
63 | </el-form-item> | ||
64 | </el-col> | ||
65 | <el-col :span="10"> | ||
66 | <el-form-item label="注册号"> | ||
67 | <el-input | ||
68 | placeholder="注册号" | ||
69 | v-model="queryForm.uniscid" | ||
70 | clearable | ||
71 | class="width100" | ||
72 | > | ||
73 | </el-input> | ||
74 | </el-form-item> | ||
75 | </el-col> | ||
76 | </el-row> | ||
77 | </el-form> | ||
78 | </div> | ||
79 | <div class="from-clues-content"> | ||
80 | <p>验证结果:<span></span></p> | ||
81 | </div> | ||
82 | </div> | ||
83 | </div> | ||
84 | </template> | ||
85 | |||
86 | <script> | ||
87 | import { qyjbxxyz } from "@/api/v1.js"; | ||
88 | export default { | ||
89 | name: "BdcdjWebSfhc", | ||
90 | data() { | ||
91 | return { | ||
92 | queryForm: {}, | ||
93 | checkResult: {}, | ||
94 | }; | ||
95 | }, | ||
96 | mounted() {}, | ||
97 | methods: { | ||
98 | handleSearch() { | ||
99 | qyjbxxyz(this.queryForm).then((res) => { | ||
100 | if (res.status == "OK") { | ||
101 | this.checkResult = res.body; | ||
102 | } | ||
103 | }); | ||
104 | }, | ||
105 | }, | ||
106 | }; | ||
107 | </script> | ||
108 | |||
109 | <style lang="scss" scoped> | ||
110 | .from-clues-content{ | ||
111 | margin-left: 40px; | ||
112 | p{ | ||
113 | margin-top: 20px; | ||
114 | color: grey; | ||
115 | } | ||
116 | } | ||
117 | </style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-06 09:41:07 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\sfhc.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"></div> | ||
13 | </template> | ||
14 | |||
15 | <script> | ||
16 | import { sfhc } from "@/api/v1.js"; | ||
17 | export default { | ||
18 | name: "BdcdjWebSfhc", | ||
19 | prop: { | ||
20 | condition: { | ||
21 | type: Object, | ||
22 | default: () => { | ||
23 | return {}; | ||
24 | }, | ||
25 | }, | ||
26 | }, | ||
27 | data() { | ||
28 | return { | ||
29 | checkResult: {}, | ||
30 | }; | ||
31 | }, | ||
32 | |||
33 | mounted() { | ||
34 | sfhc(this.condition).then((res) => { | ||
35 | |||
36 | }); | ||
37 | }, | ||
38 | |||
39 | methods: {}, | ||
40 | }; | ||
41 | </script> | ||
42 | |||
43 | <style lang="scss" scoped></style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:00:34 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-07 09:03:14 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\zbbjbxxcx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="124px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="10"> | ||
23 | <el-form-item label="业务号"> | ||
24 | <el-input | ||
25 | placeholder="业务号" | ||
26 | v-model="queryForm.businessNumber" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="10"> | ||
34 | <el-form-item label="社会组织名称"> | ||
35 | <el-input | ||
36 | placeholder="社会组织名称" | ||
37 | v-model="queryForm.name" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="4" class="btnColRight"> | ||
45 | <el-button | ||
46 | type="primary" | ||
47 | native-type="submit" | ||
48 | @click="handleSearch" | ||
49 | >查询</el-button | ||
50 | > | ||
51 | </el-col> | ||
52 | </el-row> | ||
53 | <el-row> | ||
54 | <el-col :span="10"> | ||
55 | <el-form-item label="统一社会信用代码"> | ||
56 | <el-input | ||
57 | placeholder="统一社会信用代码" | ||
58 | v-model="queryForm.tyshxydm" | ||
59 | clearable | ||
60 | class="width100" | ||
61 | > | ||
62 | </el-input> | ||
63 | </el-form-item> | ||
64 | </el-col> | ||
65 | </el-row> | ||
66 | </el-form> | ||
67 | </div> | ||
68 | <div class="from-clues-content"> | ||
69 | <el-form | ||
70 | :model="checkResult" | ||
71 | ref="checkResult" | ||
72 | @submit.native.prevent | ||
73 | label-width="140px" | ||
74 | > | ||
75 | <el-row> | ||
76 | <el-col :span="12"> | ||
77 | <el-form-item label="统一社会信用代码 :"> | ||
78 | <el-input | ||
79 | v-model="checkResult.tyshxydm" | ||
80 | disabled | ||
81 | class="width100" | ||
82 | > | ||
83 | </el-input> | ||
84 | </el-form-item> | ||
85 | </el-col> | ||
86 | <el-col :span="12"> | ||
87 | <el-form-item label="第一名称 :"> | ||
88 | <el-input | ||
89 | v-model="checkResult.onemc" | ||
90 | disabled | ||
91 | class="width100" | ||
92 | > | ||
93 | </el-input> | ||
94 | </el-form-item> | ||
95 | </el-col> | ||
96 | </el-row> | ||
97 | <el-row> | ||
98 | <el-col :span="12"> | ||
99 | <el-form-item label="第二名称 :"> | ||
100 | <el-input | ||
101 | v-model="checkResult.twomc" | ||
102 | disabled | ||
103 | class="width100" | ||
104 | > | ||
105 | </el-input> | ||
106 | </el-form-item> | ||
107 | </el-col> | ||
108 | <el-col :span="12"> | ||
109 | <el-form-item label="第三名称 :"> | ||
110 | <el-input v-model="checkResult.threemc" disabled class="width100"> | ||
111 | </el-input> | ||
112 | </el-form-item> | ||
113 | </el-col> | ||
114 | </el-row> | ||
115 | <el-row> | ||
116 | <el-col :span="12"> | ||
117 | <el-form-item label="其他名称 :"> | ||
118 | <el-input | ||
119 | v-model="checkResult.qtmc" | ||
120 | disabled | ||
121 | class="width100" | ||
122 | > | ||
123 | </el-input> | ||
124 | </el-form-item> | ||
125 | </el-col> | ||
126 | <el-col :span="12"> | ||
127 | <el-form-item label="负责人 :"> | ||
128 | <el-input | ||
129 | v-model="checkResult.fzr" | ||
130 | disabled | ||
131 | class="width100" | ||
132 | > | ||
133 | </el-input> | ||
134 | </el-form-item> | ||
135 | </el-col> | ||
136 | </el-row> | ||
137 | <el-row> | ||
138 | <el-col :span="12"> | ||
139 | <el-form-item label="数据日期 :"> | ||
140 | <el-input | ||
141 | v-model="checkResult.sjrq" | ||
142 | disabled | ||
143 | class="width100" | ||
144 | > | ||
145 | </el-input> | ||
146 | </el-form-item> | ||
147 | </el-col> | ||
148 | <el-col :span="12"> | ||
149 | <el-form-item label="颁发日期 :"> | ||
150 | <el-input v-model="checkResult.bfrq" disabled class="width100"> | ||
151 | </el-input> | ||
152 | </el-form-item> | ||
153 | </el-col> | ||
154 | </el-row> | ||
155 | <el-row> | ||
156 | <el-col :span="12"> | ||
157 | <el-form-item label="机构地址 :"> | ||
158 | <el-input | ||
159 | v-model="checkResult.jgdz" | ||
160 | disabled | ||
161 | class="width100" | ||
162 | > | ||
163 | </el-input> | ||
164 | </el-form-item> | ||
165 | </el-col> | ||
166 | <el-col :span="12"> | ||
167 | <el-form-item label="机构性质 :"> | ||
168 | <el-input | ||
169 | v-model="checkResult.jgxz" | ||
170 | disabled | ||
171 | class="width100" | ||
172 | > | ||
173 | </el-input> | ||
174 | </el-form-item> | ||
175 | </el-col> | ||
176 | </el-row> | ||
177 | <el-row> | ||
178 | <el-col :span="12"> | ||
179 | <el-form-item label="赋码机关 :"> | ||
180 | <el-input v-model="checkResult.fmjg" disabled class="width100"> | ||
181 | </el-input> | ||
182 | </el-form-item> | ||
183 | </el-col> | ||
184 | <el-col :span="12"> | ||
185 | <el-form-item label="权力标识 :"> | ||
186 | <el-input | ||
187 | v-model="checkResult.qlbs" | ||
188 | disabled | ||
189 | class="width100" | ||
190 | > | ||
191 | </el-input> | ||
192 | </el-form-item> | ||
193 | </el-col> | ||
194 | </el-row> | ||
195 | <el-row> | ||
196 | <el-col :span="12"> | ||
197 | <el-form-item label="状态 :"> | ||
198 | <el-input | ||
199 | v-model="checkResult.zt" | ||
200 | disabled | ||
201 | class="width100" | ||
202 | > | ||
203 | </el-input> | ||
204 | </el-form-item> | ||
205 | </el-col> | ||
206 | </el-row> | ||
207 | </el-form> | ||
208 | </div> | ||
209 | </div> | ||
210 | </div> | ||
211 | </template> | ||
212 | |||
213 | <script> | ||
214 | import { xydm } from "@/api/v1.js"; | ||
215 | export default { | ||
216 | name: "BdcdjWebSfhc", | ||
217 | data() { | ||
218 | return { | ||
219 | queryForm: {}, | ||
220 | checkResult: {}, | ||
221 | }; | ||
222 | }, | ||
223 | mounted() {}, | ||
224 | methods: { | ||
225 | handleSearch() { | ||
226 | xydm(this.queryForm).then((res) => { | ||
227 | if (res.status == "OK") { | ||
228 | this.checkResult = res.data.rows[0]; | ||
229 | } | ||
230 | }); | ||
231 | }, | ||
232 | }, | ||
233 | }; | ||
234 | </script> | ||
235 | |||
236 | <style lang="scss" scoped></style> |
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-06 09:04:36 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-07 14:12:23 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\zgfbm.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | <template> | ||
12 | <div class="check-result"> | ||
13 | <p>获取查询请求单号</p> | ||
14 | <div class="from-clues"> | ||
15 | <div class="from-clues-header"> | ||
16 | <el-form | ||
17 | :model="queryForm" | ||
18 | ref="queryForm" | ||
19 | @submit.native.prevent | ||
20 | label-width="124px" | ||
21 | > | ||
22 | <el-row> | ||
23 | <el-col :span="10"> | ||
24 | <el-form-item label="案件编号"> | ||
25 | <el-input | ||
26 | placeholder="案件编号" | ||
27 | v-model="queryForm.ajbh" | ||
28 | clearable | ||
29 | class="width100" | ||
30 | > | ||
31 | </el-input> | ||
32 | </el-form-item> | ||
33 | </el-col> | ||
34 | <el-col :span="10"> | ||
35 | <el-form-item label="查询人姓名"> | ||
36 | <el-input | ||
37 | placeholder="查询人姓名" | ||
38 | v-model="queryForm.cxr" | ||
39 | clearable | ||
40 | class="width100" | ||
41 | > | ||
42 | </el-input> | ||
43 | </el-form-item> | ||
44 | </el-col> | ||
45 | </el-row> | ||
46 | <el-row> | ||
47 | <el-col :span="10"> | ||
48 | <el-form-item label="业务号"> | ||
49 | <el-input | ||
50 | placeholder="业务号" | ||
51 | v-model="queryForm.businessNumber" | ||
52 | clearable | ||
53 | class="width100" | ||
54 | > | ||
55 | </el-input> | ||
56 | </el-form-item> | ||
57 | </el-col> | ||
58 | <el-col :span="10"> | ||
59 | <el-form-item label="查询人编号/证号"> | ||
60 | <el-input | ||
61 | placeholder="查询人编号/证号" | ||
62 | v-model="queryForm.cxrbh" | ||
63 | clearable | ||
64 | class="width100" | ||
65 | > | ||
66 | </el-input> | ||
67 | </el-form-item> | ||
68 | </el-col> | ||
69 | <el-col :span="4" class="btnColRight"> | ||
70 | <el-button | ||
71 | type="primary" | ||
72 | native-type="submit" | ||
73 | @click="handleSearch" | ||
74 | >查询</el-button | ||
75 | > | ||
76 | </el-col> | ||
77 | </el-row> | ||
78 | </el-form> | ||
79 | </div> | ||
80 | </div> | ||
81 | |||
82 | <p>第二次查询</p> | ||
83 | <el-form | ||
84 | :model="queryForm" | ||
85 | ref="queryForm" | ||
86 | @submit.native.prevent | ||
87 | label-width="124px" | ||
88 | > | ||
89 | <el-row> | ||
90 | <el-col :span="10"> | ||
91 | <el-form-item label="查询请求单号"> | ||
92 | <el-input | ||
93 | placeholder="查询请求单号" | ||
94 | v-model="queryForm.cxqqdh" | ||
95 | disabled | ||
96 | class="width100" | ||
97 | > | ||
98 | </el-input> | ||
99 | </el-form-item> | ||
100 | </el-col> | ||
101 | <el-col :span="10"> | ||
102 | <el-form-item label="业务号"> | ||
103 | <el-input | ||
104 | placeholder="业务号" | ||
105 | v-model="queryForm.businessNumber" | ||
106 | clearable | ||
107 | class="width100" | ||
108 | > | ||
109 | </el-input> | ||
110 | </el-form-item> | ||
111 | </el-col> | ||
112 | <el-col :span="4" class="btnColRight"> | ||
113 | <el-button type="primary" native-type="submit" @click="searchSecond" | ||
114 | >查询</el-button | ||
115 | > | ||
116 | </el-col> | ||
117 | </el-row> | ||
118 | </el-form> | ||
119 | <p>返回内容</p> | ||
120 | <el-form | ||
121 | :model="queryForm" | ||
122 | ref="queryForm" | ||
123 | @submit.native.prevent | ||
124 | label-width="124px" | ||
125 | > | ||
126 | <el-row> | ||
127 | <el-col :span="10"> | ||
128 | <el-form-item label="实体码 :"> | ||
129 | <el-input | ||
130 | placeholder="实体码" | ||
131 | v-model="queryForm.c_stm" | ||
132 | disabled | ||
133 | class="width100" | ||
134 | > | ||
135 | </el-input> | ||
136 | </el-form-item> | ||
137 | </el-col> | ||
138 | <el-col :span="10"> | ||
139 | <el-form-item label="文书内容 :"> | ||
140 | <el-input | ||
141 | placeholder="文书内容" | ||
142 | v-model="queryForm.c_nr" | ||
143 | clearable | ||
144 | class="width100" | ||
145 | > | ||
146 | </el-input> | ||
147 | </el-form-item> | ||
148 | </el-col> | ||
149 | </el-row> | ||
150 | <el-row> | ||
151 | <el-col :span="10"> | ||
152 | <el-form-item label="案号 :"> | ||
153 | <el-input | ||
154 | placeholder="案号" | ||
155 | v-model="queryForm.c_ah" | ||
156 | disabled | ||
157 | class="width100" | ||
158 | > | ||
159 | </el-input> | ||
160 | </el-form-item> | ||
161 | </el-col> | ||
162 | </el-row> | ||
163 | </el-form> | ||
164 | </div> | ||
165 | </template> | ||
166 | |||
167 | <script> | ||
168 | import { pjws,pjwsDetail } from "@/api/v1.js"; | ||
169 | export default { | ||
170 | name: "BdcdjWebSfhc", | ||
171 | |||
172 | data() { | ||
173 | return { | ||
174 | queryForm: {}, | ||
175 | checkResult: {}, | ||
176 | }; | ||
177 | }, | ||
178 | |||
179 | mounted() {}, | ||
180 | |||
181 | methods: { | ||
182 | handleSearch() { | ||
183 | pjws(this.queryForm).then((res) => { | ||
184 | if (res.status == "OK") { | ||
185 | this.queryForm.cxqqdh = res.cxqqdh; | ||
186 | } | ||
187 | }); | ||
188 | }, | ||
189 | searchSecond() { | ||
190 | pjwsDetail(this.queryForm).then((res) => { | ||
191 | if (res.status == "OK") { | ||
192 | this.checkResult = res.body; | ||
193 | } | ||
194 | }); | ||
195 | }, | ||
196 | }, | ||
197 | }; | ||
198 | </script> | ||
199 | |||
200 | <style lang="scss" scoped> | ||
201 | .check-result { | ||
202 | > p { | ||
203 | color: #050505; | ||
204 | font-size: 16px; | ||
205 | margin-bottom: 20px; | ||
206 | &:before { | ||
207 | content: ""; | ||
208 | display: inline-block; | ||
209 | width: 3px; | ||
210 | background-color: #659bfe; | ||
211 | height: 16px; | ||
212 | position: relative; | ||
213 | left: -4px; | ||
214 | top: 3px; | ||
215 | } | ||
216 | } | ||
217 | } | ||
218 | </style> |
src/views/sjgx/gbmhlgxsjgx/gbmhlgxsjgx.vue
0 → 100644
1 | <!-- | ||
2 | * @Author: yangwei | ||
3 | * @Date: 2023-09-01 10:39:03 | ||
4 | * @LastEditors: yangwei | ||
5 | * @LastEditTime: 2023-09-07 09:00:17 | ||
6 | * @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\gbmhlgxsjgx.vue | ||
7 | * @Description: | ||
8 | * | ||
9 | * Copyright (c) 2023 by yangwei, All Rights Reserved. | ||
10 | --> | ||
11 | |||
12 | <template> | ||
13 | <div class="from-clues"> | ||
14 | <div class="from-clues-header"> | ||
15 | <el-form | ||
16 | :model="queryForm" | ||
17 | ref="queryForm" | ||
18 | @submit.native.prevent | ||
19 | label-width="100px" | ||
20 | > | ||
21 | <el-row> | ||
22 | <el-col :span="5"> | ||
23 | <el-form-item label="身份证号"> | ||
24 | <el-input | ||
25 | placeholder="身份证号" | ||
26 | v-model="queryForm.gmsfhm" | ||
27 | clearable | ||
28 | class="width100" | ||
29 | > | ||
30 | </el-input> | ||
31 | </el-form-item> | ||
32 | </el-col> | ||
33 | <el-col :span="5"> | ||
34 | <el-form-item label="姓名"> | ||
35 | <el-input | ||
36 | placeholder="姓名" | ||
37 | v-model="queryForm.xm" | ||
38 | clearable | ||
39 | class="width100" | ||
40 | > | ||
41 | </el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | <el-col :span="5"> | ||
45 | <el-form-item label="证件种类"> | ||
46 | <el-select | ||
47 | v-model="queryForm.qllx" | ||
48 | class="width100" | ||
49 | filterable | ||
50 | clearable | ||
51 | placeholder="证件种类" | ||
52 | > | ||
53 | <el-option | ||
54 | v-for="item in dictData['A30']" | ||
55 | :key="item.dcode" | ||
56 | :label="item.dname" | ||
57 | :value="item.dcode" | ||
58 | > | ||
59 | </el-option> | ||
60 | </el-select> | ||
61 | </el-form-item> | ||
62 | </el-col> | ||
63 | <el-col :span="5"> | ||
64 | <el-form-item label="不动产单元号"> | ||
65 | <el-input | ||
66 | placeholder="不动产单元号" | ||
67 | v-model="queryForm.bdcdyh" | ||
68 | clearable | ||
69 | class="width100" | ||
70 | > | ||
71 | </el-input> | ||
72 | </el-form-item> | ||
73 | </el-col> | ||
74 | </el-row> | ||
75 | </el-form> | ||
76 | </div> | ||
77 | <div class="from-clues-content"> | ||
78 | <div | ||
79 | v-for="item in searchType" | ||
80 | :key="item.name" | ||
81 | @click="openDialog(item)" | ||
82 | class="search-type" | ||
83 | > | ||
84 | <div | ||
85 | :style="{ | ||
86 | backgroundColor: item.bgColor, | ||
87 | 'box-shadow': '0px 5px 9px -1px ' + item.bgColor, | ||
88 | }" | ||
89 | > | ||
90 | <i class="el-icon-s-claim"></i> | ||
91 | </div> | ||
92 | <p>{{ item.name }}</p> | ||
93 | </div> | ||
94 | </div> | ||
95 | <el-dialog | ||
96 | :close-on-click-modal="false" | ||
97 | :title="dialogTitle" | ||
98 | :visible.sync="dialogVisible" | ||
99 | custom-class="insetDialog" | ||
100 | append-to-body | ||
101 | width="50%" | ||
102 | > | ||
103 | <component :is="dialogComp" v-if="dialogVisible" :condition="queryForm" /> | ||
104 | <div class="text-center pt-10 pb-20"> | ||
105 | <el-button @click="dialogVisible = false">关 闭</el-button> | ||
106 | </div> | ||
107 | </el-dialog> | ||
108 | </div> | ||
109 | </template> | ||
110 | <script> | ||
111 | import { mapGetters } from "vuex"; | ||
112 | export default { | ||
113 | name: "BdcdjWebGbmhlgxsjgx", | ||
114 | data() { | ||
115 | return { | ||
116 | queryForm: {}, | ||
117 | searchType: [ | ||
118 | { name: "身份核查", bgColor: "#486DCA", comp: "sfhc" }, | ||
119 | { name: "婚姻登记信息核验", bgColor: "#AA47AF", comp: "hydjxxhy" }, | ||
120 | { name: "金融许可查询", bgColor: "#E1943F", comp: "jrxkcx" }, | ||
121 | { name: "企业基本信息查询", bgColor: "#D35450", comp: "qyjbxxcx" }, | ||
122 | { name: "企业基本信息验证", bgColor: "#486DCA", comp: "qyjbxxyz" }, | ||
123 | { name: "地域信息查询", bgColor: "#AA47AF", comp: "dyxxcx" }, | ||
124 | { | ||
125 | name: "个体工商户基本信息查询", | ||
126 | bgColor: "#E1943F", | ||
127 | comp: "gtgshjbxxcx", | ||
128 | }, | ||
129 | { | ||
130 | name: "个体工商户基本信息验证", | ||
131 | bgColor: "#486DCA", | ||
132 | comp: "gtgshjbxxyz", | ||
133 | }, | ||
134 | { name: "中编办机构信息查询", bgColor: "#D35450", comp: "zbbjbxxcx" }, | ||
135 | { name: "机构信息查询", bgColor: "#E1943F", comp: "jgxxcx" }, | ||
136 | { name: "不动产登记信息查询", bgColor: "#486DCA", comp: "bdcdjxxcx" }, | ||
137 | { name: "电子营业执照查询", bgColor: "#AA47AF", comp: "dzyyzzcx" }, | ||
138 | { name: "公证书信息查询", bgColor: "#E1943F", comp: "gzsxxcx" }, | ||
139 | { name: "最高法部门", bgColor: "#D35450", comp: "zgfbm" }, | ||
140 | ], | ||
141 | dialogVisible: false, | ||
142 | dialogTitle: "", | ||
143 | dialogComp: null, | ||
144 | }; | ||
145 | }, | ||
146 | |||
147 | mounted() {}, | ||
148 | |||
149 | methods: { | ||
150 | /** | ||
151 | * @description: openDialog 打开弹框窗口 | ||
152 | * @param {*} item | ||
153 | * @author: renchao | ||
154 | */ | ||
155 | openDialog(item) { | ||
156 | this.dialogTitle = item.name; | ||
157 | this.dialogVisible = true; | ||
158 | this.dialogComp = (r) => | ||
159 | require.ensure([], () => r(require(`./components/${item.comp}.vue`))); | ||
160 | }, | ||
161 | }, | ||
162 | computed: { | ||
163 | ...mapGetters(["dictData"]), | ||
164 | }, | ||
165 | }; | ||
166 | </script> | ||
167 | <style scoped lang="scss"> | ||
168 | @import "~@/styles/public.scss"; | ||
169 | .from-clues-content { | ||
170 | height: calc(100% - 70px); | ||
171 | } | ||
172 | .search-type { | ||
173 | float: left; | ||
174 | width: 12.5%; | ||
175 | text-align: center; | ||
176 | height: 160px; | ||
177 | box-sizing: border-box; | ||
178 | padding: 32px 0; | ||
179 | > div { | ||
180 | width: 60px; | ||
181 | height: 60px; | ||
182 | border-radius: 50%; | ||
183 | margin: 0 auto; | ||
184 | cursor: pointer; | ||
185 | i { | ||
186 | text-align: center; | ||
187 | line-height: 60px; | ||
188 | font-size: 26px; | ||
189 | color: #fff; | ||
190 | } | ||
191 | } | ||
192 | p { | ||
193 | margin-top: 20px; | ||
194 | cursor: pointer; | ||
195 | font-size: 16px; | ||
196 | } | ||
197 | } | ||
198 | /deep/.el-dialog__header { | ||
199 | text-align: center; | ||
200 | } | ||
201 | /deep/ .check-result { | ||
202 | min-height: 200px; | ||
203 | box-sizing: border-box; | ||
204 | padding: 20px 0 0; | ||
205 | } | ||
206 | .pb-20 { | ||
207 | padding-bottom: 20px; | ||
208 | /deep/ .el-button { | ||
209 | cursor: pointer; | ||
210 | } | ||
211 | } | ||
212 | </style> |
-
Please register or sign in to post a comment