This commit is contained in:
parent
ba7056e3be
commit
1299140eee
|
@ -271,20 +271,21 @@
|
||||||
// console.log(this.OrderList);
|
// console.log(this.OrderList);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 保留两位小数
|
// 保留两位小数
|
||||||
toFixed2(num){
|
toFixed2(num) {
|
||||||
let str = num;
|
if (!num) return "0.00";
|
||||||
if(typeof num =='string'){
|
let str = num;
|
||||||
str = +str;
|
if (typeof num == 'string') {
|
||||||
str = str.toFixed(2);
|
str = +str;
|
||||||
}else str = str.toFixed(2);
|
str = str.toFixed(2);
|
||||||
return str || '0.00';
|
} else str = str.toFixed(2);
|
||||||
},
|
return str || '0.00';
|
||||||
navToOrder(item, type=2){
|
},
|
||||||
uni.navigateTo({
|
navToOrder(item, type = 2) {
|
||||||
url: `/pages/admin/orderList/index?merId=${this.mer_id}&types=${type}&pay_time=${item.pay_time.split(' ')[0]}`
|
uni.navigateTo({
|
||||||
})
|
url: `/pages/admin/orderList/index?merId=${this.mer_id}&types=${type}&pay_time=${item.pay_time.split(' ')[0]}`
|
||||||
}
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
onReachBottom() {
|
onReachBottom() {
|
||||||
this.getList(this.mer_id)
|
this.getList(this.mer_id)
|
||||||
|
|
|
@ -49,6 +49,7 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="content-middlea-one" style="font-size: 22rpx;color: #7f7f7f;">
|
<view class="content-middlea-one" style="font-size: 22rpx;color: #7f7f7f;">
|
||||||
<text v-if="index==1">(次日18点后可提现)</text>
|
<text v-if="index==1">(次日18点后可提现)</text>
|
||||||
|
<text v-if="index == 3">(点击查看进度详情)</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
@ -875,32 +876,36 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
// 销毁监听事件
|
// 销毁监听事件
|
||||||
this.$bus.$off('value-updated')
|
this.$bus.$off('value-updated')
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 提现页面
|
// 提现页面
|
||||||
handleToWithDraw(item, index) {
|
handleToWithDraw(item, index) {
|
||||||
if(index==3||index==4) return;
|
if (index == 4) return;
|
||||||
let url;
|
let url;
|
||||||
if(index<2) url = "/pages/users/embody/embody?mer_id=" + this.userInfoData.service.mer_id;
|
if (index == 0) url = "/pages/users/embody/embody?mer_id=" + this.userInfoData.service.mer_id;
|
||||||
else url = `/pages/admin/orderList/index?merId=${this.userInfoData.service.mer_id}&types=2`;
|
if (index == 2) url = `/pages/admin/orderList/index?merId=${this.userInfoData.service.mer_id}&types=2`;
|
||||||
uni.navigateTo({
|
if (index == 3) url = "/pages/activeCode/subsidy";
|
||||||
url: url
|
|
||||||
})
|
uni.navigateTo({
|
||||||
},
|
url: url
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
// 初始化菜单
|
// 初始化菜单
|
||||||
initTypeLiseMenu() {
|
initTypeLiseMenu() {
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
//关闭弹窗
|
//关闭弹窗
|
||||||
close() {
|
close() {
|
||||||
this.isFshow = false;
|
this.isFshow = false;
|
||||||
this.$refs.popup.close()
|
this.$refs.popup.close()
|
||||||
this.num = 15
|
this.num = 15
|
||||||
},
|
},
|
||||||
|
|
||||||
//获取交易信息
|
//获取交易信息
|
||||||
codelist() {
|
codelist() {
|
||||||
|
|
||||||
|
|
|
@ -64,8 +64,8 @@
|
||||||
searchParams: {
|
searchParams: {
|
||||||
page: 1,
|
page: 1,
|
||||||
limit: 15,
|
limit: 15,
|
||||||
section_startTime: '',
|
section_startTime: new Date().format("yyyy-MM-dd"),
|
||||||
section_endTime: '',
|
section_endTime: new Date().format("yyyy-MM-dd"),
|
||||||
mer_id: ''
|
mer_id: ''
|
||||||
},
|
},
|
||||||
loadend: false,
|
loadend: false,
|
||||||
|
@ -81,16 +81,16 @@
|
||||||
computed: {
|
computed: {
|
||||||
startTimeTxt() {
|
startTimeTxt() {
|
||||||
if (this.searchParams.section_startTime) {
|
if (this.searchParams.section_startTime) {
|
||||||
return new Date(this.searchParams.section_startTime).format("yyyy年MM月dd");
|
return new Date(this.searchParams.section_startTime).format("yyyy年MM月dd日");
|
||||||
} else {
|
} else {
|
||||||
return "开始时间";
|
return new Date().format("yyyy年MM月dd日");
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
endTimeTxt() {
|
endTimeTxt() {
|
||||||
if (this.searchParams.section_endTime) {
|
if (this.searchParams.section_endTime) {
|
||||||
return new Date(this.searchParams.section_endTime).format("yyyy年MM月dd");
|
return new Date(this.searchParams.section_endTime).format("yyyy年MM月dd日");
|
||||||
} else {
|
} else {
|
||||||
return "结束时间";
|
return new Date().format("yyyy年MM月dd日");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -116,8 +116,8 @@
|
||||||
handleReset() {
|
handleReset() {
|
||||||
this.loadend = false;
|
this.loadend = false;
|
||||||
this.searchParams.page = 1;
|
this.searchParams.page = 1;
|
||||||
this.searchParams.section_startTime = '';
|
this.searchParams.section_startTime = new Date().format("yyyy-MM-dd");
|
||||||
this.searchParams.section_endTime = '';
|
this.searchParams.section_endTime = new Date().format("yyyy-MM-dd");
|
||||||
this.paymentData = [];
|
this.paymentData = [];
|
||||||
this.getData();
|
this.getData();
|
||||||
},
|
},
|
||||||
|
@ -200,7 +200,7 @@
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: #EFEFEF;
|
background-color: #EFEFEF;
|
||||||
padding: 30rpx 40rpx;
|
padding: 30rpx;
|
||||||
|
|
||||||
.payment-detail-head-wrap {
|
.payment-detail-head-wrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
Loading…
Reference in New Issue