From 0152fbdc23eedf9a24eacee407b75124e59d3e93 Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Wed, 29 Mar 2023 13:51:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8B=B9=E6=9E=9C=E6=B5=8F=E8=A7=88=E5=99=A8?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E4=B8=A2=E5=A4=B1,=E6=88=BF=E5=B1=8B?= =?UTF-8?q?=E8=84=B1=E6=95=8F=E9=9A=90=E8=97=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/scss/common.scss | 2 +- src/assets/scss/variables.scss | 2 +- src/views/components/resiInfo.vue | 4 +-- .../modules/base/community/roomDetail.vue | 24 ++++++++++---- src/views/modules/shequ/chaxun.vue | 32 +++++++++---------- 5 files changed, 37 insertions(+), 27 deletions(-) diff --git a/src/assets/scss/common.scss b/src/assets/scss/common.scss index 31a876ca6..03ec9ab7b 100644 --- a/src/assets/scss/common.scss +++ b/src/assets/scss/common.scss @@ -440,7 +440,7 @@ img { img { position: relative; display: block; - left: -100px; + // left: -100px; width: 24px; height: 24px; filter: drop-shadow(100px 0px rgba(#000, 0.85)); diff --git a/src/assets/scss/variables.scss b/src/assets/scss/variables.scss index 612d12080..dc0787204 100644 --- a/src/assets/scss/variables.scss +++ b/src/assets/scss/variables.scss @@ -5,7 +5,7 @@ $base--line-height: 1.15; $navbar--height: 64px; // Sidebar -$sidebar--width: 230px; +$sidebar--width: 251px; $sidebar--width-fold: 64px; $sidebar--background-color-dark: #263238; $sidebar--text-color-dark: #8a979e; diff --git a/src/views/components/resiInfo.vue b/src/views/components/resiInfo.vue index 83ebbc53c..149a2b178 100644 --- a/src/views/components/resiInfo.vue +++ b/src/views/components/resiInfo.vue @@ -37,7 +37,7 @@
联系电话:
{{resiDetailObj.showMobile?resiDetailObj.showMobile:resiDetailObj.mobile?`${resiDetailObj.mobile.substr(0,3)}`+ "****" +`${resiDetailObj.mobile.substr(7,5)}`:'--'}}
- + 证件号:
{{resiDetailObj.showIdNum?resiDetailObj.showIdNum:resiDetailObj.idNum?`${resiDetailObj.idNum.substr(0, 11)}` +"******" +`${resiDetailObj.idNum.substr(16, 2)}`:'--'}}
- + {{ dataForm.showOwnerPhone ? dataForm.showOwnerPhone : "--" }} + + 显示 + @click="handleTuomin('phone')">{{this.showFlagMobileBtn == true?'显示':'隐藏'}}
证件号: {{ dataForm.showOwnerIdCard ? dataForm.showOwnerIdCard : "--" }} + + 显示 + @click="handleTuomin('idcard')">{{this.showFlagIdCardBtn?'显示':'隐藏'}}
备注: @@ -133,8 +133,10 @@ export default { sysCoding: "", neighborHoodName: "", buildingName: "", + }, - + showFlagIdCardBtn:true, + showFlagMobileBtn:true, keyWords: "", }; }, @@ -169,9 +171,17 @@ export default { if (code === 0) { if (type === "phone") { this.$set(this.dataForm, "showOwnerPhone", data.mobile); + this.showFlagMobileBtn = !this.showFlagMobileBtn + if(this.showFlagMobileBtn){ + this.$set(this.dataForm, 'showOwnerPhone', data.mobile.substr(0,3) +'****'+ data.mobile.substr(7,4) ) + } } if (type === "idcard") { this.$set(this.dataForm, "showOwnerIdCard", data.idCard); + this.showFlagIdCardBtn = !this.showFlagIdCardBtn + if(this.showFlagIdCardBtn){ + this.$set(this.dataForm, 'showOwnerIdCard', data.idCard.substr(0,11) +'****'+ data.idCard.substr(16,2) ) + } } } else { this.$message.error(msg); diff --git a/src/views/modules/shequ/chaxun.vue b/src/views/modules/shequ/chaxun.vue index cb9b62a79..8a74de072 100644 --- a/src/views/modules/shequ/chaxun.vue +++ b/src/views/modules/shequ/chaxun.vue @@ -8,13 +8,13 @@
查居民
查房屋 @@ -959,24 +959,24 @@ export default { } &.z-on { color: #ffffff; - background: $c1; + background: #0056d6; &:hover { color: #ffffff; } - &::after { - content: ""; - display: block; - position: absolute; - bottom: -10px; - left: 0; - right: 0; - margin: 0 auto; - width: 0; - height: 0; - border: 5px solid transparent; - border-top: 5px solid $c1; - } + // &::after { + // content: ""; + // display: block; + // position: absolute; + // bottom: -10px; + // left: 0; + // right: 0; + // margin: 0 auto; + // width: 0; + // height: 0; + // border: 5px solid transparent; + // border-top: 5px solid $c1; + // } } } }