104 lines
2.3 KiB
Vue
104 lines
2.3 KiB
Vue
<template>
|
|
<view class="wallet">
|
|
<view class="bg"></view>
|
|
<view class="block">
|
|
<view class="bg-white balance u-m-l-16 u-m-r-16 br24 column-center">
|
|
<view>账户余额(元)</view>
|
|
<view class="u-m-t-14 bold-600 xxl">¥ 0.00</view>
|
|
</view>
|
|
|
|
<view class="bg-white wallet-btn u-m-t-24 u-m-l-16 u-m-r-16 row-between br24">
|
|
<view>
|
|
<navigator hover-class="none" url="/pages/recharge/balance" class="row">
|
|
<u-image :src="cloudPath + 'img/icon_my_wallet.png'" width="56" height="56"></u-image>
|
|
<text class="u-m-l-18 nr">充值</text>
|
|
</navigator>
|
|
</view>
|
|
<view>
|
|
<u-line color="#EEE" direction="col" length="60"/>
|
|
</view>
|
|
<view>
|
|
<navigator hover-class="none" url="/pages/recharge/balance" class="row">
|
|
<u-image :src="cloudPath + 'img/icon_my_wallet_record.png'" width="56" height="56"></u-image>
|
|
<text class="u-m-l-18 nr">充值记录</text>
|
|
</navigator>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="list bg-white br16 u-p-32">
|
|
<view class="lg">钱包明细</view>
|
|
<view class="u-m-t-16">
|
|
<view class="u-m-b-16">
|
|
<view class="nr row-between">
|
|
<view>消费</view>
|
|
<view class="deduct">-2000</view>
|
|
</view>
|
|
<view class="date xs u-m-t-16">2022-12-24 16:32:44</view>
|
|
</view>
|
|
|
|
<view class="u-m-b-16">
|
|
<view class="nr row-between">
|
|
<view>消费</view>
|
|
<view class="deduct">-2000</view>
|
|
</view>
|
|
<view class="date xs u-m-t-16">2022-12-24 16:32:44</view>
|
|
</view>
|
|
|
|
<view class="u-m-b-16">
|
|
<view class="nr row-between">
|
|
<view>消费</view>
|
|
<view class="deduct">-2000</view>
|
|
</view>
|
|
<view class="date xs u-m-t-16">2022-12-24 16:32:44</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.wallet {
|
|
position: relative;
|
|
}
|
|
.bg {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: #517AAD;
|
|
height: 320rpx;
|
|
}
|
|
|
|
.block {
|
|
position: absolute;
|
|
top: 24rpx;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.balance {
|
|
height: 209rpx;
|
|
}
|
|
|
|
.wallet-btn {
|
|
height: 150rpx;
|
|
padding: 0 100rpx;
|
|
}
|
|
|
|
.list {
|
|
margin: 22rpx 34rpx;
|
|
height: 962rpx;
|
|
box-shadow: 0rpx 6rpx 28rpx 4rpx rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.deduct {
|
|
color: rgba(0, 0, 0, 0.6)
|
|
}
|
|
|
|
.date {
|
|
color: rgba(0, 0, 0, 0.4)
|
|
}
|
|
</style> |