From 1b2eaf4fac0dfe83210153d542ebf8852a8c5df5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Wed, 21 Aug 2024 19:08:18 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=AF=E5=88=86=E5=85=91=E6=8D=A2=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../scss/modules/management/volunteet.scss | 124 +++++++++ .../volunteer/VolManage/activeRecord.vue | 142 +++++++--- .../modules/volunteer/VolManage/index.vue | 209 +++++++++----- .../modules/volunteer/VolManage/integral.vue | 88 ++++-- src/views/modules/volunteer/VolManage/see.vue | 28 +- .../volunteer/activityArchive/index.vue | 2 +- .../volunteer/pointsRedemption/Select.vue | 77 ++++++ .../volunteer/pointsRedemption/add.vue | 256 +++++++++++++----- .../volunteer/pointsRedemption/index.vue | 214 ++++++--------- .../volunteer/pointsRedemption/record.vue | 72 +++-- 10 files changed, 855 insertions(+), 357 deletions(-) create mode 100644 src/assets/scss/modules/management/volunteet.scss create mode 100644 src/views/modules/volunteer/pointsRedemption/Select.vue diff --git a/src/assets/scss/modules/management/volunteet.scss b/src/assets/scss/modules/management/volunteet.scss new file mode 100644 index 000000000..6b2409580 --- /dev/null +++ b/src/assets/scss/modules/management/volunteet.scss @@ -0,0 +1,124 @@ +.g-main{ + padding: 30px 0 0 30px; + width: 100%; + } + .flex{ + display: flex; + .flex1{ + flex: 1; + } + &-1{ + flex: 1; + } + &-y{ + flex-direction: column; + } + &-x{ + flex-direction: row; + } + &-center1{ + justify-content: center; + } + &-center2{ + align-items: center; + } + &-center3{ + align-items: flex-start; + } + // + &-mean{ + justify-content: space-around; + } + //两端对齐 + &-end{ + justify-content: space-between; + } + //水平轴右对齐 + &-fend{ + justify-content: flex-end; + } + // 允许子元素换行 + &-wrap{ + flex-wrap: wrap; + } + } +.m{ + &-left12{ + margin-left: 12px; + } + &-left5{ + margin-left: 12px; + } + &-left012{ + margin-left: -5px; + } + &-left18{ + margin-left: 18px; + } + &-right12{ + margin-right: 12px; + } + &-right7{ + margin-right: 7px; + } + &-top12{ + margin-top: 12px; + } + &-top5{ + margin-top: 5px; + } + &-bottom5{ + margin-bottom: 5px; + } + &-bottom10{ + margin-bottom: 10px; + } + &-right10{ + margin-right: 10px; + } + &-right26{ + margin-right: 26px; + } + + &-top15{ + margin-top: 15px; + } + &-top10{ + margin-top: 10px; + } + &-top18{ + margin-top: 18px; + } + &-bot50{ + margin-bottom: 50px; + } + &-bot10{ + margin-bottom:10px; + } + &-top16{ + margin-top:16px; + } + } + + .p{ + &-18{ + padding: 0 18px; + } + &-12{ + padding: 12px; + } + } +.el-form-item{ + margin-bottom: 10px; + } + .bto_btn{ + display: block; + position: fixed; + bottom: 5px; + left: 0; + background: #ffffff; + width: 100%; + padding: 6px 26px; + box-sizing: border-box; + text-align: right; +} \ No newline at end of file diff --git a/src/views/modules/volunteer/VolManage/activeRecord.vue b/src/views/modules/volunteer/VolManage/activeRecord.vue index d1231a7a8..0b6d722cf 100644 --- a/src/views/modules/volunteer/VolManage/activeRecord.vue +++ b/src/views/modules/volunteer/VolManage/activeRecord.vue @@ -1,32 +1,34 @@