pull/6/head
zhangyouji 1 year ago
parent cd73ef5c28
commit 9b40ce3fbf
  1. 36
      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,27 +508,35 @@
} }
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
} }
oliFinanceApi.getOrderInfoExport(this.params).then(res => { uni.showModal({
if (res.code == 20000) { content: '请确认邮箱'+this.params.email,
uni.showToast({ success: (res)=> {
title: res.msg, if (res.confirm) {
icon: 'none' oliFinanceApi.getOrderInfoExport(this.params).then(res => {
}); if (res.code == 20000) {
this.$refs.popup.close(); uni.showToast({
title: res.msg,
icon: 'none'
});
this.$refs.popup.close();
}
})
}
} }
}) });
} }
} }
} }

Loading…
Cancel
Save