aaa
This commit is contained in:
parent
d7763b5923
commit
ed4965f92a
|
@ -23,23 +23,29 @@
|
||||||
<view class="text" v-if="list.status == 6">
|
<view class="text" v-if="list.status == 6">
|
||||||
支付中
|
支付中
|
||||||
</view>
|
</view>
|
||||||
<view class="num">
|
<view class="num" v-if="list.type == 1">
|
||||||
{{list.suitTime}} 分钟
|
{{list.suitTime}} 分钟
|
||||||
</view>
|
</view>
|
||||||
<view class="text">
|
<view class="text" v-if="list.type == 1">
|
||||||
充值金额{{list.money}}
|
充值金额{{list.money}}
|
||||||
</view>
|
</view>
|
||||||
|
<view class="nums" v-if="list.type == 2">
|
||||||
|
提现金额{{list.money}}
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="card_bot">
|
<view class="card_bot">
|
||||||
<view class="info_li">
|
<view class="info_li">
|
||||||
<view class="text">
|
<view class="text" v-if="list.type == 1">
|
||||||
到账日期
|
到账日期
|
||||||
</view>
|
</view>
|
||||||
|
<view class="text" v-if="list.type == 2">
|
||||||
|
提现日期
|
||||||
|
</view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
{{list.createTime}}
|
{{list.createTime}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info_li">
|
<view class="info_li" v-if="list.type == 1">
|
||||||
<view class="text">
|
<view class="text">
|
||||||
充值设备
|
充值设备
|
||||||
</view>
|
</view>
|
||||||
|
@ -48,17 +54,23 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info_li">
|
<view class="info_li">
|
||||||
<view class="text">
|
<view class="text" v-if="list.type == 1">
|
||||||
充值类型
|
充值类型
|
||||||
</view>
|
</view>
|
||||||
|
<view class="text" v-if="list.type == 2">
|
||||||
|
提现类型
|
||||||
|
</view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
{{list.channelName}}
|
{{list.channelName}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info_li">
|
<view class="info_li">
|
||||||
<view class="text">
|
<view class="text" v-if="list.type == 1">
|
||||||
充值用户
|
充值用户
|
||||||
</view>
|
</view>
|
||||||
|
<view class="text" v-if="list.type == 2">
|
||||||
|
提现用户
|
||||||
|
</view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
{{list.userName}}
|
{{list.userName}}
|
||||||
</view>
|
</view>
|
||||||
|
@ -131,13 +143,14 @@
|
||||||
|
|
||||||
.cardtop {
|
.cardtop {
|
||||||
margin-top: 48rpx;
|
margin-top: 48rpx;
|
||||||
|
height: 190rpx;
|
||||||
// display: flex;
|
// display: flex;
|
||||||
// flex-wrap: wrap;
|
// flex-wrap: wrap;
|
||||||
// justify-content: center;
|
// justify-content: center;
|
||||||
.text {
|
.text {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: 20rpx;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
color: #808080;
|
color: #808080;
|
||||||
|
@ -151,6 +164,14 @@
|
||||||
font-size: 60rpx;
|
font-size: 60rpx;
|
||||||
color: #8883F0;
|
color: #8883F0;
|
||||||
}
|
}
|
||||||
|
.nums {
|
||||||
|
text-align: center;
|
||||||
|
padding-top: 48rpx;
|
||||||
|
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 60rpx;
|
||||||
|
color: #8883F0;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,13 +6,14 @@
|
||||||
|
|
||||||
<view class="cards" v-for="(item,index) in wateringList" :key="index" @click="btndetail(item.billId)" @scrolltolower="onReachBottom">
|
<view class="cards" v-for="(item,index) in wateringList" :key="index" @click="btndetail(item.billId)" @scrolltolower="onReachBottom">
|
||||||
<view class="card_left">
|
<view class="card_left">
|
||||||
<view class="top">用户充值</view>
|
<view class="top" v-if="item.type == 1">用户充值</view>
|
||||||
|
<view class="top" v-if="item.type == 2">商户提现</view>
|
||||||
<view class="bot">
|
<view class="bot">
|
||||||
{{item.createTime}}
|
{{item.createTime}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="card_right">
|
<view class="card_right">
|
||||||
<view class="top">{{item.suitTime}}分钟</view>
|
<view class="top" v-if="item.type == 1">{{item.suitTime}}分钟</view>
|
||||||
<view class="bot">
|
<view class="bot">
|
||||||
¥{{item.money}}
|
¥{{item.money}}
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
title-size='44' height='48' id="navbar">
|
title-size='44' height='48' id="navbar">
|
||||||
</u-navbar>
|
</u-navbar>
|
||||||
|
|
||||||
<view v-if="userType=='01'">
|
<view v-if="userType=='01'" style="padding-top: 30rpx;">
|
||||||
<!-- <view class="title">
|
<!-- <view class="title">
|
||||||
统计
|
统计
|
||||||
</view> -->
|
</view> -->
|
||||||
|
@ -467,7 +467,7 @@
|
||||||
padding-top: 32rpx;
|
padding-top: 32rpx;
|
||||||
margin-top: 10rpx;
|
margin-top: 10rpx;
|
||||||
width: 632rpx;
|
width: 632rpx;
|
||||||
height: 586rpx;
|
height: 540rpx;
|
||||||
background: #8883F0;
|
background: #8883F0;
|
||||||
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
@ -516,7 +516,8 @@
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
margin-top: 16rpx;
|
margin-top: 16rpx;
|
||||||
|
height: 600rpx;
|
||||||
|
overflow: auto;
|
||||||
// height:280rpx;
|
// height:280rpx;
|
||||||
// overflow-y: scroll;
|
// overflow-y: scroll;
|
||||||
.card_list {
|
.card_list {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user