123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <template>
- <view class="box">
- <view class="headerView">
- <view class="leftTitle">累计提现: <text class="rightMoney">¥9584.32</text></view>
- <view class="leftTitle">提现中: <text class="rightMoney">¥9584.32</text></view>
- </view>
-
-
-
- <view v-for="(item,index) in arr" :key="index" >
- <view class="itemBg">
- <view class="first">
- <view class="time">2022-02-32 12:43:23</view>
- <view class="state">待审核</view>
- </view>
- <view class="second">
- <view class="name">战神 1394847393</view>
- <view class="monty">¥13.21</view>
- </view>
-
- <view class="content">拒绝原因:支付宝账户不对</view>
- </view>
- </view>
-
-
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- arr:[1,2,3],
-
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- .box {
- min-height: 100vh;
- background: #F4F5F7;
- }
- .headerView{
- padding: 20rpx 16rpx;
-
- display: flex;
- justify-content: space-between;
- }
- .leftTitle{
- font-size: 26rpx;
- color: #999999;
- }
- .rightMoney{
- font-size: 26rpx;
- color: #3C3C3C;
- font-weight: bold;
- }
- .itemBg{
- margin: 0 16rpx 20rpx;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- padding: 30rpx 20rpx;
- }
- .first{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .second{
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 15rpx;
- }
- .content{
- margin-top: 15rpx;
- }
- .time{
- font-size: 28rpx;
- color: #999999;
- }
- .name{
- font-size: 28rpx;
- color: #3C3C3C;
- }
- .monty {
-
- font-size: 38rpx;
- font-weight: bold;
- color: #000000;
- }
- .content{
- font-size: 28rpx;
- color: #666666;
- }
- </style>
|