查询流水进行区分
This commit is contained in:
parent
e79e7f5874
commit
cfcc0c15ec
|
|
@ -1,14 +1,14 @@
|
|||
const ROOTPATH1 = "https://dj-api.hnsiyao.cn/sqx_fast/"; //
|
||||
const ROOTPATH = "https://dj-api.hnsiyao.cn/sqx_fast/"; //后台服务域名
|
||||
const ROOTPATH2 = "https://dj-h5.hnsiyao.cn"; //后台服务域名
|
||||
// const ROOTPATH1 = "https://dj-api.hnsiyao.cn/sqx_fast/"; //
|
||||
// const ROOTPATH = "https://dj-api.hnsiyao.cn/sqx_fast/"; //后台服务域名
|
||||
// const ROOTPATH2 = "https://dj-h5.hnsiyao.cn"; //后台服务域名
|
||||
|
||||
// const ROOTPATH1 = "https://video.hnsiyao.cn/sqx_fast/"; //
|
||||
// const ROOTPATH = "https://video.hnsiyao.cn/sqx_fast/"; //后台服务域名
|
||||
// const ROOTPATH2 = "https://video-h5.hnsiyao.cn"; //后台服务域名
|
||||
|
||||
// const ROOTPATH1 = "http://192.168.1.5:8100/sqx_fast/"; //
|
||||
// const ROOTPATH = "http://192.168.1.5:8100/sqx_fast/"; //后台服务域名
|
||||
// const ROOTPATH2 = "http://192.168.1.5:8100"; //后台服务域名
|
||||
const ROOTPATH1 = "http://192.168.1.5:8100/sqx_fast/"; //
|
||||
const ROOTPATH = "http://192.168.1.5:8100/sqx_fast/"; //后台服务域名
|
||||
const ROOTPATH2 = "http://192.168.1.5:8100"; //后台服务域名
|
||||
|
||||
module.exports = {
|
||||
APIHOST: ROOTPATH,
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@
|
|||
//钱包明细
|
||||
goqianbao() {
|
||||
uni.navigateTo({
|
||||
url: '/me/invite/moneyList?moneyType=1'
|
||||
url: '/me/invite/moneyList?moneyType=1&viewType=2'
|
||||
});
|
||||
},
|
||||
list() {
|
||||
|
|
|
|||
|
|
@ -263,12 +263,12 @@
|
|||
methods: {
|
||||
toGold(){
|
||||
uni.navigateTo({
|
||||
url:'/me/invite/moneyList?moneyType=2'
|
||||
url:'/me/invite/moneyList?moneyType=2&viewType=1'
|
||||
})
|
||||
},
|
||||
toPack(){
|
||||
uni.navigateTo({
|
||||
url:'/me/invite/moneyList?moneyType=1'
|
||||
url:'/me/invite/moneyList?moneyType=1&viewType=1'
|
||||
})
|
||||
},
|
||||
//获取用户分销比例
|
||||
|
|
|
|||
|
|
@ -36,7 +36,8 @@
|
|||
page: 1,
|
||||
limit: 10,
|
||||
totalCount: 0,
|
||||
moneyType: null
|
||||
moneyType: null,
|
||||
viewType: null,
|
||||
}
|
||||
},
|
||||
onLoad: function(e) {
|
||||
|
|
@ -47,6 +48,9 @@
|
|||
title: e.moneyType == 1 ? '红包明细' : '金币明细'
|
||||
});
|
||||
}
|
||||
if (e.viewType) {
|
||||
this.viewType = e.viewType
|
||||
}
|
||||
this.getMoney();
|
||||
},
|
||||
|
||||
|
|
@ -60,6 +64,7 @@
|
|||
page : that.page,
|
||||
limit : that.limit,
|
||||
moneyType : this.moneyType,
|
||||
viewType: this.viewType,
|
||||
}
|
||||
|
||||
this.$Request.getT('app/moneyDetails/queryUserMoneyDetails', data).then(res => {
|
||||
|
|
|
|||
|
|
@ -365,7 +365,7 @@
|
|||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 178rpx;
|
||||
bottom: 278rpx;
|
||||
.cuIcon::before{
|
||||
width: 30rpx;
|
||||
height: 30rpx;
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@
|
|||
</block>
|
||||
</view>
|
||||
</view>
|
||||
<view class="money-box-btn" @click="goNav('/me/invite/moneyList?moneyType=2')">
|
||||
<view class="money-box-btn" @click="goNav('/me/invite/moneyList?moneyType=2&viewType=2')">
|
||||
金币明细
|
||||
</view>
|
||||
<!-- <view class="money-box-btn" @click="goNav('/me/wallet/wallet')">
|
||||
|
|
|
|||
Loading…
Reference in New Issue