KongDuo
xiaozhiyong 2 years ago
parent 664bc8c5a3
commit 2260161be9
  1. 4
      BagStation/orderDetail/orderDetail.vue
  2. 5
      BagStation/pages/stationDetail/stationDetail.vue
  3. 4
      pages/tabbar/order/orderList/orderList.vue

@ -271,8 +271,8 @@
orderApi.getOrderPayInfo(this.id).then(res => {
if (res.code == 20000) {
// console.log('oilItem',uni.getStorageSync('oilItem'))
if(res.data.secondChannelCode === 'SQ' && res.data.sqSiteBelong === 'JKJY') {
res.data.listTag = '集卡加油'
if(res.data.secondChannelCode === 'SQ'){
res.data.listTag = res.data.sqSiteBelong === 'JKJY' ? '集卡加油' :'上汽联名卡'
}
uni.setStorageSync('orderMade', res.data)
uni.setStorageSync('oilItem', res.data)

@ -233,8 +233,9 @@
// var oilItem = JSON.parse(option.item)
// }
let oilItem = option.channerCode == 'TY' ? uni.getStorageSync('OtherSiteInfo') : JSON.parse(option.item)
if(oilItem.secondChannelCode === 'SQ' && oilItem.sqSiteBelong === 'JKJY') {
oilItem.listTag = '集卡加油'
if(oilItem.secondChannelCode === 'SQ'){
oilItem.listTag = oilItem.sqSiteBelong === 'JKJY' ? '集卡加油' :'上汽联名卡'
}
uni.setStorageSync('oilItem',oilItem)
this.getSiteInfo(oilItem.siteId)

@ -169,8 +169,8 @@
makePay(id) {
orderApi.getOrderPayInfo(id).then(res => {
if (res.code == 20000) {
if(res.data.secondChannelCode === 'SQ' && res.data.sqSiteBelong === 'JKJY') {
res.data.listTag = '集卡加油'
if(res.data.secondChannelCode === 'SQ'){
res.data.listTag = res.data.sqSiteBelong === 'JKJY' ? '集卡加油' :'上汽联名卡'
}
uni.setStorageSync('orderMade', res.data)
uni.setStorageSync('oilItem', res.data)

Loading…
Cancel
Save