From 553dca7b5630442310a0bcc3da8ce20a89c53d98 Mon Sep 17 00:00:00 2001 From: jiangyy Date: Thu, 10 Mar 2022 16:23:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 11 +- .../modules/visual/communityManageForm.scss | 32 ++ .../modules/base/community/buildForm.vue | 49 +-- .../modules/base/community/buildTable.vue | 1 + .../modules/base/community/communityForm.vue | 49 +-- .../modules/base/community/communityTable.vue | 12 +- src/views/modules/base/community/roomForm.vue | 43 +-- .../modules/base/community/roomTable.vue | 2 + src/views/modules/base/grid.vue | 124 +++---- .../regionalParty/activitys.vue | 7 +- .../regionalParty/activitysDetail.vue | 195 +++++------ .../regionalParty/activitysForm.vue | 41 +-- .../regionalParty/finishList.vue | 2 +- .../communityParty/regionalParty/units.vue | 58 ++-- .../regionalParty/unitsDetail.vue | 164 +++++----- .../regionalParty/unitsForm.vue | 308 ++++++++---------- 16 files changed, 517 insertions(+), 581 deletions(-) create mode 100644 src/assets/scss/modules/visual/communityManageForm.scss diff --git a/src/App.vue b/src/App.vue index 4b5a899c..a5052f5d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -128,11 +128,11 @@ export default { .dialog-h { .el-dialog__body { position: relative; - height: 72vh; + height: 82vh; box-sizing: border-box; padding: 0 10px 20px !important; .dialog-h-content { - height: calc(72vh - 80px); + height: calc(82vh - 80px); box-sizing: border-box; overflow: auto; } @@ -149,14 +149,15 @@ export default { &::-webkit-scrollbar-corner, /* 滚动条角落 */ &::-webkit-scrollbar-thumb, - &::-webkit-scrollbar-track { /*滚动条的轨道*/ + &::-webkit-scrollbar-track { + /*滚动条的轨道*/ border-radius: 4px; } &::-webkit-scrollbar-corner, &::-webkit-scrollbar-track { /* 滚动条轨道 */ - + // background: rgba(12, 129, 254, .24); box-shadow: inset 0 0 1px rgba(180, 160, 120, 0.5); } @@ -164,7 +165,7 @@ export default { &::-webkit-scrollbar-thumb { /* 滚动条手柄 */ - background:rgba(0,0,0,0.3); + background: rgba(0, 0, 0, 0.3); // background: linear-gradient(270deg, #0063FE, #0095FF); } } diff --git a/src/assets/scss/modules/visual/communityManageForm.scss b/src/assets/scss/modules/visual/communityManageForm.scss new file mode 100644 index 00000000..21204911 --- /dev/null +++ b/src/assets/scss/modules/visual/communityManageForm.scss @@ -0,0 +1,32 @@ +.item_width_1 { + width: 500px; +} +.item_width_2 { + width: 400px; +} +.item_width_3 { + margin-left: 10px; + width: 200px; +} +.item_width_4 { + width: 200px; +} + +.div_map { + margin-top: 10px; +} + +.div_btn { + margin-top: 20px; + text-align: center; +} +.el-tabs { + margin: 0 20px; +} +.el-upload__tip { + color: rgb(155, 155, 155); + margin: 0; +} +.form { + margin-top: 30px; +} diff --git a/src/views/modules/base/community/buildForm.vue b/src/views/modules/base/community/buildForm.vue index cdea08eb..1f2c2041 100644 --- a/src/views/modules/base/community/buildForm.vue +++ b/src/views/modules/base/community/buildForm.vue @@ -1,6 +1,6 @@