From 42e8bb0a11e7878a3f6d8575f56273a5007672c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=B0=91=E5=BA=B7?= Date: Mon, 11 Sep 2023 17:22:48 +0800 Subject: [PATCH] xx --- app.json | 3 +- app.wxss | 7 +- pages/collect/index.js | 12 +-- pages/index/index.wxml | 8 +- pages/mine/addCard/index.wxml | 5 +- pages/mine/changeGender/index.wxml | 2 +- pages/mine/index.js | 15 ++- pages/mine/index.wxml | 71 ++++++++++--- pages/mine/index.wxss | 45 +++++++- pages/mine/wxMoney/index.js | 205 +++++++++++++++++++++++++++++++++++++ pages/mine/wxMoney/index.json | 5 + pages/mine/wxMoney/index.wxml | 22 ++++ pages/mine/wxMoney/index.wxss | 34 ++++++ 13 files changed, 398 insertions(+), 36 deletions(-) create mode 100644 pages/mine/wxMoney/index.js create mode 100644 pages/mine/wxMoney/index.json create mode 100644 pages/mine/wxMoney/index.wxml create mode 100644 pages/mine/wxMoney/index.wxss diff --git a/app.json b/app.json index 81d259f..2e6fc07 100644 --- a/app.json +++ b/app.json @@ -33,7 +33,8 @@ "pages/mine/seeIdCard/index", "pages/mine/versionPage/index", "pages/mine/myJob/index", - + + "pages/mine/wxMoney/index", "pages/message/index", "pages/messageDetail/index", diff --git a/app.wxss b/app.wxss index c965b64..543ef2e 100644 --- a/app.wxss +++ b/app.wxss @@ -4,7 +4,8 @@ page { height: 100vh; background: #f5f5f5; - --color-ysd: #0dcc91; + --color-ysd: #0dcc91; + --color-ysd-bg:#E8FFF8; --color-hover: #3DD6A7; --color-be: #ff4400; --color-f40: #ff4400; @@ -2027,4 +2028,8 @@ page { width: 56px; color: #666; text-align: center; +} +.btnHover,.loginBtn:active,.loginOut:active{ + color: #fff; + background-color: var(--color-hover) !important; } \ No newline at end of file diff --git a/pages/collect/index.js b/pages/collect/index.js index e8d6631..54f2a5c 100644 --- a/pages/collect/index.js +++ b/pages/collect/index.js @@ -1101,17 +1101,7 @@ Page({ }, onReady() { let that = this; - var query = wx.createSelectorQuery(); - query.select(".navigator").boundingClientRect(); - query.exec(function (res) { - //res就是 所有标签为v1的元素的信息 的数组 - console.log(res); - //取高度 - console.log(res[0].height); - that.setData({ - navigatorBarHeight: res[0].height + 15, - }); - }); + }, /** * 智能匹配结束 diff --git a/pages/index/index.wxml b/pages/index/index.wxml index 9532ee4..f711d72 100644 --- a/pages/index/index.wxml +++ b/pages/index/index.wxml @@ -56,9 +56,9 @@ 全部 - + @@ -473,7 +473,7 @@ - + diff --git a/pages/mine/addCard/index.wxml b/pages/mine/addCard/index.wxml index 7d81465..30cf9ab 100644 --- a/pages/mine/addCard/index.wxml +++ b/pages/mine/addCard/index.wxml @@ -15,15 +15,14 @@ {{item.bankNo}} - + + --> diff --git a/pages/mine/changeGender/index.wxml b/pages/mine/changeGender/index.wxml index 993fc6b..2f5b33e 100644 --- a/pages/mine/changeGender/index.wxml +++ b/pages/mine/changeGender/index.wxml @@ -1,7 +1,7 @@ - - + @@ -69,13 +88,12 @@ 我的服务 - - + @@ -84,12 +102,12 @@ - + + + + + + + + + 反馈与建议 + + + + + + - + - + @@ -174,6 +207,20 @@ + + + + + + + + 商家后台 + + + + + + + + + + + 提现明细 + + + + + + \ No newline at end of file diff --git a/pages/mine/wxMoney/index.wxss b/pages/mine/wxMoney/index.wxss new file mode 100644 index 0000000..6b23c38 --- /dev/null +++ b/pages/mine/wxMoney/index.wxss @@ -0,0 +1,34 @@ +page{ + background-color: #f5f5f5; +} +.icon-zhanghuyue{ + font-size: 50px; + display: block; + padding-top: 60px; + color: var(--color-ysd); +} +.wxMoney{ + margin-top: 12px; + font-size: 40px; +font-weight: 601; +color: #333333; +line-height: 40px; +display: inline-flex; + align-items: flex-start; +} +.moneyFu{ + font-size: 26px; +font-weight: 601; +color: #333333; +line-height: 30px; +/* vertical-align: top; */ +} +.txmx{ + margin-top: 10px; + font-size: 14px; + + font-weight: 400; + text-align: center; + color: var(--color-ysd); + line-height: 28px; +} \ No newline at end of file