From 9144704f8c6b07753bd500a9e84f2070a82edfe8 Mon Sep 17 00:00:00 2001
From: xiaohei <1494046114@qq.com>
Date: Sun, 24 Dec 2023 13:33:59 +0800
Subject: [PATCH] =?UTF-8?q?feat:=E6=B7=BB=E5=8A=A0=E5=85=9A=E5=91=98?=
=?UTF-8?q?=E6=9C=8D=E5=8A=A1=E3=80=81=E5=BF=97=E6=84=BF=E6=9C=8D=E5=8A=A1?=
=?UTF-8?q?=E3=80=81=E6=B4=BB=E5=8A=A8=E9=A3=8E=E9=87=87=E3=80=81=E5=BF=97?=
=?UTF-8?q?=E6=84=BF=E6=9C=8D=E5=8A=A1=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/main.ts | 3 +
.../life/pages/scenic-list/scenic-list.vue | 88 ++---
.../people/pages/activity-mien/index.vue | 214 +++++++++++
.../people/pages/party-newspaper/create.vue | 329 +++++++++++++++++
.../people/pages/party-newspaper/detail.vue | 231 ++++++++++++
.../people/pages/party-newspaper/index.vue | 281 +++++++++++++++
.../people/pages/volunteering/index.vue | 336 ++++++++++++++++++
src/pages.json | 25 ++
8 files changed, 1463 insertions(+), 44 deletions(-)
create mode 100644 src/packages/people/pages/activity-mien/index.vue
create mode 100644 src/packages/people/pages/party-newspaper/create.vue
create mode 100644 src/packages/people/pages/party-newspaper/detail.vue
create mode 100644 src/packages/people/pages/party-newspaper/index.vue
create mode 100644 src/packages/people/pages/volunteering/index.vue
diff --git a/src/main.ts b/src/main.ts
index cf1e58f..967c715 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -32,6 +32,7 @@ import {
DatePicker,
Form,
CheckboxGroup,
+ RadioGroup, Radio
} from 'vant';
import share from '@/utils/share.js'
@@ -87,6 +88,8 @@ export function createApp() {
app.use(DatePicker);
app.use(Form);
app.use(CheckboxGroup);
+ app.use(Radio);
+ app.use(RadioGroup);
// app.mixin(zpMixins);
return {
app
diff --git a/src/packages/life/pages/scenic-list/scenic-list.vue b/src/packages/life/pages/scenic-list/scenic-list.vue
index 424cfc8..9726718 100644
--- a/src/packages/life/pages/scenic-list/scenic-list.vue
+++ b/src/packages/life/pages/scenic-list/scenic-list.vue
@@ -69,7 +69,7 @@
this.merchantPageApi(false);
},
methods: {
- setMorKm(distance){
+ setMorKm(distance) {
return utils.setMorKm(distance)
},
// 生活对应栏目的分页查询
@@ -197,49 +197,6 @@
.search {
padding: 30rpx 30rpx 54rpx 30rpx;
- .search-input {
- height: 64rpx;
- line-height: 64rpx;
- background: #f9f9f9;
- border-radius: 35rpx;
- border: 1px solid #e1e1e1;
- text-align: center;
- position: relative;
- box-sizing: content-box;
-
- .input {
- width: 100%;
- height: 64rpx;
- line-height: 64rpx;
- text-decoration: 20rpx;
- padding: 0 64rpx;
- font-size: 26rpx;
- font-weight: 400;
- }
-
- .placeholder-style {
- text-align: center;
- color: #c1c1c1;
- }
- }
-
- .search-icon {
- width: 64rpx;
- height: 64rpx;
- background: #ffffff;
- border-radius: 35rpx;
- border: 1px solid #e1e1e1;
- position: absolute;
- right: -1px;
- top: 0;
- z-index: 1;
-
- .imgage {
- width: 32rpx;
- height: 32rpx;
- }
- }
-
.life-tabs {
margin-top: 40rpx;
@@ -295,4 +252,47 @@
}
}
}
+
+ .search-input {
+ height: 64rpx;
+ line-height: 64rpx;
+ background: #f9f9f9;
+ border-radius: 35rpx;
+ border: 1px solid #e1e1e1;
+ text-align: center;
+ position: relative;
+ box-sizing: content-box;
+
+ .input {
+ width: 100%;
+ height: 64rpx;
+ line-height: 64rpx;
+ text-decoration: 20rpx;
+ padding: 0 64rpx;
+ font-size: 26rpx;
+ font-weight: 400;
+ }
+
+ .placeholder-style {
+ text-align: center;
+ color: #c1c1c1;
+ }
+ }
+
+ .search-icon {
+ width: 64rpx;
+ height: 64rpx;
+ background: #ffffff;
+ border-radius: 35rpx;
+ border: 1px solid #e1e1e1;
+ position: absolute;
+ right: -1px;
+ top: 0;
+ z-index: 1;
+
+ .imgage {
+ width: 32rpx;
+ height: 32rpx;
+ }
+ }
\ No newline at end of file
diff --git a/src/packages/people/pages/activity-mien/index.vue b/src/packages/people/pages/activity-mien/index.vue
new file mode 100644
index 0000000..f064e07
--- /dev/null
+++ b/src/packages/people/pages/activity-mien/index.vue
@@ -0,0 +1,214 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ NO.{{index+1}}
+ 惠苑路社区西南角家乐福超市对面xxxxx
+ 2023-11-23 周四
+
+ 发布者的名字
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/packages/people/pages/party-newspaper/create.vue b/src/packages/people/pages/party-newspaper/create.vue
new file mode 100644
index 0000000..b6a18e3
--- /dev/null
+++ b/src/packages/people/pages/party-newspaper/create.vue
@@ -0,0 +1,329 @@
+
+
+
+
+
+
+
+
+ 所属党委
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 常住地社区
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+ 常住小区
+ *
+
+
+
+
+
+
+
+ 楼栋(街)
+ *
+
+
+
+
+
+ 单元(巷)
+ *
+
+
+
+
+
+
+
+ 房号
+ *
+
+
+
+
+
+
+ 姓名
+ *
+
+
+
+
+
+ 性别
+ *
+
+
+ 男
+ 女
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/packages/people/pages/party-newspaper/detail.vue b/src/packages/people/pages/party-newspaper/detail.vue
new file mode 100644
index 0000000..4a9a87d
--- /dev/null
+++ b/src/packages/people/pages/party-newspaper/detail.vue
@@ -0,0 +1,231 @@
+
+
+
+
+
+
+ 标题标题标题标题标题标题标题标
+ 申领中
+
+
+ 张无忌
+ 党员志愿服务
+
+
+
+ 惠苑路社区西南角,家乐福超市对面xxxx
+
+
+
+
+
+
+
+ 申领有效期:2023-11-02~2023-12-0
+
+
+ 志愿服务
+ 90/90
+
+
+
+
+
+
+ 张文远
+
+
+
+
+ 申领
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/packages/people/pages/party-newspaper/index.vue b/src/packages/people/pages/party-newspaper/index.vue
new file mode 100644
index 0000000..e6b9e36
--- /dev/null
+++ b/src/packages/people/pages/party-newspaper/index.vue
@@ -0,0 +1,281 @@
+
+
+
+
+
+
+
+
+
+
+ 党员注册
+
+
+
+
+ 志愿服务
+
+
+
+
+
+
+ 服务中
+
+
+
+ 创造更好营商环境申报
+ 北京经开区政务服务中心联合融媒体中心策划
+
+ 申领
+
+
+
+
+
+
+ 活动风采
+
+
+
+
+
+ NO.{{index+1}}
+ 惠苑路社区西南角家乐福超市对面xxxxx
+ 2023-11-23 周四
+
+ 发布者的名字
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/packages/people/pages/volunteering/index.vue b/src/packages/people/pages/volunteering/index.vue
new file mode 100644
index 0000000..5a8a0e2
--- /dev/null
+++ b/src/packages/people/pages/volunteering/index.vue
@@ -0,0 +1,336 @@
+
+
+
+
+
+
+
+
+ 点单类型
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+ 标题
+ *
+
+
+
+
+
+
+
+ 内容
+ *
+
+
+
+
+
+
+
+ 附件不超过9个,每个大小不超过1M
+
+
+
+
+ 所需人数
+ *
+
+
+
+
+
+
+ 发布者
+ *
+
+
+
+
+
+
+ 申领有效期
+ *
+
+
+
+
+
+
+
+ 申领有效期
+ *
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 服务状态
+ *
+
+
+
+
+
+
+
+
+
+
+
+ 发布信息
+ 发布信息
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/pages.json b/src/pages.json
index 414ae04..9ee0e89 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -231,6 +231,31 @@
"path": "pages/ai-im/ai-im",
"name": "people",
"style": {}
+ },
+ {
+ "path": "pages/party-newspaper/index",
+ "name": "people",
+ "style": {}
+ },
+ {
+ "path": "pages/party-newspaper/detail",
+ "name": "people",
+ "style": {}
+ },
+ {
+ "path": "pages/party-newspaper/create",
+ "name": "people",
+ "style": {}
+ },
+ {
+ "path": "pages/activity-mien/index",
+ "name": "people",
+ "style": {}
+ },
+ {
+ "path": "pages/volunteering/index",
+ "name": "people",
+ "style": {}
}
]
},