中品加油
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

157 lines
3.3 KiB

2 years ago
<template>
<view class="page-content">
<image src="../../../static/img/start.jpg" width="" mode="widthFix"></image>
</view>
</template>
<script>
import oilSiteApi from '@/api/oil-site.js'
export default {
data() {
return {
1 year ago
2 years ago
imgURL: this.global.imgURL + 'start/',
menuList: [{
title: '渠道',
isMutiple: false,
key: 'channelCode',
detailList: [{
title: "全部",
value: ""
}]
},
{
title: '0#轻柴油',
key: 'oilProductCode',
isMutiple: false,
detailList: [{
title: "全部",
value: ""
}]
},
{
title: '品牌',
key: 'siteBrand',
isSort: true,
isMutiple: false,
detailList: [{
title: "全部",
value: ""
}]
}
],
}
},
onLoad(option) {
1 year ago
2 years ago
const updateManager = uni.getUpdateManager();
1 year ago
updateManager.onCheckForUpdate((res) => {
2 years ago
console.log('请求完新版本信息的回调', res.hasUpdate);
2 years ago
if (!res.hasUpdate) {
1 year ago
this.initFn(option)
2 years ago
}
2 years ago
});
1 year ago
updateManager.onUpdateReady((res) => {
2 years ago
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
updateManager.applyUpdate();
2 years ago
} else {
1 year ago
this.initFn(option)
2 years ago
}
2 years ago
},
2 years ago
});
});
updateManager.onUpdateFailed(function(res) {
2 years ago
console.log('新的版本下载失败')
2 years ago
});
},
1 year ago
2 years ago
methods: {
2 years ago
initFn(option) {
let interstitialAd = null
1 year ago
let openid = uni.getStorageSync('openid')
let token = uni.getStorageSync('Authorization')
2 years ago
if (wx.createInterstitialAd) {
interstitialAd = wx.createInterstitialAd({
1 year ago
adUnitId: 'adunit-063722d8f7b2b65e'
2 years ago
})
1 year ago
let handle = () => {
if (token && openid) {
2 years ago
uni.switchTab({
url: '/pages/tabbar/home/home',
})
} else {
12 months ago
// uni.redirectTo({
// url: '/BagAuth/pages/login/login'
// })
uni.switchTab({
url: '/pages/tabbar/home/home',
2 years ago
})
}
1 year ago
}
interstitialAd.onClose(handle)
interstitialAd.onError((err) => {
console.log('onError', err)
handle()
})
}
if (interstitialAd) {
interstitialAd.show().catch((err) => {
console.error('show catch', err)
})
}
2 years ago
},
2 years ago
getFilterData() {
oilSiteApi.getCheckInfo().then(res => {
if (res.code == 20000) {
let channelCodes = []
res.data.channelCodes.map(item => {
channelCodes.push({
title: item.name,
value: item.id
})
})
let productCodes = []
res.data.productCodes.map(item => {
productCodes.push({
title: item.name,
value: item.id
})
})
let siteBrands = []
res.data.siteBrands.map(item => {
siteBrands.push({
title: item.name,
value: item.id
})
})
this.menuList[0].detailList = this.menuList[0].detailList.concat(channelCodes)
this.menuList[1].detailList = this.menuList[1].detailList.concat(productCodes)
this.menuList[2].detailList = this.menuList[2].detailList.concat(siteBrands)
2 years ago
uni.setStorageSync('filterData', this.menuList);
2 years ago
}
})
},
}
}
</script>
<style scoped>
.page-content {
height: 100%;
overflow: hidden;
}
.page-content image {
width: 750upx;
}
</style>