缮证信息的不动产权证书样式修改
Showing
1 changed file
with
15 additions
and
5 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-24 15:38:52 | 4 | * @LastEditTime: 2023-08-25 15:25:30 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="szxx"> | 7 | <div class="szxx"> |
8 | <el-card class="box-card" v-for="(item, index) in tableData" :key="index"> | 8 | <el-card :class="item.szcs == 0 ? 'box-card':'box-card bg-red'" v-for="(item, index) in tableData" :key="index"> |
9 | <div slot="header" class="szxx_header"> | 9 | <div slot="header" class="szxx_header"> |
10 | <span class="header_type">{{ | 10 | <span class="header_type">{{ |
11 | item.bdcqzlx == 1 ? "不动产权证书" : "不动产登记证明" | 11 | item.bdcqzlx == 1 ? "不动产权证书" : "不动产登记证明" |
... | @@ -49,7 +49,7 @@ | ... | @@ -49,7 +49,7 @@ |
49 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> | 49 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> |
50 | </div> | 50 | </div> |
51 | <div class="text" v-else> | 51 | <div class="text" v-else> |
52 | <el-button class="operation_button" type="text" @click="openZsylDialog(item, 2)">证书打印1({{ item.szcs | 52 | <el-button class="operation_button" type="text" @click="openZsylDialog(item, 2)">证书打印({{ item.szcs |
53 | }})</el-button> | 53 | }})</el-button> |
54 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> | 54 | <el-button class="operation_button" type="text" @click="openRecordPop(item)">缮证记录</el-button> |
55 | </div> | 55 | </div> |
... | @@ -116,6 +116,7 @@ | ... | @@ -116,6 +116,7 @@ |
116 | var bsmSlsq = this.$route.query.bsmSlsq; | 116 | var bsmSlsq = this.$route.query.bsmSlsq; |
117 | getSlsqBdcqzList({ bsmSlsq: bsmSlsq }).then((res) => { | 117 | getSlsqBdcqzList({ bsmSlsq: bsmSlsq }).then((res) => { |
118 | if (res.code === 200) { | 118 | if (res.code === 200) { |
119 | debugger | ||
119 | this.tableData = res.result; | 120 | this.tableData = res.result; |
120 | if (res.result) { | 121 | if (res.result) { |
121 | this.bdcqz = res.result[0]; | 122 | this.bdcqz = res.result[0]; |
... | @@ -210,7 +211,7 @@ | ... | @@ -210,7 +211,7 @@ |
210 | } | 211 | } |
211 | 212 | ||
212 | .szxx_header { | 213 | .szxx_header { |
213 | color: #ffffff; | 214 | // color: #ffffff; |
214 | font-weight: bolder; | 215 | font-weight: bolder; |
215 | font-size: 16px; | 216 | font-size: 16px; |
216 | 217 | ||
... | @@ -291,10 +292,19 @@ | ... | @@ -291,10 +292,19 @@ |
291 | justify-content: flex-end; | 292 | justify-content: flex-end; |
292 | } | 293 | } |
293 | } | 294 | } |
294 | 295 | .box-card{ | |
296 | .szxx_header{ | ||
297 | color: #303133; | ||
298 | } | ||
299 | } | ||
300 | .bg-red{ | ||
301 | .szxx_header{ | ||
302 | color: #FFF; | ||
303 | } | ||
295 | /deep/.el-card__header { | 304 | /deep/.el-card__header { |
296 | background-color: rgb(198, 67, 83); | 305 | background-color: rgb(198, 67, 83); |
297 | } | 306 | } |
307 | } | ||
298 | 308 | ||
299 | /deep/.el-card__body { | 309 | /deep/.el-card__body { |
300 | padding: 0px; | 310 | padding: 0px; | ... | ... |
-
Please register or sign in to post a comment