-
+
+
@@ -67,21 +69,41 @@
{{ item.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1********$2') }}
-
{{ item.phone }}
+
+

+
暂无居民信息
点击新增按钮新增居民信息,也可在管理系统批量导入
+
-
-

-
暂无居民信息
点击新增按钮新增居民信息,也可在管理系统批量导入
-
+
-
@@ -123,10 +145,24 @@ export default {
'bottom': '-4px',
'background': '#026AF2'
},
+ statusBarHeight: uni.getSystemInfoSync().statusBarHeight,
+ checkImg: 'https://cdn.sinoecare.com/i/2024/07/16/6695ddf91113c.png',
+ circleImg: 'https://cdn.sinoecare.com/i/2024/07/16/6695ddf890b1e.png',
+ userImg: 'https://cdn.sinoecare.com/i/2024/07/16/6695e2a0d95c9.png',
+ showTag: false
}
},
computed: {
...mapState(['user']),
+ showBtn() {
+ var btn = false
+ this.datas.map((item) => {
+ if(item.isCheck) {
+ btn = true
+ }
+ })
+ return btn
+ }
},
watch: {},
onLoad() {
@@ -160,6 +196,9 @@ export default {
})
.then((res) => {
if (res.code == 0) {
+ res.data.records.map((item) => {
+ item.isCheck = false
+ })
this.datas = this.current > 1 ? [...this.datas, ...res.data.records] : res.data.records
this.pages = res.data.pages
@@ -212,6 +251,9 @@ export default {
})
}).catch(() => {
})
+ },
+ clickCheck(index) {
+ this.datas[index].isCheck = !this.datas[index].isCheck
}
},
onReachBottom() {
@@ -224,6 +266,7 @@ export default {
diff --git a/src/project/weiyang/AppPeopleList/TagList.vue b/src/project/weiyang/AppPeopleList/TagList.vue
new file mode 100644
index 0000000..df99eff
--- /dev/null
+++ b/src/project/weiyang/AppPeopleList/TagList.vue
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+