diff --git a/src/components/AiGap.vue b/src/components/AiGap.vue new file mode 100644 index 00000000..611bf111 --- /dev/null +++ b/src/components/AiGap.vue @@ -0,0 +1,28 @@ + + + + + diff --git a/src/components/AiItem.vue b/src/components/AiItem.vue index cf5be5a1..ab58679b 100644 --- a/src/components/AiItem.vue +++ b/src/components/AiItem.vue @@ -1,8 +1,8 @@ @@ -28,7 +30,9 @@ export default { value: {default: ""}, label: {default: ""}, required: Boolean, - topLabel: Boolean + topLabel: Boolean, + border: {default: true}, + labelBold: Boolean }, data() { return {} @@ -40,12 +44,25 @@ export default { .AiItem { font-family: PingFangSC-Regular, PingFang SC; + .border { + .normal { + border-bottom: 2px solid #ddd; + } + + .topLabel { + border-bottom: 2px solid #ddd; + } + } + .normal { width: 100%; - border-bottom: 2px solid #ddd; padding-right: 32px; box-sizing: border-box; height: 112px; + + .flexContent { + max-width: 62vw; + } } .label { @@ -64,11 +81,15 @@ export default { content: "*"; color: #f46; } + + &.labelBold { + font-weight: bold; + font-size: 34px; + } } - .topLabel { + ::v-deep.topLabel { padding: 32px 32px 32px 0; - border-bottom: 2px solid #ddd; .labelPane { margin-bottom: 32px; @@ -76,6 +97,10 @@ export default { .content { padding-left: 20px; + + .AiMore > .u-icon { + width: 100%; + } } } } diff --git a/src/components/AiPagePicker.vue b/src/components/AiPagePicker.vue index f35a0f19..76ba8271 100644 --- a/src/components/AiPagePicker.vue +++ b/src/components/AiPagePicker.vue @@ -28,7 +28,7 @@ export default { return { configList: { resident: {url: "/components/pages/selectResident", label: "name"}, - sysUser:{url: "/components/pages/selectSysUser", label: "name"}, + sysUser: {url: "/components/pages/selectSysUser", label: "name"}, gird: {url: "/components/pages/selectGird", label: "girdName"}, party: {url: "/components/pages/selectParty", label: "name"}, custom: {...this.ops} @@ -56,7 +56,7 @@ export default { }) let url = `${config.url}`, qsstr = qs.stringify({ - selected, ...this.$attrs + selected, nodeKey, ...this.$attrs }) if (!!qsstr) { url += `?${qsstr}` diff --git a/src/components/AiPhone.vue b/src/components/AiPhone.vue new file mode 100644 index 00000000..9a91388d --- /dev/null +++ b/src/components/AiPhone.vue @@ -0,0 +1,30 @@ + + + + + diff --git a/src/components/pages/selectSysUser.vue b/src/components/pages/selectSysUser.vue index 33cb52bb..e990c10c 100644 --- a/src/components/pages/selectSysUser.vue +++ b/src/components/pages/selectSysUser.vue @@ -48,6 +48,9 @@ export default { ...mapState(['user']), isSingle() { return this.$route.query.single + }, + nodeKey() { + return this.$route.query.nodeKey || "idNumber" } }, onLoad(query) { @@ -67,7 +70,7 @@ export default { if (res?.data) { this.total = res.data.pages || 0 res.data.records.forEach(e => { - e.isCheck = this.selected.includes(e.idNumber) + e.isCheck = this.selected.includes(e[this.nodeKey]) }) this.list = [current == 1 ? [] : this.list, res.data.records || []].flat() } diff --git a/src/project/grid/AppGridManagement/AddGird.vue b/src/project/grid/AppGridManagement/AddGird.vue index eeb2a5da..f9976143 100644 --- a/src/project/grid/AppGridManagement/AddGird.vue +++ b/src/project/grid/AppGridManagement/AddGird.vue @@ -1,42 +1,31 @@ diff --git a/src/project/grid/AppGridManagement/selectGridMember.vue b/src/project/grid/AppGridManagement/selectGridMember.vue new file mode 100644 index 00000000..59633a6a --- /dev/null +++ b/src/project/grid/AppGridManagement/selectGridMember.vue @@ -0,0 +1,305 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/AddSet.vue b/src/project/grid/AppHandSnapshot/AddSet.vue new file mode 100644 index 00000000..8368f651 --- /dev/null +++ b/src/project/grid/AppHandSnapshot/AddSet.vue @@ -0,0 +1,215 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/AppHandSnapshot.vue b/src/project/grid/AppHandSnapshot/AppHandSnapshot.vue new file mode 100644 index 00000000..69122920 --- /dev/null +++ b/src/project/grid/AppHandSnapshot/AppHandSnapshot.vue @@ -0,0 +1,155 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/Content.vue b/src/project/grid/AppHandSnapshot/Content.vue new file mode 100644 index 00000000..4e7f1344 --- /dev/null +++ b/src/project/grid/AppHandSnapshot/Content.vue @@ -0,0 +1,235 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/Detail.vue b/src/project/grid/AppHandSnapshot/Detail.vue new file mode 100644 index 00000000..2de9cb91 --- /dev/null +++ b/src/project/grid/AppHandSnapshot/Detail.vue @@ -0,0 +1,449 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/List.vue b/src/project/grid/AppHandSnapshot/List.vue new file mode 100644 index 00000000..82a31199 --- /dev/null +++ b/src/project/grid/AppHandSnapshot/List.vue @@ -0,0 +1,310 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/PercentageDetail.vue b/src/project/grid/AppHandSnapshot/PercentageDetail.vue new file mode 100644 index 00000000..d0c2ea1f --- /dev/null +++ b/src/project/grid/AppHandSnapshot/PercentageDetail.vue @@ -0,0 +1,211 @@ + + + + + diff --git a/src/project/grid/AppGridManagement/SelectUser.vue b/src/project/grid/AppHandSnapshot/SelectUser.vue similarity index 50% rename from src/project/grid/AppGridManagement/SelectUser.vue rename to src/project/grid/AppHandSnapshot/SelectUser.vue index a3202df9..1385cd20 100644 --- a/src/project/grid/AppGridManagement/SelectUser.vue +++ b/src/project/grid/AppHandSnapshot/SelectUser.vue @@ -2,15 +2,35 @@
- + /{{item.girdName}}
-
+
+
+
+
+ + + + + +
+
+
{{ item.girdName }}
+ +
+
+
+ + +
+ +
- - + +
@@ -25,7 +45,7 @@
-
+
确定选择
@@ -38,71 +58,135 @@ export default { name: 'SelectUser', data() { return { - selectUserList: [], + selectUser: {}, + allData: null, + treeList: [], + slectList: [], userList: [], - name: '', - current: 1 } }, onLoad() { - this.selectUserList = uni.getStorageSync('selectUserList') - this.selectUserList.map((item) => { - item.id =item.wxUserId - item.mobile = item.phone - item.avatar = item.photo - }) - this.getList() + this.getTree() + }, + onShow() { + document.title = '选择人员' }, methods: { - getListInit() { - this.userList = [] - this.current = 1 - this.getList() - }, - getList() { - this.$http.post(`/app/wxcp/wxuser/list?name=${this.name}¤t=${this.current}&size=10000`).then((res) => { + getTree() { + this.slectList = [] + this.$http.post('/app/appgirdinfo/listAllByTop').then((res) => { if (res?.data) { - res.data.records.map((item) => { - item.isChecked = false - }) - - this.userList = this.current > 1 ? [...this.userList, ...res.data.records] : res.data.records - - this.userList.map((item) => { - this.selectUserList.map((e) => { - if(e.id == item.id) { - item.isChecked = true - } - }) - }) + this.allData = res.data + this.treeInit() } }) }, - userClick(index) { - this.userList[index].isChecked = !this.userList[index].isChecked + treeInit() { + if(this.allData[0].girdLevel == 2) { + if(this.allData[0].girdMemberList && this.allData[0].girdMemberList.length) { + this.userList = this.allData[0].girdMemberList + this.userList.map((item) => { + item.isChecked = false + }) + } + }else { + this.treeList = this.allData[0].girdList + } + var obj = { + girdName: this.allData[0].girdName, + id: this.allData[0].id, + girdLevel: this.allData[0].girdLevel + } + this.slectList.push(obj) + }, + + itemClick(row) { + console.log(row) + var obj = { + girdName: row.girdName, + id: row.id, + girdLevel: row.girdLevel + } + this.slectList.push(obj) + this.searckGird(row) + }, + + searckGird(row) { + this.treeList = [] + if(row.girdLevel != 2) { //查网格 + this.$http.post(`/app/appgirdinfo/list?parentGirdId=${row.id}&size=999`).then((res) => { + if (res?.data) { + this.treeList = res.data.records + } + }) + }else { //查网格员 + this.userList = [] + this.$http.post(`/app/appgirdmemberinfo/listByGirdIdByThree?girdId=${row.id}`).then((res) => { + if (res?.data) { + this.userList = res.data + this.userList.map((item) => { + item.isChecked = false + }) + } + }) + } + }, + + girdNameClick(row, index) { + this.userList = [] + if(!index) { //第一级别 + this.slectList = [] + this.treeInit() + }else { + var list = [] + this.slectList.map((item, i) => { + if(i <= index) { + list.push(item) + } + }) + this.slectList = list + this.searckGird(row) + } + }, + + + girdClick(row, index) { + if (this.treeList[index].isChecked) {//取消 + this.treeList[index].isChecked = false + this.selectUser = {} + } else { + this.treeList.map((item) => { + item.isChecked = false + }) + this.treeList[index].isChecked = true + this.selectUser = row + } + this.$forceUpdate() + }, + + userClick(row, index) { + if (this.userList[index].isChecked) {//取消 + this.userList[index].isChecked = false + this.selectUser = {} + } else { + this.userList.map((item) => { + item.isChecked = false + }) + this.userList[index].isChecked = true + this.selectUser = row + } this.$forceUpdate() }, submit() { - var selectUserList = [] - this.userList.map((item) => { - if(item.isChecked) { - selectUserList.push(item) - } - }) - uni.$emit('selectUser', selectUserList) - uni.navigateBack() - // if (!selectUserList.length) { - // return this.$u.toast('请选择人员') - // } else { - - // } + if (this.selectUser.id != null) { + uni.$emit('goback', this.selectUser) + uni.navigateBack() + } else { + return this.$u.toast('请选择网格或网格员') + } }, - }, - onReachBottom() { - this.current ++ - this.getList() } } @@ -111,15 +195,13 @@ export default { .SelectUser { height: 100%; background: #fff; - .pad-b140{ - padding-bottom: 140px; - } .header-top { background: #fff; padding: 20px 32px; } .header-middle { + padding-bottom: 140px; .hint { padding: 28px 20px 28px 32px; line-height: 56px; diff --git a/src/project/grid/AppHandSnapshot/Set.vue b/src/project/grid/AppHandSnapshot/Set.vue new file mode 100644 index 00000000..be5fe84c --- /dev/null +++ b/src/project/grid/AppHandSnapshot/Set.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/SetList.vue b/src/project/grid/AppHandSnapshot/SetList.vue new file mode 100644 index 00000000..895eb246 --- /dev/null +++ b/src/project/grid/AppHandSnapshot/SetList.vue @@ -0,0 +1,122 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/Statistics.vue b/src/project/grid/AppHandSnapshot/Statistics.vue new file mode 100644 index 00000000..3be9524b --- /dev/null +++ b/src/project/grid/AppHandSnapshot/Statistics.vue @@ -0,0 +1,353 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/UserList.vue b/src/project/grid/AppHandSnapshot/UserList.vue new file mode 100644 index 00000000..fe31698a --- /dev/null +++ b/src/project/grid/AppHandSnapshot/UserList.vue @@ -0,0 +1,60 @@ + + + + + diff --git a/src/project/grid/AppHandSnapshot/components/1.png b/src/project/grid/AppHandSnapshot/components/1.png new file mode 100644 index 00000000..663b9263 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/1.png differ diff --git a/src/project/grid/AppHandSnapshot/components/22.png b/src/project/grid/AppHandSnapshot/components/22.png new file mode 100644 index 00000000..7f6bc129 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/22.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/add-icon.png b/src/project/grid/AppHandSnapshot/components/img/add-icon.png new file mode 100644 index 00000000..f751a7fa Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/add-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/bg-1.png b/src/project/grid/AppHandSnapshot/components/img/bg-1.png new file mode 100644 index 00000000..696022e9 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/bg-1.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/bg-2.png b/src/project/grid/AppHandSnapshot/components/img/bg-2.png new file mode 100644 index 00000000..98fa31b8 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/bg-2.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/bg-3.png b/src/project/grid/AppHandSnapshot/components/img/bg-3.png new file mode 100644 index 00000000..dc469567 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/bg-3.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/down-icon.png b/src/project/grid/AppHandSnapshot/components/img/down-icon.png new file mode 100644 index 00000000..6ffcc7a2 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/down-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/gird--select-icon.png b/src/project/grid/AppHandSnapshot/components/img/gird--select-icon.png new file mode 100644 index 00000000..205144d2 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/gird--select-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/gird-icon.png b/src/project/grid/AppHandSnapshot/components/img/gird-icon.png new file mode 100644 index 00000000..f7f3e61f Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/gird-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/handle-icon-active.png b/src/project/grid/AppHandSnapshot/components/img/handle-icon-active.png new file mode 100644 index 00000000..1cb07503 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/handle-icon-active.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/handle-icon.png b/src/project/grid/AppHandSnapshot/components/img/handle-icon.png new file mode 100644 index 00000000..ab2d20c2 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/handle-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/jujue.png b/src/project/grid/AppHandSnapshot/components/img/jujue.png new file mode 100644 index 00000000..ea7387ad Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/jujue.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/line-img.png b/src/project/grid/AppHandSnapshot/components/img/line-img.png new file mode 100644 index 00000000..4d423855 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/line-img.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/local-icon.png b/src/project/grid/AppHandSnapshot/components/img/local-icon.png new file mode 100644 index 00000000..3e23aff6 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/local-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/no-admin.png b/src/project/grid/AppHandSnapshot/components/img/no-admin.png new file mode 100644 index 00000000..3830c170 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/no-admin.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/remove-icon.png b/src/project/grid/AppHandSnapshot/components/img/remove-icon.png new file mode 100644 index 00000000..971b39ef Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/remove-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/right-icon.png b/src/project/grid/AppHandSnapshot/components/img/right-icon.png new file mode 100644 index 00000000..e1c626b7 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/right-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/search-icon.png b/src/project/grid/AppHandSnapshot/components/img/search-icon.png new file mode 100644 index 00000000..e3cb75af Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/search-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/set-icon-active.png b/src/project/grid/AppHandSnapshot/components/img/set-icon-active.png new file mode 100644 index 00000000..c025cb79 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/set-icon-active.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/set-icon.png b/src/project/grid/AppHandSnapshot/components/img/set-icon.png new file mode 100644 index 00000000..58651b64 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/set-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/setting-icon.png b/src/project/grid/AppHandSnapshot/components/img/setting-icon.png new file mode 100644 index 00000000..29e4b29f Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/setting-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/statistics-icon-active.png b/src/project/grid/AppHandSnapshot/components/img/statistics-icon-active.png new file mode 100644 index 00000000..81dbd3f7 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/statistics-icon-active.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/statistics-icon.png b/src/project/grid/AppHandSnapshot/components/img/statistics-icon.png new file mode 100644 index 00000000..63b98d33 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/statistics-icon.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/tx@2x.png b/src/project/grid/AppHandSnapshot/components/img/tx@2x.png new file mode 100644 index 00000000..d9620e08 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/tx@2x.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/user-img.png b/src/project/grid/AppHandSnapshot/components/img/user-img.png new file mode 100644 index 00000000..ae49d85f Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/user-img.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/xz.png b/src/project/grid/AppHandSnapshot/components/img/xz.png new file mode 100644 index 00000000..98f78cda Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/xz.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/xzh.png b/src/project/grid/AppHandSnapshot/components/img/xzh.png new file mode 100644 index 00000000..967fa399 Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/xzh.png differ diff --git a/src/project/grid/AppHandSnapshot/components/img/zhuanjiao.png b/src/project/grid/AppHandSnapshot/components/img/zhuanjiao.png new file mode 100644 index 00000000..f6c932fa Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/img/zhuanjiao.png differ diff --git a/src/project/grid/AppHandSnapshot/components/yan.jpg b/src/project/grid/AppHandSnapshot/components/yan.jpg new file mode 100644 index 00000000..bf6a5a2c Binary files /dev/null and b/src/project/grid/AppHandSnapshot/components/yan.jpg differ diff --git a/src/project/grid/AppMonitoringObject/Add.vue b/src/project/grid/AppMonitoringObject/Add.vue new file mode 100644 index 00000000..1db5dde1 --- /dev/null +++ b/src/project/grid/AppMonitoringObject/Add.vue @@ -0,0 +1,1018 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/AppMonitoringObject.vue b/src/project/grid/AppMonitoringObject/AppMonitoringObject.vue new file mode 100644 index 00000000..114a097e --- /dev/null +++ b/src/project/grid/AppMonitoringObject/AppMonitoringObject.vue @@ -0,0 +1,378 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/Detail.vue b/src/project/grid/AppMonitoringObject/Detail.vue new file mode 100644 index 00000000..0842487b --- /dev/null +++ b/src/project/grid/AppMonitoringObject/Detail.vue @@ -0,0 +1,709 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/LogList.vue b/src/project/grid/AppMonitoringObject/LogList.vue new file mode 100644 index 00000000..178471b5 --- /dev/null +++ b/src/project/grid/AppMonitoringObject/LogList.vue @@ -0,0 +1,380 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorAddFamilyMember.vue b/src/project/grid/AppMonitoringObject/MonitorAddFamilyMember.vue new file mode 100644 index 00000000..a944cf93 --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorAddFamilyMember.vue @@ -0,0 +1,877 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorAddLog.vue b/src/project/grid/AppMonitoringObject/MonitorAddLog.vue new file mode 100644 index 00000000..4db0d8b1 --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorAddLog.vue @@ -0,0 +1,195 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorAddView.vue b/src/project/grid/AppMonitoringObject/MonitorAddView.vue new file mode 100644 index 00000000..02620a2c --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorAddView.vue @@ -0,0 +1,164 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorFamilyMember.vue b/src/project/grid/AppMonitoringObject/MonitorFamilyMember.vue new file mode 100644 index 00000000..b92ca2c5 --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorFamilyMember.vue @@ -0,0 +1,274 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorFamilySituation.vue b/src/project/grid/AppMonitoringObject/MonitorFamilySituation.vue new file mode 100644 index 00000000..3e220b2d --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorFamilySituation.vue @@ -0,0 +1,594 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorIncome.vue b/src/project/grid/AppMonitoringObject/MonitorIncome.vue new file mode 100644 index 00000000..f3d47c1c --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorIncome.vue @@ -0,0 +1,385 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorPoorStatus.vue b/src/project/grid/AppMonitoringObject/MonitorPoorStatus.vue new file mode 100644 index 00000000..96e059e3 --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorPoorStatus.vue @@ -0,0 +1,305 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/MonitorRemoveView.vue b/src/project/grid/AppMonitoringObject/MonitorRemoveView.vue new file mode 100644 index 00000000..c5c3069e --- /dev/null +++ b/src/project/grid/AppMonitoringObject/MonitorRemoveView.vue @@ -0,0 +1,262 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/components/img/check-icon.png b/src/project/grid/AppMonitoringObject/components/img/check-icon.png new file mode 100644 index 00000000..4955a075 Binary files /dev/null and b/src/project/grid/AppMonitoringObject/components/img/check-icon.png differ diff --git a/src/project/grid/AppMonitoringObject/components/img/right-icon.png b/src/project/grid/AppMonitoringObject/components/img/right-icon.png new file mode 100644 index 00000000..58a59c4d Binary files /dev/null and b/src/project/grid/AppMonitoringObject/components/img/right-icon.png differ diff --git a/src/project/grid/AppMonitoringObject/components/img/service-success.png b/src/project/grid/AppMonitoringObject/components/img/service-success.png new file mode 100644 index 00000000..95613958 Binary files /dev/null and b/src/project/grid/AppMonitoringObject/components/img/service-success.png differ diff --git a/src/project/grid/AppMonitoringObject/components/img/top-icon-blue.png b/src/project/grid/AppMonitoringObject/components/img/top-icon-blue.png new file mode 100644 index 00000000..5ce4b2a6 Binary files /dev/null and b/src/project/grid/AppMonitoringObject/components/img/top-icon-blue.png differ diff --git a/src/project/grid/AppMonitoringObject/components/img/user-img.png b/src/project/grid/AppMonitoringObject/components/img/user-img.png new file mode 100644 index 00000000..ae49d85f Binary files /dev/null and b/src/project/grid/AppMonitoringObject/components/img/user-img.png differ diff --git a/src/project/grid/AppMonitoringObject/familyRisk.vue b/src/project/grid/AppMonitoringObject/familyRisk.vue new file mode 100644 index 00000000..11c86d2b --- /dev/null +++ b/src/project/grid/AppMonitoringObject/familyRisk.vue @@ -0,0 +1,347 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/residentDetail.vue b/src/project/grid/AppMonitoringObject/residentDetail.vue new file mode 100644 index 00000000..6589ca9c --- /dev/null +++ b/src/project/grid/AppMonitoringObject/residentDetail.vue @@ -0,0 +1,282 @@ + + + + + diff --git a/src/project/grid/AppMonitoringObject/serviceResult.vue b/src/project/grid/AppMonitoringObject/serviceResult.vue new file mode 100644 index 00000000..3cb11f92 --- /dev/null +++ b/src/project/grid/AppMonitoringObject/serviceResult.vue @@ -0,0 +1,82 @@ + + + + + diff --git a/src/project/grid/AppSpecialPeople/AppSpecialPeople.vue b/src/project/grid/AppSpecialPeople/AppSpecialPeople.vue new file mode 100644 index 00000000..fc64e71c --- /dev/null +++ b/src/project/grid/AppSpecialPeople/AppSpecialPeople.vue @@ -0,0 +1,501 @@ + + + + + diff --git a/src/project/grid/AppSpecialPeople/add.vue b/src/project/grid/AppSpecialPeople/add.vue new file mode 100644 index 00000000..ef0f104b --- /dev/null +++ b/src/project/grid/AppSpecialPeople/add.vue @@ -0,0 +1,620 @@ + + + + + diff --git a/src/project/grid/AppSpecialPeople/img/del-icon.png b/src/project/grid/AppSpecialPeople/img/del-icon.png new file mode 100644 index 00000000..0f536bfb Binary files /dev/null and b/src/project/grid/AppSpecialPeople/img/del-icon.png differ diff --git a/src/project/grid/AppSpecialPeople/img/down-icon.png b/src/project/grid/AppSpecialPeople/img/down-icon.png new file mode 100644 index 00000000..b0db859f Binary files /dev/null and b/src/project/grid/AppSpecialPeople/img/down-icon.png differ diff --git a/src/project/grid/AppSpecialPeople/img/edit-icon.png b/src/project/grid/AppSpecialPeople/img/edit-icon.png new file mode 100644 index 00000000..3b6bb392 Binary files /dev/null and b/src/project/grid/AppSpecialPeople/img/edit-icon.png differ diff --git a/src/project/grid/AppSpecialPeople/img/local-icon.png b/src/project/grid/AppSpecialPeople/img/local-icon.png new file mode 100644 index 00000000..3e23aff6 Binary files /dev/null and b/src/project/grid/AppSpecialPeople/img/local-icon.png differ diff --git a/src/project/grid/AppSpecialPeople/img/search-icon.png b/src/project/grid/AppSpecialPeople/img/search-icon.png new file mode 100644 index 00000000..e3cb75af Binary files /dev/null and b/src/project/grid/AppSpecialPeople/img/search-icon.png differ diff --git a/src/project/grid/AppSpecialPeople/img/user-img.png b/src/project/grid/AppSpecialPeople/img/user-img.png new file mode 100644 index 00000000..ae49d85f Binary files /dev/null and b/src/project/grid/AppSpecialPeople/img/user-img.png differ