hydjxxhy.vue
2.28 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
<!--
* @Author: yangwei
* @Date: 2023-09-06 09:00:34
* @LastEditors: yangwei
* @LastEditTime: 2023-09-06 10:03:23
* @FilePath: \bdcdj-web\src\views\sjgx\gbmhlgxsjgx\components\hydjxxhy.vue
* @Description:
*
* Copyright (c) 2023 by yangwei, All Rights Reserved.
-->
<template>
<div class="check-result">
<el-table :data="checkResult" border style="width: 100%" :header-cell-style="{ 'text-align': 'center'}" :cell-style="{ 'text-align': 'center' }">
<el-table-column prop="op_type" label="婚姻登记业务类型" width="150">
</el-table-column>
<el-table-column prop="dept_code" label="登记机关代码" width="150">
</el-table-column>
<el-table-column prop="dept_name" label="登记机关名称" width="150">
</el-table-column>
<el-table-column prop="op_date" label="登记日期" width="120">
</el-table-column>
<el-table-column prop="cert_no" label="结婚证/离婚证字号" width="160">
</el-table-column>
<el-table-column prop="name_woman" label="女方姓名" width="120">
</el-table-column>
<el-table-column prop="cert_num_woman" label="女方身份证件号" width="140">
</el-table-column>
<el-table-column prop="birth_woman" label="女方出生日期" width="120">
</el-table-column>
<el-table-column prop="nation_woman" label="女方国籍" width="80">
</el-table-column>
<el-table-column prop="name_man" label="男方姓名" width="120">
</el-table-column>
<el-table-column prop="cert_num_man" label="男方身份证件号" width="140">
</el-table-column>
<el-table-column prop="birth_man" label="男方出生日期" width="120">
</el-table-column>
<el-table-column prop="nation_man" label="男方国籍" width="80">
</el-table-column>
</el-table>
</div>
</template>
<script>
import { hy } from "@/api/v1.js";
export default {
name: "BdcdjWebSfhc",
prop: {
condition: {
type: Object,
default: () => {
return {};
},
},
},
data() {
return {
checkResult: [],
};
},
mounted() {
hy(this.condition).then((res) => {
if (res.status == 'OK') {
this.checkResult = res.data.rows
}
});
},
methods: {},
};
</script>
<style lang="scss" scoped></style>