From 0fa8736ed30c1939be84e67985cb53ae5c2dba2f Mon Sep 17 00:00:00 2001 From: zhangdongxue Date: Fri, 17 Sep 2021 15:34:25 +0800 Subject: [PATCH] =?UTF-8?q?['=E6=88=91=E7=9A=84=E6=8E=A8=E5=B9=BF=E4=BA=8C?= =?UTF-8?q?=E7=BB=B4=E7=A0=81=E5=B1=95=E7=A4=BA=E5=BD=A2=E5=BC=8F=E5=8F=8A?= =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E4=B8=AD=E4=B8=AD=E5=BF=83=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E5=AF=B9=E6=8E=A5']?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apis/interfaces/mine.js | 11 +++- pages.json | 8 ++- pages/property/index.vue | 115 +++++++++++++++++++++++++---------- pages/verification/index.vue | 21 ++++++- static/images/hexiao_bg.png | Bin 0 -> 55447 bytes static/images/share_bg_3.png | Bin 0 -> 48557 bytes 6 files changed, 116 insertions(+), 39 deletions(-) create mode 100644 static/images/hexiao_bg.png create mode 100644 static/images/share_bg_3.png diff --git a/apis/interfaces/mine.js b/apis/interfaces/mine.js index c9836ff..9ffb88c 100644 --- a/apis/interfaces/mine.js +++ b/apis/interfaces/mine.js @@ -34,7 +34,7 @@ const aboutUs = () => { // 获取用户信息 const getUserInfo = () => { return request({ - url: 'user/info' + url: 'user/app' }) } @@ -77,6 +77,12 @@ const resetUserInfo= (data) => { }) } +// 我的推广码 +const appcode = () => { + return request({ + url: 'user/appcode' + }) +} export { shopSubscribe, @@ -86,5 +92,6 @@ export { getUserSettingInfo, chaineb, browsers, - resetUserInfo + resetUserInfo, + appcode } diff --git a/pages.json b/pages.json index 98318e8..20e3586 100644 --- a/pages.json +++ b/pages.json @@ -451,13 +451,17 @@ "path": "pages/verification/index", "name": "Verification", "style": { - "navigationBarTitleText": "扫码验证" + "navigationBarTitleText": "扫码验证", + "navigationBarTextStyle": "white", + "navigationBarBackgroundColor": "#f40c50" } }, { "path": "pages/verification/details", "name": "VerificationDetails", "style": { - "navigationBarTitleText": "核销券详情" + "navigationBarTitleText": "核销券详情", + "navigationBarTextStyle": "white", + "navigationBarBackgroundColor": "#f40c50" } }, { "path": "pages/shop/lists", diff --git a/pages/property/index.vue b/pages/property/index.vue index 1395b75..a11e96c 100644 --- a/pages/property/index.vue +++ b/pages/property/index.vue @@ -1,17 +1,17 @@