pull/3/head
xiaozhiyong 2 years ago
parent 21fca7a4b7
commit acc76ef744
  1. 4
      App.vue
  2. 22
      pages/tabbar/home/home.vue
  3. 8
      utils/request.js

@ -117,10 +117,10 @@
imageUrl: 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/login-bg.png',
}
}
let white = ['pages/index/startPage/startPage']
//
let isRefuseLogin = uni.getStorageSync('refuseLogin')
console.log('isRefuseLogin',isRefuseLogin,typeof isRefuseLogin)
if(isRefuseLogin || view.route === 'pages/index/startPage/startPage' || view.route.includes('BagAuth')) return
if(isRefuseLogin || white.includes(view.route) || view.route.includes('BagAuth')) return
this.getAmount()
})
},

@ -454,11 +454,7 @@
} else if (index == 8) {
this.goToPage('/BagAuth/pages/agreeMent/OperationGuide')
}
// else if(index==8){
// uni.navigateTo({
// url: '/BagStation/myCars/myCars'
// })
// }
else {
uni.showToast({
title: '功能暂无',
@ -468,9 +464,6 @@
},
showQr() {
// uni.navigateTo({
// url: '/BagStation/pages/stationDetail/stieQr'
// })
this.showThreeSites = true
},
toCards() {
@ -492,16 +485,11 @@
let params = {
currentPage: 1,
pageSize: 10,
params: { //Object //
// longitude: 117.157817, // //
// latitude: 31.802472, // //
// siteBrand: "", // // ( 1- 2- 3- 4- 5- 6- 7- 8- )
// channelCode: "", // // ( OIL WJY LV TY YDJY)
// oilProductCode: "0#" // // ( 0# 92# 92#)
params: {
clientBelong:'ZHONGPIN',
comprehensiveSort:1,
zpDisable:'ENABLE',
sort: "juli", //String // ( price juli )
sort: "juli", // price juli
...uni.getStorageSync('location'),
...this.filterData,
}
@ -511,7 +499,6 @@
oilSiteApi.readOnlySites(params).then(res => {
this.getCount++
if (res.code == 20000) {
// console.log(res.data.list)
this.siteList = res.data.list
} else {
if (this.getCount == 1) {
@ -552,8 +539,7 @@
},
toDetail(item) {
let itemS = encodeURIComponent(JSON.stringify(item))
// console.log(uni.getStorageSync('user'))
// return
if (uni.getStorageSync('user')) {
uni.navigateTo({
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,

@ -42,7 +42,7 @@ service.interceptors.request.use(
} else {
url = config.url
}
// uni.hideLoading()
return config
},
error => {
@ -68,15 +68,15 @@ service.interceptors.response.use(
}
uni.hideLoading()
let dontTipTextArr = ['令牌为空,不允许操作','您的ip已经更改,请重新登录','登录与操作设备不同']
let dontTipCodeArr = [20000,42011]
if(response.config.url.indexOf('/oil-site/oilSiteOrderInfo/getOrderQrCode') === -1){
if (res.code != 20000 && res.msg != '令牌为空,不允许操作' && res.msg != '您的ip已经更改,请重新登录' && res.msg != '登录与操作设备不同') {
if (!dontTipCodeArr.includes(res.code) && !dontTipTextArr.includes(res.msg)) {
uni.showToast({
title: res.msg,
icon: "none"
})
}
}
return res
},

Loading…
Cancel
Save