diff --git a/src/apps/AppGridManagement/Organization.vue b/src/apps/AppGridManagement/Organization.vue index c0ba8cbb..ad0348d7 100644 --- a/src/apps/AppGridManagement/Organization.vue +++ b/src/apps/AppGridManagement/Organization.vue @@ -6,7 +6,7 @@ 南湖街道网格一 - 网格配置 + 网格配置
网格人员
diff --git a/src/apps/AppGridManagement/SelectGird.vue b/src/apps/AppGridManagement/SelectGird.vue index 8e187026..db7b4b7b 100644 --- a/src/apps/AppGridManagement/SelectGird.vue +++ b/src/apps/AppGridManagement/SelectGird.vue @@ -50,6 +50,33 @@
确定选择
+ + + + @@ -63,6 +90,9 @@ export default { treeList: [], slectList: [], userList: [], + + show: true, + form: {} } }, onLoad() { @@ -180,6 +210,10 @@ export default { return this.$u.toast('请选择网格或网格员') } }, + + callPhone(phone) { + uni.makePhoneCall({phoneNumber: phone}) + }, } } @@ -328,5 +362,83 @@ export default { float: right; } } + + .popup { + padding: 0 32px 16px; + + .bg { + width: 64px; + height: 10px; + background: #CCC; + border-radius: 6px; + margin: 32px 0 32px 344px; + } + + .title { + font-size: 36px; + font-family: PingFang-SC-Heavy, PingFang-SC; + font-weight: 800; + color: #333; + line-height: 50px; + margin-bottom: 24px; + } + + .info-flex { + padding: 26px 0 30px 0; + width: 100%; + border-bottom: 1px solid #D8DDE6; + line-height: 40px; + font-size: 28px; + + .label { + display: inline-block; + width: 160px; + font-weight: 800; + color: #333; + } + + .value { + color: #666; + font-size: 26px; + + .phone-icon { + width: 40px; + height: 40px; + vertical-align: sub; + margin-left: 16px; + } + } + } + .border-b0{ + border-bottom: 0; + } + .btn{ + padding: 32px 0; + background-color: #fff; + display: flex; + span{ + display: inline-block; + height: 92px; + line-height: 90px; + border-radius: 8px; + font-size: 34px; + font-family: PingFangSC-Medium, PingFang SC; + font-weight: 500; + box-sizing: border-box; + text-align: center; + } + .del{ + color: #f46; + border: 1px solid #f46; + flex: 1; + margin-right: 32px; + } + .edit{ + background-color: #3671EE; + color: #fff; + flex: 2; + } + } + } }