aaa
This commit is contained in:
parent
5fea3988c2
commit
8568a45885
|
@ -1,6 +1,6 @@
|
|||
const install = (Vue, vm) => {
|
||||
Vue.prototype.$u.http.setConfig({
|
||||
baseUrl: 'http://192.168.2.24:3100/dev-api',
|
||||
baseUrl: 'http://192.168.2.88:3100/dev-api',
|
||||
// baseUrl: 'https://znb.ccttiot.com',
|
||||
loadingText: '努力加载中~',
|
||||
loadingTime: 800,
|
||||
|
|
|
@ -11,9 +11,10 @@
|
|||
<text @click="btnks(1)">{{selector}}</text> -- <text @click="btnks(2)">{{selectors}}</text>
|
||||
</view>
|
||||
|
||||
<view class="list" v-for="(item,index) in 3" :key="index" @click="btnxq">
|
||||
<view class="list" @scrolltolower="onReachBottom" v-for="(item,index) in 3" :key="index" @click="btnxq">
|
||||
<view class="tops">
|
||||
<view class="" style="font-size: 32rpx;color: #3D3D3D;">SDFGA5452168437113123 <u-icon name="file-text"></u-icon></view>
|
||||
<view class="" style="font-size: 32rpx;color: #3D3D3D;">SDFGA5452168437113123 <u-icon
|
||||
name="file-text"></u-icon></view>
|
||||
<view class=""><u-icon name="arrow-right"></u-icon></view>
|
||||
</view>
|
||||
<view class="list_val">
|
||||
|
@ -58,10 +59,11 @@
|
|||
</view>
|
||||
<view class="je">
|
||||
<view class="" style="font-size: 32rpx;color: #3D3D3D;">
|
||||
订单金额 <text style="font-size: 28rpx;color: #FF8157;display: inline-block;margin-left: 10rpx;">0.00</text>
|
||||
订单金额 <text
|
||||
style="font-size: 28rpx;color: #FF8157;display: inline-block;margin-left: 10rpx;">0.00</text>
|
||||
</view>
|
||||
<view class="" style="font-size: 28rpx;color: #FF8157;">
|
||||
租借中
|
||||
租借中
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
@ -90,12 +92,58 @@
|
|||
selector: '2024-4-9',
|
||||
selectors: '2024-4-9',
|
||||
num: '',
|
||||
status: '',
|
||||
|
||||
pagenum: 1,
|
||||
wateringList: [],
|
||||
pagesize: 10, // 一页多少数据
|
||||
isLoading: false, // 是否正在加载数据
|
||||
noMoreData: false, // 是否没有更多数据
|
||||
total: 0,
|
||||
keyword: '',
|
||||
showflag: false
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
this.title = option.title
|
||||
this.status = option.status
|
||||
},
|
||||
methods: {
|
||||
|
||||
getlist() {
|
||||
this.$u.get('/agent/order/rent/list?pageNum=' + this.pagenum + '&pageSize=' + this.pagesize + '&orderNo=' + 1798627633516257280 + '&status=' + this.status).then(res => {
|
||||
if (res.code == 200) {
|
||||
this.total = res.total
|
||||
if (this.total > 0) {
|
||||
this.showflag = false
|
||||
} else {
|
||||
this.showflag = true
|
||||
}
|
||||
if (res.rows.length > 0) {
|
||||
// 有数据,追加到列表
|
||||
this.wateringList = this.wateringList.concat(res.rows)
|
||||
this.pagenum++
|
||||
} else {
|
||||
// 没有更多数据
|
||||
this.noMoreData = true;
|
||||
}
|
||||
this.isLoading = false;
|
||||
}
|
||||
})
|
||||
},
|
||||
onReachBottom() {
|
||||
let sum = this.total / this.pagesize
|
||||
if (this.pagenum - 1 < sum) {
|
||||
this.getlist(); // 上拉加载更多
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '没有更多记录了',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
btnks(num) {
|
||||
this.show = true
|
||||
if (num == 1) {
|
||||
|
@ -111,9 +159,9 @@
|
|||
this.selectors = e.year + '-' + e.month + '-' + e.day
|
||||
}
|
||||
},
|
||||
btnxq(){
|
||||
btnxq() {
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/xiangqing'
|
||||
url: '/page_user/order/xiangqing'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
@ -125,17 +173,20 @@
|
|||
/deep/ .uicon-nav-back {
|
||||
padding-bottom: 40rpx;
|
||||
}
|
||||
|
||||
page {}
|
||||
|
||||
.page {
|
||||
width: 750rpx;
|
||||
|
||||
.box {
|
||||
width: 750rpx;
|
||||
height: 100%;
|
||||
padding-bottom: 200rpx;
|
||||
background: #F4F5F7;
|
||||
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
||||
.list{
|
||||
|
||||
.list {
|
||||
width: 680rpx;
|
||||
height: 490rpx;
|
||||
background: #FFFFFF;
|
||||
|
@ -144,7 +195,8 @@
|
|||
box-sizing: border-box;
|
||||
margin: auto;
|
||||
margin-bottom: 30rpx;
|
||||
.je{
|
||||
|
||||
.je {
|
||||
border-top: 1px solid #D8D8D8;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
@ -152,20 +204,24 @@
|
|||
margin-top: 20rpx;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.list_val{
|
||||
|
||||
.list_val {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 28rpx;
|
||||
.wz{
|
||||
|
||||
.wz {
|
||||
font-size: 24rpx;
|
||||
color: #808080;
|
||||
}
|
||||
.gl{
|
||||
|
||||
.gl {
|
||||
font-size: 24rpx;
|
||||
color: #3D3D3D;
|
||||
}
|
||||
}
|
||||
.tops{
|
||||
|
||||
.tops {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
|
@ -173,6 +229,7 @@
|
|||
padding-bottom: 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.top {
|
||||
padding: 28rpx 32rpx;
|
||||
box-sizing: border-box;
|
||||
|
@ -203,7 +260,8 @@
|
|||
justify-content: space-between;
|
||||
background-color: #fff;
|
||||
padding-bottom: 40rpx;
|
||||
margin-bottom: 26rpx;
|
||||
margin-bottom: 26rpx;
|
||||
|
||||
text {
|
||||
padding: 6rpx 18rpx;
|
||||
box-sizing: border-box;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<view class="shuju">
|
||||
<view class="ddje" @click="btnpage(0)">
|
||||
<view class="shu">
|
||||
322110
|
||||
{{statuobj.total}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
订单总数<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -28,7 +28,7 @@
|
|||
<text style="width: 1px;height: 60rpx;background: #979797;margin-top: 24rpx;"></text>
|
||||
<view class="ddje" @click="btnpage(1)">
|
||||
<view class="shu">
|
||||
91
|
||||
{{statuobj.renting}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
租借中<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -37,7 +37,7 @@
|
|||
<text style="width: 1px;height: 60rpx;background: #979797;margin-top: 24rpx;"></text>
|
||||
<view class="ddje" @click="btnpage(2)">
|
||||
<view class="shu">
|
||||
322023
|
||||
{{statuobj.finished}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
已完成<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -48,7 +48,7 @@
|
|||
<view class="shuju">
|
||||
<view class="ddje" @click="btnpage(3)">
|
||||
<view class="shu">
|
||||
32
|
||||
{{statuobj.popFailed}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
弹出失败<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<text style="width: 1px;height: 60rpx;background: #979797;margin-top: 24rpx;"></text>
|
||||
<view class="ddje" @click="btnpage(4)">
|
||||
<view class="shu">
|
||||
1256
|
||||
{{statuobj.sale}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
租转卖<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -66,7 +66,7 @@
|
|||
<text style="width: 1px;height: 60rpx;background: #979797;margin-top: 24rpx;"></text>
|
||||
<view class="ddje" @click="btnpage(5)">
|
||||
<view class="shu">
|
||||
5223
|
||||
{{statuobj.partRefund}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
部分退款<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -76,7 +76,7 @@
|
|||
<view class="shujus">
|
||||
<view class="ddje" @click="btnpage(6)">
|
||||
<view class="shu">
|
||||
1235
|
||||
{{statuobj.allRefund}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
已全额退款<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -85,7 +85,7 @@
|
|||
<text style="width: 1px;height: 60rpx;background: #979797;margin-top: 24rpx;margin-left: 54rpx;margin-right: 70rpx;"></text>
|
||||
<view class="ddje" @click="btnpage(7)">
|
||||
<view class="shu">
|
||||
96
|
||||
{{statuobj.waitPay}}
|
||||
</view>
|
||||
<view class="sb">
|
||||
待扣款<u-icon name="arrow-right" size="18"></u-icon>
|
||||
|
@ -114,14 +114,26 @@
|
|||
lasTime:'',
|
||||
num: '',
|
||||
dateindex: 1,
|
||||
statuobj:{}
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
let today = new Date();
|
||||
this.firsTime = this.formatDate(today);
|
||||
this.lasTime = this.formatDate(today);
|
||||
this.getlist()
|
||||
},
|
||||
onShow() {
|
||||
|
||||
},
|
||||
methods: {
|
||||
getlist(){
|
||||
this.$u.get('/agent/order/rent/indexCount?startDate=' + this.firsTime + '&endDate=' + this.lasTime).then(res=>{
|
||||
if(res.code == 200){
|
||||
this.statuobj = res.data
|
||||
}
|
||||
})
|
||||
},
|
||||
btnks(num) {
|
||||
this.show = true
|
||||
if (num == 1) {
|
||||
|
@ -132,43 +144,45 @@
|
|||
},
|
||||
confirm(e) {
|
||||
if (this.num == 1) {
|
||||
this.selector = e.year + '-' + e.month + '-' + e.day
|
||||
this.firsTime = e.year + '-' + e.month + '-' + e.day
|
||||
this.getlist()
|
||||
} else {
|
||||
this.selectors = e.year + '-' + e.month + '-' + e.day
|
||||
this.lasTime = e.year + '-' + e.month + '-' + e.day
|
||||
this.getlist()
|
||||
}
|
||||
},
|
||||
btnpage(num){
|
||||
if(num == 0){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/detailshop?title=' + '订单总数列表'
|
||||
url:'/page_user/order/detailshop?title=' + '订单总数列表' + '&status=' + ''
|
||||
})
|
||||
}else if(num == 1){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/detailshop?title=' + '租借中列表'
|
||||
url:'/page_user/order/detailshop?title=' + '租借中列表' + '&status=' + 1
|
||||
})
|
||||
}else if(num == 2){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/detailshop?title=' + '已完成列表'
|
||||
url:'/page_user/order/detailshop?title=' + '已完成列表' + '&status=' + 4
|
||||
})
|
||||
}else if(num == 3){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/yunying/gongdan/tanchu'
|
||||
url:'/page_user/order/detailshop?title=' + '弹出失败列表' + '&status=' + 7
|
||||
})
|
||||
}else if(num == 4){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/detailshop?title=' + '租转卖列表'
|
||||
url:'/page_user/order/detailshop?title=' + '租转卖列表' + '&status=' + 6
|
||||
})
|
||||
}else if(num == 5){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/detailshop?title=' + '部分退款列表'
|
||||
url:'/page_user/order/detailshop?title=' + '部分退款列表' + '&status=' + 9
|
||||
})
|
||||
}else if(num == 6){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/detailshop?title=' + '已全额退款列表'
|
||||
url:'/page_user/order/detailshop?title=' + '已全额退款列表' + '&status=' + 8
|
||||
})
|
||||
}else if(num == 7){
|
||||
uni.navigateTo({
|
||||
url:'/page_user/order/detailshop?title=' + '待扣款列表'
|
||||
url:'/page_user/order/detailshop?title=' + '待扣款列表' + '&status=' + 2
|
||||
})
|
||||
}
|
||||
},
|
||||
|
@ -179,22 +193,26 @@
|
|||
let today = new Date();
|
||||
this.firsTime = this.formatDate(today);
|
||||
this.lasTime = this.formatDate(today);
|
||||
this.getlist()
|
||||
} else if (num == 2) {
|
||||
let yesterday = new Date();
|
||||
yesterday.setDate(yesterday.getDate() - 1);
|
||||
this.firsTime = this.formatDate(yesterday);
|
||||
this.lasTime = this.formatDate(new Date());
|
||||
this.getlist()
|
||||
} else if (num == 3) {
|
||||
let today = new Date();
|
||||
let firstDayOfMonth = new Date(today.getFullYear(), today.getMonth(), today.getDate() - 6);
|
||||
this.firsTime = this.formatDate(firstDayOfMonth);
|
||||
this.lasTime = this.formatDate(new Date());
|
||||
this.getlist()
|
||||
} else if (num == 4) {
|
||||
let today = new Date();
|
||||
let firstDayOfLastMonth = new Date(today.getFullYear(), today.getMonth() - 1,today.getDate() + 1);
|
||||
let lastDayOfLastMonth = new Date(today.getFullYear(), today.getMonth(), today.getDate());
|
||||
this.firsTime = this.formatDate(firstDayOfLastMonth);
|
||||
this.lasTime = this.formatDate(lastDayOfLastMonth);
|
||||
this.getlist()
|
||||
}
|
||||
},
|
||||
formatDate(date) {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<view class="wz">电池编号:</view> <view class="gl">GFVDSG126420921</view>
|
||||
</view>
|
||||
<view class="names">
|
||||
<view class="wz">租借店铺:</view> <view class="gl" style="color: #1DBE7B;">星途自助台球棋牌室</view>
|
||||
<view class="wz" style="width: 160rpx;">租借店铺:</view> <view class="gl" style="color: #1DBE7B;">星途自助台球棋牌室</view>
|
||||
</view>
|
||||
<view class="names">
|
||||
<view class="wz">租借设备:</view> <view class="gl" style="color: #1DBE7B;">GDFFS4569875213</view>
|
||||
|
@ -23,10 +23,10 @@
|
|||
<view class="wz">租借时间:</view> <view class="gl">2024-04-11 02:58:22</view>
|
||||
</view>
|
||||
<view class="names">
|
||||
<view class="wz">租借地址:</view> <view class="gl">福建省宁德市福鼎市海口路28号途客中国酒店 (福鼎海口路)</view>
|
||||
<view class="wz" style="width: 160rpx;">租借地址:</view> <view class="gl">福建省宁德市福鼎市海口路28号途客中国酒店 (福鼎海口路)</view>
|
||||
</view>
|
||||
<view class="names">
|
||||
<view class="wz">归还店铺:</view> <view class="gl" style="color: #1DBE7B;">星途自助台球棋牌室</view>
|
||||
<view class="wz" style="width: 160rpx;">归还店铺:</view> <view class="gl" style="color: #1DBE7B;">星途自助台球棋牌室</view>
|
||||
</view>
|
||||
<view class="names">
|
||||
<view class="wz">归还设备:</view> <view class="gl" style="color: #1DBE7B;">GDFFS4569875213</view>
|
||||
|
@ -35,7 +35,7 @@
|
|||
<view class="wz">归还时间:</view> <view class="gl">2024-04-11 02:58:22</view>
|
||||
</view>
|
||||
<view class="names">
|
||||
<view class="wz">归还地址:</view> <view class="gl">福建省宁德市福鼎市海口路28号途客中国酒店 (福鼎海口路)</view>
|
||||
<view class="wz" style="width: 160rpx;">归还地址:</view> <view class="gl">福建省宁德市福鼎市海口路28号途客中国酒店 (福鼎海口路)</view>
|
||||
</view>
|
||||
<view class="names">
|
||||
<view class="wz">支付时间:</view> <view class="gl">2024-04-11 02:58:22</view>
|
||||
|
|
|
@ -37,10 +37,12 @@
|
|||
url:'/page_user/shuju/lsfx'
|
||||
})
|
||||
}else if(num == 2){
|
||||
|
||||
uni.navigateTo({
|
||||
url:'/pages/income/index?tit=' + '门店流水' + '&tits=' + '流水金额'
|
||||
})
|
||||
}else if(num == 3){
|
||||
uni.navigateTo({
|
||||
url:'/pages/income/index'
|
||||
url:'/pages/income/index?tit=' + '门店收益' + '&tits=' + '收益金额'
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<template>
|
||||
<view class="page">
|
||||
<u-navbar title="门面收益" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
<u-navbar :title="bttit" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
||||
height='58'></u-navbar>
|
||||
<view class="box">
|
||||
<view class="top">
|
||||
<u-search placeholder="搜索" input-align="center" v-model="keyword"></u-search>
|
||||
<u-search placeholder="搜索" input-align="center" v-model="keyword" @custom="seach"></u-search>
|
||||
</view>
|
||||
<u-picker mode="time" v-model="show" :params="params" @confirm="confirm"></u-picker>
|
||||
<view class="date">
|
||||
|
@ -12,10 +12,10 @@
|
|||
</view>
|
||||
<view class="jesx">
|
||||
<view class="sx">金额筛选:</view><text
|
||||
@click="btnaddid(1)">{{qishiprice == '起始金额' ? qishiprice : qishiprice + '元'}} </text>
|
||||
@click="btnaddid(1)">{{qishiprice == '' ? qishiprice + '起始金额' : qishiprice + '元'}} </text>
|
||||
--
|
||||
<text @click="btnaddid(2)">{{jieshuprice == '结束金额' ? jieshuprice : jieshuprice + '元'}} </text>
|
||||
<view class="cx">查询</view>
|
||||
<text @click="btnaddid(2)">{{jieshuprice == '' ? jieshuprice + '结束金额' : jieshuprice + '元'}} </text>
|
||||
<view class="cx" @click="btnchaxun">查询</view>
|
||||
</view>
|
||||
|
||||
|
||||
|
@ -23,10 +23,12 @@
|
|||
<view class="shoppm">
|
||||
<view class="shopname">
|
||||
<view class="one">店铺名称</view>
|
||||
<view class="two">¥收益金额(元)
|
||||
<image src="https://api.ccttiot.com/smartmeter/img/static/usFoZqC3MrePH4pqCJe7" mode="" style="display: inline-block;width: 46rpx;height: 46rpx;vertical-align: middle;"></image> </view>
|
||||
<view class="two">¥{{sytit}}(元)
|
||||
<image @click="btnpx" src="https://api.ccttiot.com/smartmeter/img/static/usFoZqC3MrePH4pqCJe7" mode=""
|
||||
style="display: inline-block;width: 46rpx;height: 46rpx;vertical-align: middle;"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="listshop" v-for="(item,index) in 11" :key="index">
|
||||
<view class="listshop" @scrolltolower="onReachBottom" v-for="(item,index) in listarr" :key="index">
|
||||
<view class="nikename">
|
||||
<text :style="{
|
||||
width: '38rpx',
|
||||
|
@ -39,11 +41,20 @@
|
|||
fontSize: '24rpx',
|
||||
lineHeight: '38rpx',
|
||||
color: getColorByIndex(index)}">
|
||||
{{index + 1}}</text>
|
||||
福鼎力创台球电玩
|
||||
{{index + 1}}</text>
|
||||
{{item.storeName}}
|
||||
</view>
|
||||
<view class="price">996</view>
|
||||
<view class="price" v-if="sytit == '收益金额'">{{item.income}}</view>
|
||||
<view class="price" v-else>{{item.flow}}</view>
|
||||
</view>
|
||||
|
||||
<view class="" style="width: 448rpx;height: 448rpx;margin: auto;margin-top: 100rpx;text-align: center;"
|
||||
v-if="showflag">
|
||||
<image style="width: 448rpx;height: 448rpx;"
|
||||
src="https://api.ccttiot.com/smartmeter/img/static/ufLi6IZd5kh1MIEZFYTo" mode=""></image>
|
||||
<view class="" style="font-size: 30rpx;color: #ccc;margin-top: 30rpx;">暂无更多店铺收益...</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
@ -80,28 +91,96 @@
|
|||
num: '',
|
||||
vipflag: false,
|
||||
textje: '请输入起始金额',
|
||||
qishiprice: '起始金额',
|
||||
jieshuprice: '结束金额',
|
||||
qishiprice: '',
|
||||
jieshuprice: '',
|
||||
jesum: '',
|
||||
jeflag: '',
|
||||
listarr:[]
|
||||
listarr: [],
|
||||
pagesum: 1,
|
||||
pagesize: 10,
|
||||
pagenum: 1,
|
||||
pagesize: 10, // 一页多少数据
|
||||
isLoading: false, // 是否正在加载数据
|
||||
noMoreData: false, // 是否没有更多数据
|
||||
total: 0,
|
||||
keyword: '',
|
||||
bgc: {
|
||||
background: '#25CE88'
|
||||
},
|
||||
showflag: false,
|
||||
isAsc:'desc',
|
||||
bttit:'',
|
||||
sytit:''
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
onLoad(option) {
|
||||
this.bttit = option.tit
|
||||
this.sytit = option.tits
|
||||
let today = new Date()
|
||||
this.selector = this.formatDate(today)
|
||||
this.selectors = this.formatDate(today)
|
||||
this.getlist()
|
||||
},
|
||||
methods: {
|
||||
getlist(){
|
||||
this.$u.get('/agent/report/agent/storeRank?orderByColumn=' + 'income' + '&isAsc=' + 'desc' + '&startDate='+this.selector + '&endDate=' + this.selectors).then(res => {
|
||||
if(res.code == 200){
|
||||
this.listarr = res.data
|
||||
btnchaxun() {
|
||||
this.pagenum = 1
|
||||
this.listarr = []
|
||||
this.getlist()
|
||||
},
|
||||
seach(){
|
||||
this.pagenum = 1
|
||||
this.listarr = []
|
||||
this.getlist()
|
||||
},
|
||||
btnpx(){
|
||||
if(this.isAsc == 'asc'){
|
||||
this.isAsc = 'desc'
|
||||
this.pagenum = 1
|
||||
this.listarr = []
|
||||
this.getlist()
|
||||
}else{
|
||||
this.isAsc = 'asc'
|
||||
this.pagenum = 1
|
||||
this.listarr = []
|
||||
this.getlist()
|
||||
}
|
||||
|
||||
},
|
||||
getlist() {
|
||||
this.$u.get('/agent/report/agent/storeRank?orderByColumn=' + 'income' + '&isAsc=' + this.isAsc +
|
||||
'&startDate=' + this.selector + '&endDate=' + this.selectors + '&pageNum=' + this.pagenum +
|
||||
'&pageSize=' + this.pagesize + '&startAmount=' + this.qishiprice + '&endAmount=' + this.jieshuprice + '&keyword=' + this.keyword + '&isAsc=' + this.isAsc).then(res => {
|
||||
if (res.code == 200) {
|
||||
this.total = res.total
|
||||
if (this.total > 0) {
|
||||
this.showflag = false
|
||||
} else {
|
||||
this.showflag = true
|
||||
}
|
||||
if (res.rows.length > 0) {
|
||||
// 有数据,追加到列表
|
||||
this.listarr = this.listarr.concat(res.rows)
|
||||
this.pagenum++
|
||||
} else {
|
||||
// 没有更多数据
|
||||
this.noMoreData = true;
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
onReachBottom() {
|
||||
let sum = this.total / this.pagesize
|
||||
if (this.pagenum - 1 < sum) {
|
||||
this.getlist(); // 上拉加载更多
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: '没有更多店铺收益了',
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
formatDate(date) {
|
||||
let year = date.getFullYear();
|
||||
let month = String(date.getMonth() + 1).padStart(2, '0');
|
||||
|
@ -141,10 +220,10 @@
|
|||
// 为true是起始金额 为false是结束金额
|
||||
if (this.jeflag == true) {
|
||||
this.qishiprice = this.jesum
|
||||
this.jesum = 0
|
||||
this.jesum = ''
|
||||
} else {
|
||||
this.jieshuprice = this.jesum
|
||||
this.jesum = 0
|
||||
this.jesum = ''
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -162,15 +241,16 @@
|
|||
/deep/ .uicon-nav-back {
|
||||
padding-bottom: 40rpx;
|
||||
}
|
||||
|
||||
page {
|
||||
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
|
||||
// background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
|
||||
}
|
||||
|
||||
.page {
|
||||
width: 750rpx;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
// position: fixed;
|
||||
// top: 0;
|
||||
// left: 0;
|
||||
|
||||
.mask {
|
||||
width: 750rpx;
|
||||
|
|
|
@ -25,6 +25,9 @@
|
|||
<text v-if="item.status == 4">已付款</text>
|
||||
<text v-if="item.status == 5">免费取消</text>
|
||||
<text v-if="item.status == 6">租转卖</text>
|
||||
<text v-if="item.status == 7">弹出失败</text>
|
||||
<text v-if="item.status == 8">全额退款</text>
|
||||
<text v-if="item.status == 9">部分退款</text>
|
||||
</view>
|
||||
<view class="bh" v-if="item.sale.money">
|
||||
<text>销售金额</text> <text>{{item.sale.money / 100}}元</text>
|
||||
|
|
Loading…
Reference in New Issue
Block a user