From 134c7e51d33dfd0cdb9e7d47b22d181ebc1bcdc8 Mon Sep 17 00:00:00 2001 From: Liuyi <candymxq888@outlook.com> Date: 星期一, 07 十月 2024 17:27:20 +0800 Subject: [PATCH] 添加用户详情页,修改主页用户及会员卡信息 --- unpackage/dist/dev/mp-weixin/pages/balanceRecord/index.wxss | 82 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 82 insertions(+), 0 deletions(-) diff --git a/unpackage/dist/dev/mp-weixin/pages/balanceRecord/index.wxss b/unpackage/dist/dev/mp-weixin/pages/balanceRecord/index.wxss index f02efd8..48fdf86 100644 --- a/unpackage/dist/dev/mp-weixin/pages/balanceRecord/index.wxss +++ b/unpackage/dist/dev/mp-weixin/pages/balanceRecord/index.wxss @@ -26,4 +26,86 @@ .container { width: 100%; height: 100vh; + background: linear-gradient(to top, #FFFFFF, #E8EFFF); +} +.container .date { + height: 84rpx; + width: 100%; + display: flex; + padding: 0 36rpx; + box-sizing: border-box; + justify-content: space-between; + align-items: center; +} +.container .date view:first-child { + font-weight: 300; + font-size: 32rpx; + color: #000000; +} +.container .date view:last-child { + font-weight: 300; + font-size: 24rpx; + color: #7E7E7E; +} +.container .date view:last-child text:first-child { + margin-right: 30rpx; +} +.container .main { + width: 99%; + height: calc(100vh - 84rpx - 176rpx - 70rpx); + background: #fff; + border-radius: 20rpx; + margin: 0 auto; + padding: 28rpx 48rpx; + box-sizing: border-box; + overflow-y: scroll; +} +.container .main .item { + width: 100%; + height: 184rpx; + border-bottom: 1rpx solid #D8D8D8; + box-sizing: border-box; + padding-bottom: 38rpx; + justify-content: space-between; + align-items: flex-end; + display: flex; +} +.container .main .item .item-left { + height: 100%; + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: flex-start; +} +.container .main .item .item-left text:first-child { + font-weight: 300; + font-size: 32rpx; + color: #000000; +} +.container .main .item .item-left .methods { + font-weight: 300; + font-size: 32rpx; + color: #474646; +} +.container .main .item .item-left text:last-child { + font-weight: 300; + font-size: 24rpx; + color: #A7A7A7; +} +.container .main .item .item-right { + height: 100%; + display: flex; + flex-direction: column; + justify-content: flex-end; + align-items: flex-end; +} +.container .main .item .item-right text:first-child { + font-weight: 300; + font-size: 32rpx; + color: #000000; +} +.container .main .item .item-right text:last-child { + font-weight: 300; + font-size: 24rpx; + color: #A7A7A7; } \ No newline at end of file -- Gitblit v1.9.3