From 5f257aaa6370045a9cbd909606773ee058a51dd0 Mon Sep 17 00:00:00 2001 From: Ankkaya Date: Mon, 17 Jun 2024 18:16:46 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=A7=AF=E5=88=86)=EF=BC=9A=E7=A7=AF?= =?UTF-8?q?=E5=88=86=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env | 5 +- pages.json | 3 +- pages/index/index.vue | 25 +- pages/index/my.vue | 19 +- pages/user/point/buy.vue | 275 ++++---- pages/user/point/loglist.vue | 157 +++-- pages/user/point/share.vue | 293 +++++--- pages/user/wallet/money.vue | 4 +- peach/api/member/user.js | 17 + peach/api/pay/point.js | 28 + .../components/p-menu-tools/p-menu-tools.vue | 114 ++++ peach/helper/index.js | 27 + peach/platform/index.js | 37 + peach/platform/provider/android/index.js | 95 +++ peach/ui/pb-inner-navbar/pb-inner-navbar.vue | 636 +++++++++--------- peach/ui/pb-layout/pb-layout.vue | 317 +++++---- static/point.png | Bin 0 -> 87132 bytes 17 files changed, 1295 insertions(+), 757 deletions(-) create mode 100644 peach/api/pay/point.js create mode 100644 peach/components/p-menu-tools/p-menu-tools.vue create mode 100644 peach/platform/provider/android/index.js create mode 100644 static/point.png diff --git a/.env b/.env index 7e7b528..d69df8d 100644 --- a/.env +++ b/.env @@ -17,4 +17,7 @@ MALL_DEV_PORT = 3000 MALL_STATIC_URL = https://file.sheepjs.com # 是否开启直播 1 开启直播 | 0 关闭直播 (小程序官方后台未审核开通直播权限时请勿开启) -MALL_MPLIVE_ON = 0 \ No newline at end of file +MALL_MPLIVE_ON = 0 + +# APP 下载地址 +MALL_APP_DOWNLOAD_PATH = '' \ No newline at end of file diff --git a/pages.json b/pages.json index 6a8eee2..20c9dfa 100644 --- a/pages.json +++ b/pages.json @@ -147,7 +147,8 @@ { "path": "point/loglist", "style": { - "navigationBarTitleText": "历史积分" + "navigationBarTitleText": "历史积分", + "enablePullDownRefresh": true }, "meta": { "auth": true diff --git a/pages/index/index.vue b/pages/index/index.vue index d196ebc..ee17f3d 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1,12 +1,17 @@