From 42b895c733be30a333838e72e52107d9979310fb Mon Sep 17 00:00:00 2001
From: 13176889840 <13176889840@163.com>
Date: Thu, 26 May 2022 14:16:05 +0800
Subject: [PATCH 1/2] dd
---
src/views/modules/visual/communityParty/community.vue | 2 +-
src/views/modules/visual/communityParty/memberInfo.vue | 1 +
src/views/modules/visual/communityParty/unitInfo.vue | 1 +
3 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/views/modules/visual/communityParty/community.vue b/src/views/modules/visual/communityParty/community.vue
index 73af5c970..3194f8ee1 100644
--- a/src/views/modules/visual/communityParty/community.vue
+++ b/src/views/modules/visual/communityParty/community.vue
@@ -1255,7 +1255,7 @@ export default {
}
}
.table-h {
- height: 360px;
+ height: 320px;
}
.calc-h {
height: calc(100vh - 240px);
diff --git a/src/views/modules/visual/communityParty/memberInfo.vue b/src/views/modules/visual/communityParty/memberInfo.vue
index 55041b781..ed06439a8 100644
--- a/src/views/modules/visual/communityParty/memberInfo.vue
+++ b/src/views/modules/visual/communityParty/memberInfo.vue
@@ -228,6 +228,7 @@ export default {
overflow: auto;
.left-item {
padding: 10px 0;
+ border-right: 1px dashed #1257c9;
cursor: pointer;
.item-title {
font-size: 16px;
diff --git a/src/views/modules/visual/communityParty/unitInfo.vue b/src/views/modules/visual/communityParty/unitInfo.vue
index 75ff68ca8..8ee4c9ea3 100644
--- a/src/views/modules/visual/communityParty/unitInfo.vue
+++ b/src/views/modules/visual/communityParty/unitInfo.vue
@@ -234,6 +234,7 @@ export default {
overflow: auto;
.left-item {
padding: 10px 0;
+ border-bottom: 1px dashed #1257c9;
cursor: pointer;
.item-title {
font-size: 16px;
From 8de16eb6c1bc4a001dc16edbf398d946bf4cbc95 Mon Sep 17 00:00:00 2001
From: 13176889840 <13176889840@163.com>
Date: Thu, 26 May 2022 15:26:05 +0800
Subject: [PATCH 2/2] dd
---
src/views/components/resiForm.vue | 11 +++++++++--
src/views/modules/base/resi.vue | 14 ++++++++------
2 files changed, 17 insertions(+), 8 deletions(-)
diff --git a/src/views/components/resiForm.vue b/src/views/components/resiForm.vue
index 615d860c1..1f138a545 100644
--- a/src/views/components/resiForm.vue
+++ b/src/views/components/resiForm.vue
@@ -205,14 +205,18 @@
+ :label="ns.value" @change="hanldeChangeRadio(n)">
{{ ns.label }}
- {{ns.label}}
+
+
+ {{ns.label}}
+
+
@@ -487,6 +491,9 @@ export default {
// }
})
},
+ hanldeChangeRadio(n) {
+ this.$emit('changeradio', n)
+ },
handleValidBlur(n) {
console.log('n---', n)
if (n.columnName !== 'ID_CARD') return
diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue
index a76cfa99d..f1f84829a 100644
--- a/src/views/modules/base/resi.vue
+++ b/src/views/modules/base/resi.vue
@@ -197,7 +197,7 @@
{
+ let list = [...this.tabsList]
+ list.forEach((item, index) => {
if (item.tableName === childGroup.tableName) {
hasT = true
i = index
@@ -853,12 +854,13 @@ export default {
// console.log('')
}
})
- this.tabsList.push(childGroup)
+ list.push(childGroup)
}
} else {
// console.log('changegroup----000', value)
- if (hasT) this.tabsList.splice(i, 1)
+ if (hasT) list.splice(i, 1)
}
+ this.tabsList = [...list]
},
formetForm () {
const _baseForm = this.$refs.baseForm.handleForm()