From 8a600afd4fab59f0f9900b6a036c55611a37c016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=A8=E6=A0=88=E5=B0=8F=E5=AD=A6=E7=94=9F?= <1518079521@qq.com> Date: Sat, 20 May 2023 18:12:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0uni-app?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni-app/App.vue | 27 +- uni-app/api/auth.ts | 7 + uni-app/api/member.ts | 121 ++++++- uni-app/components/diy/comp-extend/index.vue | 20 ++ .../diy/extend/hello-info/index.vue | 24 ++ .../diy/extend/hello-text/index.vue | 24 ++ uni-app/components/diy/group/index.vue | 23 +- uni-app/components/diy/member-info/index.vue | 120 ------- .../diy/{ => system}/article/index.vue | 0 .../diy/{ => system}/graphic-nav/index.vue | 10 +- .../diy/{ => system}/horz-blank/index.vue | 0 .../diy/{ => system}/image-ads/index.vue | 0 .../diy/system/member-info/index.vue | 174 ++++++++++ .../diy/{ => system}/text/index.vue | 0 .../information-filling.vue | 6 +- uni-app/components/pay/pay.vue | 317 ++++++++--------- uni-app/components/tabbar/tabbar.vue | 52 +-- uni-app/hooks/useCaptcha.ts | 8 +- uni-app/hooks/useLogin.ts | 15 +- uni-app/hooks/useSendSms.ts | 3 +- uni-app/hooks/useShare.ts | 74 ++-- uni-app/locale/zh-Hans.json | 27 +- uni-app/locale/zh-Hans/common.json | 8 +- .../locale/zh-Hans/pages.member.account.json | 7 + .../zh-Hans/pages.member.account_edit.json | 17 + .../zh-Hans/pages.member.apply_cash_out.json | 29 ++ .../locale/zh-Hans/pages.member.balance.json | 9 +- .../locale/zh-Hans/pages.member.cash_out.json | 11 + .../zh-Hans/pages.member.cash_out_detail.json | 12 + .../zh-Hans/pages.member.commission.json | 14 + .../pages.member.detailed_account.json | 6 + .../locale/zh-Hans/pages.member.personal.json | 12 - .../zh-Hans/pages.member.recharge_record.json | 4 + .../pages.member.recharge_record_detail.json | 12 + .../pages.member.withdrawal_detail.json | 13 + uni-app/pages.json | 275 ++++++++++----- uni-app/pages/index/diy.vue | 22 +- uni-app/pages/index/index.vue | 19 +- uni-app/pages/member/account.vue | 77 +++++ uni-app/pages/member/account_edit.vue | 153 +++++++++ uni-app/pages/member/apply_cash_out.vue | 278 +++++++++++++++ uni-app/pages/member/balance.vue | 324 +++++++----------- uni-app/pages/member/cash_out.vue | 76 ++++ uni-app/pages/member/cash_out_detail.vue | 77 +++++ uni-app/pages/member/commission.vue | 53 +++ uni-app/pages/member/detailed_account.vue | 83 +++++ uni-app/pages/member/index.vue | 18 +- uni-app/pages/member/personal.vue | 12 +- uni-app/pages/member/recharge_record.vue | 80 +++++ .../pages/member/recharge_record_detail.vue | 77 +++++ uni-app/static/logo.png | Bin 4023 -> 0 bytes uni-app/stores/member.ts | 12 +- uni-app/styles/account_info.scss | 41 +++ uni-app/styles/iconfont.css | 87 +++-- uni-app/styles/member_record_detail.scss | 25 ++ uni-app/styles/member_record_list.scss | 21 ++ uni-app/utils/common.ts | 10 +- uni-app/utils/interceptor.ts | 16 +- uni-app/utils/request.ts | 18 +- uni-app/utils/wechat.ts | 7 +- 60 files changed, 2310 insertions(+), 757 deletions(-) create mode 100644 uni-app/components/diy/comp-extend/index.vue create mode 100644 uni-app/components/diy/extend/hello-info/index.vue create mode 100644 uni-app/components/diy/extend/hello-text/index.vue delete mode 100644 uni-app/components/diy/member-info/index.vue rename uni-app/components/diy/{ => system}/article/index.vue (100%) rename uni-app/components/diy/{ => system}/graphic-nav/index.vue (97%) rename uni-app/components/diy/{ => system}/horz-blank/index.vue (100%) rename uni-app/components/diy/{ => system}/image-ads/index.vue (100%) create mode 100644 uni-app/components/diy/system/member-info/index.vue rename uni-app/components/diy/{ => system}/text/index.vue (100%) create mode 100644 uni-app/locale/zh-Hans/pages.member.account.json create mode 100644 uni-app/locale/zh-Hans/pages.member.account_edit.json create mode 100644 uni-app/locale/zh-Hans/pages.member.apply_cash_out.json create mode 100644 uni-app/locale/zh-Hans/pages.member.cash_out.json create mode 100644 uni-app/locale/zh-Hans/pages.member.cash_out_detail.json create mode 100644 uni-app/locale/zh-Hans/pages.member.commission.json create mode 100644 uni-app/locale/zh-Hans/pages.member.detailed_account.json delete mode 100644 uni-app/locale/zh-Hans/pages.member.personal.json create mode 100644 uni-app/locale/zh-Hans/pages.member.recharge_record.json create mode 100644 uni-app/locale/zh-Hans/pages.member.recharge_record_detail.json create mode 100644 uni-app/locale/zh-Hans/pages.member.withdrawal_detail.json create mode 100644 uni-app/pages/member/account.vue create mode 100644 uni-app/pages/member/account_edit.vue create mode 100644 uni-app/pages/member/apply_cash_out.vue create mode 100644 uni-app/pages/member/cash_out.vue create mode 100644 uni-app/pages/member/cash_out_detail.vue create mode 100644 uni-app/pages/member/commission.vue create mode 100644 uni-app/pages/member/detailed_account.vue create mode 100644 uni-app/pages/member/recharge_record.vue create mode 100644 uni-app/pages/member/recharge_record_detail.vue delete mode 100644 uni-app/static/logo.png create mode 100644 uni-app/styles/account_info.scss create mode 100644 uni-app/styles/member_record_detail.scss create mode 100644 uni-app/styles/member_record_list.scss diff --git a/uni-app/App.vue b/uni-app/App.vue index b1529b849..232a87d9e 100644 --- a/uni-app/App.vue +++ b/uni-app/App.vue @@ -1,37 +1,40 @@ + diff --git a/uni-app/components/diy/extend/hello-info/index.vue b/uni-app/components/diy/extend/hello-info/index.vue new file mode 100644 index 000000000..34d1158bc --- /dev/null +++ b/uni-app/components/diy/extend/hello-info/index.vue @@ -0,0 +1,24 @@ + + + + + \ No newline at end of file diff --git a/uni-app/components/diy/extend/hello-text/index.vue b/uni-app/components/diy/extend/hello-text/index.vue new file mode 100644 index 000000000..675230e9e --- /dev/null +++ b/uni-app/components/diy/extend/hello-text/index.vue @@ -0,0 +1,24 @@ + + + + + \ No newline at end of file diff --git a/uni-app/components/diy/group/index.vue b/uni-app/components/diy/group/index.vue index fdb8c9100..ff8f20937 100644 --- a/uni-app/components/diy/group/index.vue +++ b/uni-app/components/diy/group/index.vue @@ -6,35 +6,41 @@ + + + @@ -43,7 +49,7 @@ - - \ No newline at end of file diff --git a/uni-app/components/diy/article/index.vue b/uni-app/components/diy/system/article/index.vue similarity index 100% rename from uni-app/components/diy/article/index.vue rename to uni-app/components/diy/system/article/index.vue diff --git a/uni-app/components/diy/graphic-nav/index.vue b/uni-app/components/diy/system/graphic-nav/index.vue similarity index 97% rename from uni-app/components/diy/graphic-nav/index.vue rename to uni-app/components/diy/system/graphic-nav/index.vue index cd6dc25e8..679653a4e 100644 --- a/uni-app/components/diy/graphic-nav/index.vue +++ b/uni-app/components/diy/system/graphic-nav/index.vue @@ -1,12 +1,12 @@