pull/6/head
zhangyouji 2 years ago
parent cd73ef5c28
commit 9b40ce3fbf
  1. 20
      packageOrders/pages/orderList/orderList.vue

@ -222,7 +222,11 @@
'1689183144276463616', '1689183144276463616',
'1689183774927818752', '1689183774927818752',
'1689184331812888576', '1689184331812888576',
'1689185023261741056' '1689185023261741056',
'100',
'1688798956131213312',
'1681929640815497216',
'1679333598941024256'
] ]
var exportFields = exportList.filter((item) => { var exportFields = exportList.filter((item) => {
return item == uni.getStorageSync('oilSitePriceId'); return item == uni.getStorageSync('oilSitePriceId');
@ -460,7 +464,7 @@
endDateChange:function(e){ endDateChange:function(e){
if(this.startDate ==''){ if(this.startDate ==''){
uni.showToast({ uni.showToast({
title: '请先输入开始时间', title: '请先选择开始时间',
icon: 'none' icon: 'none'
}); });
}else{ }else{
@ -504,18 +508,22 @@
} }
if(this.params.startTime==''){ if(this.params.startTime==''){
uni.showToast({ uni.showToast({
title: '请输入开始时间', title: '请选择开始时间',
icon: 'none' icon: 'none'
}); });
return false return false
} }
if(this.params.endTime==''){ if(this.params.endTime==''){
uni.showToast({ uni.showToast({
title: '请输入结束时间', title: '请选择结束时间',
icon: 'none' icon: 'none'
}); });
return false return false
} }
uni.showModal({
content: '请确认邮箱'+this.params.email,
success: (res)=> {
if (res.confirm) {
oliFinanceApi.getOrderInfoExport(this.params).then(res => { oliFinanceApi.getOrderInfoExport(this.params).then(res => {
if (res.code == 20000) { if (res.code == 20000) {
uni.showToast({ uni.showToast({
@ -527,6 +535,10 @@
}) })
} }
} }
});
}
}
} }
</script> </script>

Loading…
Cancel
Save