szxx.vue
3.77 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
<template>
<div class="szxx">
<el-card class="box-card" v-for="(item,index) in tableData" :key="index">
<div slot="header" class="szxx_header">
<span class="header_type">{{item.bdcqzlx == 1 ? '不动产权证书' : '不动产登记证明'}}</span>
<div class="header_text">{{item.bdcqzh}}</div>
</div>
<div class="szxx_body card_padding">
<div class="text color_iray">
<span>{{item.qllxmc}}</span>
</div>
<div class="text color_red">
<span>{{item.qlr}}</span>
</div>
<div class="text color_iray">
<span>{{item.gyfs == 1 ? '单独所有' : item.gyfs == 2 ? '共同共有' : '按份所有'}}</span>
</div>
<div class="text color_red">
<span>{{item.bdcdyh}}</span>
</div>
<div class="text color_iray">
<span>{{item.yt}}</span>
</div>
<div class="text color_red">
<span>{{item.mj}}</span>
</div>
<div class="text color_iray">
<span>{{item.syqx}}</span>
</div>
<div v-if="item.ysxlh">
<div class="top_line middle_margin"></div>
<div class="text color_iray">
<span>印刷序列号:{{item.ysxlh}}</span>
</div>
</div>
</div>
<div class="card_padding">
<div class="top_line middle_margin"></div>
<div class="text">
<el-button class="operation_button" type="text" @click="openZsylDialog(item)">证书预览</el-button>
<el-button class="operation_button" type="text">证书打印(1)</el-button>
</div>
</div>
</el-card>
<zsylDialog ref="zsylDialog" v-model="zsylFlag" :value='zsylFlag'/>
</div>
</template>
<script>
import zsylDialog from "./zsyl";
import { getBdcqzList } from "@/api/fqsq.js";
export default {
components: { zsylDialog },
props: {
},
data() {
return {
tableData: [],
zsylFlag: false,
bdcqzlx: 1,
bdcqz: {}
};
},
async created() {
var bsmSldy = this.$parent._data.unitData[0].bsmSldy;
this.list(bsmSldy);
},
methods: {
list(bsmSldy){
getBdcqzList({bsmSldy:bsmSldy}).then(res => {
if (res.code === 200) {
this.tableData = res.result
}
})
},
openZsylDialog(item){
this.zsylFlag = true;
this.bdcqz = item;
this.$nextTick(() => {
this.$refs.zsylDialog.ysxlhList();
});
}
},
};
</script>
<style scoped lang='scss'>
@import "~@/styles/public.scss";
.szxx {
box-sizing: border-box;
padding-right: 15px;
width: 100%;
height: 600px;
overflow-y: scroll;
.box-card {
float: left;
width: 330px;
margin-top: 20px;
margin-right: 20px;
height: 440px;
.szxx_body {
height: 240px;
}
}
}
.szxx_header {
color:white;
font-weight:bolder;
font-size: 18px;
.header_type{
display: flex;
justify-content: center;
align-content: center;
}
.header_text{
text-align: center;
margin-top:10px;
height: 50px;
line-height: 30px;
}
}
.top_line {
border-top: 2px solid rgb(222,222,222);
}
.text {
margin-bottom: 10px;
text-align: center;
}
.color_iray {
color: rgb(153,153,153);
}
.color_red {
color: rgb(255,89,24);
}
.middle_margin {
margin-bottom: 10px;
}
.operation_button {
border: 1px solid rgb(0,121,254);
padding: 15px 10px;
text-align: center;
width: 100px;
}
.card_padding {
padding-top:20px
}
/deep/.el-card__header{
background-color: rgb(198,67,83);
}
/deep/.el-card__body{
padding: 0px
}
</style>