From c37b69637fd2b8187da1615b94ddac2c31b59ffc Mon Sep 17 00:00:00 2001
From: shijingjing <1789544664@qq.com>
Date: Tue, 5 Jul 2022 10:13:43 +0800
Subject: [PATCH] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E4=BC=81=E5=BE=AE=E7=BD=91?=
=?UTF-8?q?=E6=A0=BC=E5=91=98=E5=8F=AA=E8=83=BD=E6=B7=BB=E5=8A=A0=E7=9B=91?=
=?UTF-8?q?=E6=B5=8B=E5=AF=B9=E8=B1=A1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../AppMonitoringObject.vue | 41 +++++++++++++------
.../MonitorFamilySituation.vue | 6 +--
2 files changed, 31 insertions(+), 16 deletions(-)
diff --git a/src/apps/AppMonitoringObject/AppMonitoringObject.vue b/src/apps/AppMonitoringObject/AppMonitoringObject.vue
index 114a097e..10d86b3d 100644
--- a/src/apps/AppMonitoringObject/AppMonitoringObject.vue
+++ b/src/apps/AppMonitoringObject/AppMonitoringObject.vue
@@ -2,18 +2,13 @@
-
-
+
+
+ 全部类型
+ {{ $dict.getLabel('fpPrtpStatus', status)}}
+
+
@@ -38,6 +33,10 @@
+
+
+
@@ -73,7 +72,10 @@ export default {
areaId: '',
areaName: '',
isAdmin: false,
- checkType: ''
+ checkType: '',
+ showType: false,
+ typelist: [],
+ status: ''
}
},
computed: {
@@ -85,7 +87,10 @@ export default {
this.areaName = this.user.areaName
this.$dict.load('fpPrtpStatus').then(() => {
this.isGirdUser()
+ this.typelist = this.$dict.getDict('fpPrtpStatus').filter((e) => e.dictValue != 5)
+ this.typelist.unshift({ dictName: '全部类型', dictValue: ''})
})
+
uni.$on('reload', () => {
this.getListInit()
})
@@ -104,6 +109,10 @@ export default {
})
},
+ confirmTypeSelect(val) {
+ console.log(val);
+ },
+
getListInit() {
this.current = 1
this.list = []
@@ -201,11 +210,17 @@ export default {
background: #f5f5f5;
}
- .seach-obj {
+ .search-obj {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
border-bottom: 2px solid #f5f5f5;
border-top: 2px solid #f5f5f5;
padding: 20px 32px;
background: #fff;
+ .selectBox {
+ margin-right: 30px;
+ }
}
::v-deep .u-form {
diff --git a/src/apps/AppMonitoringObject/MonitorFamilySituation.vue b/src/apps/AppMonitoringObject/MonitorFamilySituation.vue
index 3e220b2d..3c8b10b2 100644
--- a/src/apps/AppMonitoringObject/MonitorFamilySituation.vue
+++ b/src/apps/AppMonitoringObject/MonitorFamilySituation.vue
@@ -2,7 +2,7 @@