|
@@ -2,12 +2,12 @@
|
|
<view class="container">
|
|
<view class="container">
|
|
<view class="top">
|
|
<view class="top">
|
|
<!-- <view class="name">合作商家:肇庆</view> -->
|
|
<!-- <view class="name">合作商家:肇庆</view> -->
|
|
- <view class="rest">余额:{{total.balance||'0'}}</view>
|
|
|
|
|
|
+ <view class="rest">余额:{{$xy.delMoney(total.balance)||'0'}}</view>
|
|
<view class="flex">
|
|
<view class="flex">
|
|
<view class="total">
|
|
<view class="total">
|
|
- 累计:{{total.sumBalance||'0'}}
|
|
|
|
|
|
+ 累计:{{$xy.delMoney(total.sumBalance)||'0'}}
|
|
</view>
|
|
</view>
|
|
- <view class="guarantee">保证金:{{total.refundVouchBalance||'0'}}</view>
|
|
|
|
|
|
+ <view class="guarantee">保证金:{{$xy.delMoney(total.refundVouchBalance)||'0'}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="setting" @click="$tab.navigateTo('/pages/setting')">
|
|
<view class="setting" @click="$tab.navigateTo('/pages/setting')">
|
|
设置
|
|
设置
|
|
@@ -30,7 +30,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
- <view class="list-item flex justify-between" v-else>
|
|
|
|
|
|
+ <view class="list-item flex justify-between align-center" v-else>
|
|
<view class="time">
|
|
<view class="time">
|
|
<view class="status">
|
|
<view class="status">
|
|
{{item.status}}
|
|
{{item.status}}
|
|
@@ -90,14 +90,12 @@
|
|
let scrollview = ref(null)
|
|
let scrollview = ref(null)
|
|
let fullHeight = ref(0)
|
|
let fullHeight = ref(0)
|
|
|
|
|
|
- console.log(123)
|
|
|
|
-
|
|
|
|
onBeforeMount(() => {
|
|
onBeforeMount(() => {
|
|
//统计数据
|
|
//统计数据
|
|
getTotal()
|
|
getTotal()
|
|
//获取列表
|
|
//获取列表
|
|
- reset()
|
|
|
|
- getList()
|
|
|
|
|
|
+ // reset()
|
|
|
|
+ // getList()
|
|
})
|
|
})
|
|
|
|
|
|
onMounted(async () => {
|
|
onMounted(async () => {
|
|
@@ -264,8 +262,10 @@
|
|
right: 24rpx;
|
|
right: 24rpx;
|
|
top: 50rpx;
|
|
top: 50rpx;
|
|
font-size: 28rpx;
|
|
font-size: 28rpx;
|
|
- box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 9px 0px;
|
|
|
|
padding: 12rpx 20rpx;
|
|
padding: 12rpx 20rpx;
|
|
|
|
+ background-color: #2C6FF3;
|
|
|
|
+ color:#fff;
|
|
|
|
+ border-radius: 14rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -278,8 +278,19 @@
|
|
}
|
|
}
|
|
|
|
|
|
.scroll-content {
|
|
.scroll-content {
|
|
|
|
+ padding-top: 12rpx;
|
|
.list-item {
|
|
.list-item {
|
|
- background-color: red;
|
|
|
|
|
|
+ width:702rpx;
|
|
|
|
+ padding:24rpx;
|
|
|
|
+ margin-left: 24rpx;
|
|
|
|
+ margin-bottom: 20rpx;
|
|
|
|
+ box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 9px 0px;
|
|
|
|
+ line-height: 60rpx;
|
|
|
|
+ .val{
|
|
|
|
+ font-size:32rpx;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color:red;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|