caolc #13

Merged
caoliancun merged 3 commits from caolc into master 2 years ago
  1. 133
      Activity/pages/index/index.vue
  2. 2
      App.vue
  3. 15
      BagAuth/pages/login/login.vue
  4. 4
      BagSetup/setup/setup.vue
  5. 2
      BagStation/pages/routePlain/routePlain.vue
  6. 264
      BagStation/pages/stationDetail/stationDetail.vue
  7. 7
      api/oil-site.js
  8. 16
      pages.json
  9. 78
      pages/tabbar/home/home.vue
  10. 59
      pages/tabbar/station/stationList.vue
  11. 32
      pages/tabbar/user/user.vue
  12. 4
      utils/request.js

@ -0,0 +1,133 @@
<template>
<view class="Activity_body">
<scroll-view @refresherrefresh='refresherrefresh' :refresher-enabled='true'
:refresher-triggered='refresherTriggered' style="height: 100%;" scroll-y="true"
@scrolltolower='scrolltolower'>
<view v-for="(item,index) in siteList" :key="item.id">
<site-item @tap="toDetail(item)" :site-item="item" class="cu-list menu-avatar cu-item" />
<view class="activityContent">{{item.activityDetail}}</view>
</view>
</scroll-view>
</view>
</template>
<script>
import oilSiteApi from '@/api/oil-site.js'
export default {
data() {
return {
refresherTriggered: false,
page: {
currentPage: 1,
pageSize: 10,
params: { //Object //
// sort: "juli", //String // ( price juli )
siteName: '',
clientBelong:'BAICHUAN',
...uni.getStorageSync('location'),
// ...this.filterData
// siteBrand: this.siteName ? '' : this.filterDatas
siteBrand: '', // // ( 1- 2- 3- 4- 5- 6- 7- 8- )
// channelCode: this.siteName ? '' : this.filterDatas
channelCode: '', // // ( OIL WJY LV TY YDJY)
// oilProductCode: this.siteName ? '' : this.filterDatas
oilProductCode: '', // // ( 0# 92# 92#)
siteLevel: '',
sort: 'juli',
provinceCode: '',
cityCode: '',
areaCode: '',
distance: ''
}
},
siteList: []
}
},
created() {
this.init()
},
methods: {
toDetail(item){
let itemS = JSON.stringify(item)
if (uni.getStorageSync('user')) {
if (item.channelCode === 'TY') {
uni.setStorageSync('OtherSiteInfo', item)
uni.navigateTo({
url: `/BagStation/pages/stationDetail/stationDetail?channerCode=${item.channelCode}`,
fail: (err) => {
// console.log(err)
},
success: () => {
// console.log('err')
}
})
return
}
uni.navigateTo({
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,
fail: (err) => {
// console.log(err)
},
success: () => {
// console.log('err')
}
})
} else {
uni.showModal({
title: '请您登录',
content: "登录星油加油才可以加油 |˛˙꒳˙)♡",
confirmText: '去登陆',
success: (res) => {
if (res.confirm) {
uni.reLaunch({
url: '../../../BagAuth/pages/login/login'
})
}
}
})
}
},
refresherrefresh() {
this.page.currentPage =1;
this.refresherTriggered = true;
this.getSiteList()
},
init(){
this.getSiteList();
},
getSiteList() {
let location = uni.getStorageSync('location');
oilSiteApi.getBCSitesByActivity(this.page).then(res => {
if(this.page.currentPage>1){
this.siteList = this.siteList.concat(res.data.list)
}else{
this.siteList = res.data.list
}
}).finally(()=>{
this.refresherTriggered = false;
})
},
scrolltolower() {
this.page.currentPage += 1;
this.getSiteList()
},
}
}
</script>
<style scoped lang="scss">
.activityContent{
background: #ff670026;
border-radius: 10rpx;
margin: 10rpx 30rpx;
box-sizing: border-box;
padding: 20rpx 30rpx;
color: #FF6700;
font-size: 30rpx;
}
.Activity_body {
width: 100vw;
height: 100vh;
overflow: hidden;
}
</style>

@ -113,7 +113,7 @@
success: function(res) { success: function(res) {
if (res.confirm) { if (res.confirm) {
uni.redirectTo({ uni.redirectTo({
url: '/BagAuth/pages/login/login' url: '/BagAuth/pages/login/login?loginType=true'
}) })
} }
}, },

@ -1,5 +1,5 @@
<template> <template>
<view class="login-page bg-white"> <view v-if="loginType" class="login-page bg-white">
<view class="image login-bg"> <view class="image login-bg">
<!-- <image :src="imgURL+'login-bg.png'" mode="widthFix"></image> --> <!-- <image :src="imgURL+'login-bg.png'" mode="widthFix"></image> -->
<!-- <image src="../../../BagStation/static/img/LV.png" mode="widthFix"></image> --> <!-- <image src="../../../BagStation/static/img/LV.png" mode="widthFix"></image> -->
@ -73,6 +73,7 @@
}, },
data() { data() {
return { return {
loginType:false,
// imgsrc:require('../../../BagStation/static/img/login-bg.png'), // imgsrc:require('../../../BagStation/static/img/login-bg.png'),
checked: false, checked: false,
userHandle: false, userHandle: false,
@ -91,7 +92,11 @@
loginOut: uni.getStorageSync('loginOut') ? true : false loginOut: uni.getStorageSync('loginOut') ? true : false
} }
}, },
onLoad() { onLoad(e) {
if(e.loginType){
this.loginType = Boolean(e.loginType);
console.log(e.loginType,'e.loginType')
}
uni.clearStorageSync() uni.clearStorageSync()
// this.refreshLocation() // this.refreshLocation()
uni.login({ uni.login({
@ -138,6 +143,7 @@
this.checked = val this.checked = val
}, },
refuseLogin() { refuseLogin() {
uni.setStorageSync('loginType',false)
uni.switchTab({ uni.switchTab({
url: '/pages/tabbar/home/home' url: '/pages/tabbar/home/home'
}) })
@ -201,7 +207,6 @@
console.log(res) console.log(res)
if (res.code == 20000) { if (res.code == 20000) {
this.loginSuccess(res) this.loginSuccess(res)
} }
}) })
} }
@ -234,6 +239,10 @@
url: '/pages/tabbar/home/home' url: '/pages/tabbar/home/home'
}) })
}else{ }else{
console.log(this.loginType,'loginTypeloginTypeloginType')
if(!this.loginType){
this.refuseLogin()
}
console.log('禁摩登录i失败==================') console.log('禁摩登录i失败==================')
} }
}, },

@ -135,7 +135,7 @@
uni.setStorageSync('loginOut', true) uni.setStorageSync('loginOut', true)
setTimeout(() => { setTimeout(() => {
uni.reLaunch({ uni.reLaunch({
url: '/BagAuth/pages/login/login' url: '/BagAuth/pages/login/login?loginType=true'
}) })
}, 1000) }, 1000)
} }
@ -144,7 +144,7 @@
setTimeout(() => { setTimeout(() => {
uni.setStorageSync('loginOut', true) uni.setStorageSync('loginOut', true)
uni.reLaunch({ uni.reLaunch({
url: '/BagAuth/pages/login/login' url: '/BagAuth/pages/login/login?loginType=true'
}) })
}, 1000) }, 1000)
} }

@ -337,7 +337,7 @@
success: (res) => { success: (res) => {
if(res.confirm){ if(res.confirm){
uni.reLaunch({ uni.reLaunch({
url:'../../../BagAuth/pages/login/login' url:'../../../BagAuth/pages/login/login?loginType=true'
}) })
} }
} }

@ -4,8 +4,10 @@
<block slot="content">中石化紫云路</block> <block slot="content">中石化紫云路</block>
<block slot="backText">返回</block> <block slot="backText">返回</block>
</cu-custom> --> </cu-custom> -->
<view class="bg-img fixed-top flex align-end margin-bottom-lg " :style="'background-image: url('+imgURL+'site-bg.png '+');width: 750upx;height: 326rpx;background-size:cover'"> <view class="bg-img fixed-top flex align-end margin-bottom-lg "
<image @tap="goBack" :src="imgURL+'site-back.png'" width="20upx" mode="widthFix" class="position-ab site-back"> :style="'background-image: url('+imgURL+'site-bg.png '+');width: 750upx;height: 326rpx;background-size:cover'">
<image @tap="goBack" :src="imgURL+'site-back.png'" width="20upx" mode="widthFix"
class="position-ab site-back">
</image> </image>
<view class="cu-list menu margin padding-sm radius my-shadow bg-white yu-card-xuan"> <view class="cu-list menu margin padding-sm radius my-shadow bg-white yu-card-xuan">
<view class="cu-item "> <view class="cu-item ">
@ -29,8 +31,10 @@
</view> </view>
</view> </view>
</view> </view>
<view class="bg-img placeholder-hidden flex align-end margin-bottom-lg " :style="'background-image: url('+imgURL+'site-bg.png '+');width: 750upx;height: 326rpx;background-size:cover'"> <view class="bg-img placeholder-hidden flex align-end margin-bottom-lg "
<image @tap="goBack" :src="imgURL+'site-back.png'" width="20upx" mode="widthFix" class="position-ab site-back"> :style="'background-image: url('+imgURL+'site-bg.png '+');width: 750upx;height: 326rpx;background-size:cover'">
<image @tap="goBack" :src="imgURL+'site-back.png'" width="20upx" mode="widthFix"
class="position-ab site-back">
</image> </image>
<view class="flex-sub"> <view class="flex-sub">
<view class="cu-list menu margin padding-sm radius my-shadow bg-white yu-card-xuan"> <view class="cu-list menu margin padding-sm radius my-shadow bg-white yu-card-xuan">
@ -61,7 +65,7 @@
</view> </view>
<!-- 价格 --> <!-- 价格 -->
<price-tab @onChangeChannelCode="getChannelCode" @onChangePayQr="onChangePayQr" @onChangePay="onChangePay" <price-tab @onChangeChannelCode="getChannelCode" @onChangePayQr="onChangePayQr" @onChangePay="onChangePay"
:channel-list="siteInfo.oilSiteChannelDetailsVos"></price-tab> :channel-list="siteInfo.oilSiteChannelDetailsVos"></price-tab>
<!-- 客户评价 --> <!-- 客户评价 -->
@ -81,20 +85,22 @@
<view class="bg-gray padding-top-sm "> <view class="bg-gray padding-top-sm ">
<view class="cu-list bg-white no-border menu padding-top "> <view class="cu-list bg-white no-border menu padding-top ">
<text class="padding margin-top">客户订单</text> <text class="padding margin-top">客户订单</text>
<view class="cu-item " v-for="(itm,index) in siteInfo.oilSiteOrderInfoVos" :key="index"> <view class="cu-item no-border"
v-if="!siteInfo.oilSiteOrderInfoVos||!siteInfo.oilSiteOrderInfoVos.length">
暂无
</view>
<view v-else class="cu-item " v-for="(itm,index) in siteInfo.oilSiteOrderInfoVos" :key="index">
<text class="text-black"> <text class="text-black">
{{itm.userName|usernameF}} {{itm.plateNumber|plateNumberF}} {{itm.userName|usernameF}} {{itm.plateNumber|plateNumberF}}
</text> </text>
<text class=" text-black "> {{itm.oilsCode}} {{itm.volume}}L 节省 <text class="text-red"> <text class=" text-black "> {{itm.oilsCode}} {{itm.volume}}L 节省 <text class="text-red">
{{itm.discountAmount}}</text></text> {{itm.discountAmount}}</text></text>
</view> </view>
<view class="cu-item no-border" v-if="!siteInfo.oilSiteOrderInfoVos.length">
暂无
</view>
</view> </view>
<!-- 底部去支付 --> <!-- 底部去支付 -->
<view class="" v-if="activePay||qrcodePay"> <view class="" >
<view class="btn bg-white placeholder-hidden"> <view class="btn bg-white placeholder-hidden">
<view class="flex bg-white padding flex-direction"> <view class="flex bg-white padding flex-direction">
<button class="cu-btn block bg-main-oil lg" v-if="activePay" @tap="makePay"> <button class="cu-btn block bg-main-oil lg" v-if="activePay" @tap="makePay">
@ -102,7 +108,7 @@
</image> </image>
一键支付 一键支付
</button> </button>
<!-- <button v-if="qrcodePay" class="cu-btn block bg-main-oil margin-tb-sm lg" @tap="siteQrPay"> <!-- <button v-if="qrcodePay" class="cu-btn block bg-main-oil margin-tb-sm lg" @tap="siteQrPay">
<image class="site-icon margin-right-sm" :src="imgURL+'site-qr.png'" mode="widthFix"> <image class="site-icon margin-right-sm" :src="imgURL+'site-qr.png'" mode="widthFix">
</image> </image>
二维码支付 二维码支付
@ -111,7 +117,7 @@
</view> </view>
<view class="btn bg-white fixed "> <view class="btn bg-white fixed ">
<view class="flex bg-white padding flex-direction"> <view class="flex bg-white padding flex-direction">
<button class="cu-btn block bg-main-oil lg" v-if="activePay" @tap="makePay"> <button class="cu-btn block bg-main-oil lg" @tap="makePay">
<image class="site-icon margin-right-sm" :src="imgURL+'site-yz.png'" mode="widthFix"> <image class="site-icon margin-right-sm" :src="imgURL+'site-yz.png'" mode="widthFix">
</image> </image>
一键支付 一键支付
@ -133,10 +139,10 @@
<view class=""> <view class="">
<image src="../../../static/img/errIcon.png" mode="" style="width:100rpx;height: 100rpx;"></image> <image src="../../../static/img/errIcon.png" mode="" style="width:100rpx;height: 100rpx;"></image>
</view> </view>
<view class="cu-bar box-panding text-centerS" > <view class="cu-bar box-panding text-centerS">
<text class="headShow"> 支付提醒 </text> <text class="headShow"> 支付提醒 </text>
</view> </view>
<view class="cu-bar box-panding" > <view class="cu-bar box-panding">
<text class="showtext">当前油站距离您较远请与加油员确认您选择的油站是否正确</text> <text class="showtext">当前油站距离您较远请与加油员确认您选择的油站是否正确</text>
</view> </view>
<view class="checklocation_box_button"> <view class="checklocation_box_button">
@ -161,7 +167,7 @@
}, },
data() { data() {
return { return {
showtitle:false, showtitle: false,
radio: 'B', radio: 'B',
mainURL: this.global.mainURL, mainURL: this.global.mainURL,
imgURL: this.global.imgURL, imgURL: this.global.imgURL,
@ -184,53 +190,53 @@
}, },
onUnload() { onUnload() {
console.log('这里是卸载页面') console.log('这里是卸载页面')
this.innerAudioContext.stop() this.innerAudioContext.stop()
}, },
onLoad(option) { onLoad(option) {
if(!option.item){ if (!option.item) {
let siteInfos = uni.getStorageSync('siteInfo') let siteInfos = uni.getStorageSync('siteInfo')
var oilItem = JSON.parse(decodeURIComponent(siteInfos)) var oilItem = JSON.parse(decodeURIComponent(siteInfos))
}else{ } else {
var oilItem = JSON.parse(decodeURIComponent(option.item)) var oilItem = JSON.parse(decodeURIComponent(option.item))
} }
uni.setStorageSync('oilItem',oilItem) uni.setStorageSync('oilItem', oilItem)
this.getSiteInfo(oilItem.siteId) this.getSiteInfo(oilItem.siteId, oilItem)
this.siteId = oilItem.siteId this.siteId = oilItem.siteId
if(oilItem.listTag == '万金油'){ if (oilItem.listTag == '万金油') {
this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/wanjinyou.mp3' this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/wanjinyou.mp3'
}else if(oilItem.listTag == '星油'){ } else if (oilItem.listTag == '星油') {
this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/xingyouyunzhan.mp3' this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/xingyouyunzhan.mp3'
}else if(oilItem.listTag == '壳牌'){ } else if (oilItem.listTag == '壳牌') {
this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/qiaopainew.mp3' this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/qiaopainew.mp3'
}else if(oilItem.listTag == '上汽联名卡'){ } else if (oilItem.listTag == '上汽联名卡') {
this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/shangqi.mp3' this.audioUrl = 'https://publicxingyou.oss-cn-hangzhou.aliyuncs.com/mp-oil/shangqi.mp3'
} }
this.ContextAudio(this.audioUrl) this.ContextAudio(this.audioUrl)
}, },
methods: { methods: {
// //
ContextAudio(url){ ContextAudio(url) {
this.innerAudioContext = uni.createInnerAudioContext(); this.innerAudioContext = uni.createInnerAudioContext();
this.innerAudioContext.autoplay = true; this.innerAudioContext.autoplay = true;
this.innerAudioContext.src = url; this.innerAudioContext.src = url;
this.innerAudioContext.onPlay(() => { this.innerAudioContext.onPlay(() => {
console.log('开始播放'); console.log('开始播放');
}); });
this.innerAudioContext.onError((res) => { this.innerAudioContext.onError((res) => {
console.log(res.errMsg); console.log(res.errMsg);
console.log(res.errCode); console.log(res.errCode);
}); });
}, },
backTohome(){ backTohome() {
this.innerAudioContext.stop() this.innerAudioContext.stop()
uni.switchTab({ uni.switchTab({
url:'../../../pages/tabbar/home/home' url: '../../../pages/tabbar/home/home'
}) })
}, },
hidendialog(){ hidendialog() {
this.showtitle =false this.showtitle = false
}, },
gotoPay(){ gotoPay() {
this.innerAudioContext.stop() this.innerAudioContext.stop()
uni.navigateTo({ uni.navigateTo({
url: `/BagStation/pages/makeOrder/makeOrder?siteId=${this.siteId}&activeCur=${this.activeCur}` url: `/BagStation/pages/makeOrder/makeOrder?siteId=${this.siteId}&activeCur=${this.activeCur}`
@ -241,35 +247,65 @@
this.secondChannelCode = sec this.secondChannelCode = sec
}, },
siteQrPay() { siteQrPay() {
this.innerAudioContext.stop() this.innerAudioContext.stop()
// let siteId = // let siteId =
uni.navigateTo({ uni.navigateTo({
url: `/BagStation/pages/stationDetail/stieQr?siteId=${this.siteId}&activeChannelCode=${this.activeChannelCode}&secondChannelCode=${this.secondChannelCode}` url: `/BagStation/pages/stationDetail/stieQr?siteId=${this.siteId}&activeChannelCode=${this.activeChannelCode}&secondChannelCode=${this.secondChannelCode}`
}) })
}, },
getSiteInfo(id) { getSiteInfo(id, item) {
console.log('进入获取油站信息') console.log('进入获取油站信息');
let user = uni.getStorageSync('user');
let data2 = { let data2 = {
...uni.getStorageSync('location'), ...uni.getStorageSync('location'),
siteId: id siteId: id
} }
oilSiteApi.getSiteDetails(data2).then(res => { if (user) {
console.log('进入获取油站信息getSiteDetails',res) oilSiteApi.getSiteDetails(data2).then(res => {
if (res.code == 20000) { console.log('进入获取油站信息getSiteDetails', res)
this.siteInfo = res.data if (res.code == 20000) {
} this.siteInfo = res.data
}) }
})
} else {
this.siteInfo = item
}
}, },
makePay() { makePay() {
console.log(this.siteInfo.juli) let user = uni.getStorageSync('user');
if(this.siteInfo.juli > 1000 ){ if (this.activePay && user) {
this.showtitle = true if (this.siteInfo.juli > 1000) {
}else{ this.showtitle = true
this.innerAudioContext.stop() } else {
uni.navigateTo({ this.innerAudioContext.stop()
url: `/BagStation/pages/makeOrder/makeOrder?siteId=${this.siteId}&activeCur=${this.activeCur}` uni.navigateTo({
}) url: `/BagStation/pages/makeOrder/makeOrder?siteId=${this.siteId}&activeCur=${this.activeCur}`
})
}
} else {
if(!user){
uni.showModal({
title: '请您登录',
content: "登录佰川加油才可以加油 |˛˙꒳˙)♡",
confirmText: '去登陆',
success: (res) => {
if (res.confirm) {
uni.reLaunch({
url: '../../../BagAuth/pages/login/login?loginType=true'
})
}
}
})
}else{
uni.showToast({
title:'暂无可选油品',
icon:'none'
})
}
} }
}, },
onChangePayQr(val) { onChangePayQr(val) {
this.qrcodePay = val this.qrcodePay = val
@ -293,7 +329,7 @@
}, },
goBack() { goBack() {
this.innerAudioContext.stop() this.innerAudioContext.stop()
uni.navigateBack({ uni.navigateBack({
}) })
@ -443,69 +479,83 @@
.yu-card-xuan .action { .yu-card-xuan .action {
white-space: nowrap; white-space: nowrap;
}.close-icon{ }
position: absolute;
right: 2%; .close-icon {
top: 2%; position: absolute;
} right: 2%;
.dialog-box{ top: 2%;
position: relative; }
}
.text-centerS{ .dialog-box {
display: flex; position: relative;
justify-content: center; }
align-items: center;
text-align: center; .text-centerS {
} display: flex;
.red_btn{ justify-content: center;
color: #FFFFFF; align-items: center;
background-color: #fe0505; text-align: center;
} }
.box-paddings{
padding:40rpx 0; .red_btn {
} color: #FFFFFF;
.headShow{ background-color: #fe0505;
font-size: 36rpx; }
font-weight: 600;
} .box-paddings {
.showtext{ padding: 40rpx 0;
line-height: 2; }
font-size: 30rpx;
margin-bottom: 30rpx; .headShow {
padding: 0 10%; font-size: 36rpx;
word-spacing: 10px; font-weight: 600;
letter-spacing: 3px; }
text-align: left;
} .showtext {
.checklocation_box_button{ line-height: 2;
display: flex; font-size: 30rpx;
justify-content: space-between; margin-bottom: 30rpx;
align-items: center; padding: 0 10%;
padding: 0 5%; word-spacing: 10px;
} letter-spacing: 3px;
.btn-box{ text-align: left;
width: 45%; }
flex: 0 0 auto;
text-align: center; .checklocation_box_button {
padding: 3%; display: flex;
border-radius: 20rpx; justify-content: space-between;
font-size: 28rpx; align-items: center;
box-sizing: border-box; padding: 0 5%;
border: 2rpx solid #bfbfbf; }
}
.box-panding{ .btn-box {
padding:10 0; width: 45%;
} flex: 0 0 auto;
.checklocation{ text-align: center;
padding: 3%;
border-radius: 20rpx;
font-size: 28rpx;
box-sizing: border-box;
border: 2rpx solid #bfbfbf;
}
.box-panding {
padding: 10 0;
}
.checklocation {
position: fixed; position: fixed;
top: 50%; top: 50%;
left: 20%; left: 20%;
right: 20%; right: 20%;
z-index: 999; z-index: 999;
} }
.checklocation_box{
.checklocation_box {
background-color: #FFFFFF; background-color: #FFFFFF;
} }
.content { .content {
min-height: 100%; min-height: 100%;
position: relative; position: relative;

@ -38,6 +38,13 @@ export default {
data: data data: data
}) })
}, },
getBCSitesByActivity(data) {
return request({
url: `/${service_name}/${group_name}/getBCSitesByActivity`,
method: 'post',
data: data
})
},
getSiteDetails(data) { getSiteDetails(data) {
return request({ return request({
url: `/${service_name}/${group_name}/getSiteDetails`, url: `/${service_name}/${group_name}/getSiteDetails`,

@ -120,6 +120,22 @@
} }
] ]
}, },
{
"root": "Activity",
"pages": [{
"path" : "pages/index/index",
"style" :
{
"navigationBarTitleText": "油站活动",
"enablePullDownRefresh": false,
"navigationStyle": "default",
"navigationBarBackgroundColor": "#fe0505",
"navigationBarTextStyle": "white"
}
}
]
},
{ {
"root": "Financial", "root": "Financial",
"pages": [{ "pages": [{

@ -65,6 +65,7 @@
中交风控 中交风控
</text> </text>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
@ -151,12 +152,12 @@
<view class="my-bg padding"> <view class="my-bg padding">
<view class=""> <view class="">
<swiper autoplay interval='5000' style="width: 100%;height: 204rpx;" class="swiper" circular> <swiper autoplay interval='5000' style="width: 100%;height: 204rpx;" class="swiper" circular>
<!-- <swiper-item @click="swiperClick(item,index)" v-for="(item,index) in swiperArray"> <swiper-item @click="swiperClick(item,index)" v-for="(item,index) in swiperArray">
<image :src="item.src" style="width: 100%;" mode="widthFix"></image> <image :src="item.src" style="width: 100%;" mode="widthFix"></image>
</swiper-item> -->
<swiper-item>
<ad unit-id="adunit-fae65289bc72095d" ad-intervals="30"></ad>
</swiper-item> </swiper-item>
<!-- <swiper-item>
<ad unit-id="adunit-fae65289bc72095d" ad-intervals="30"></ad>
</swiper-item> -->
</swiper> </swiper>
<!-- <image :src="starUrl+'banner.png'" style="width: 100%;" mode="widthFix"></image> --> <!-- <image :src="starUrl+'banner.png'" style="width: 100%;" mode="widthFix"></image> -->
</view> </view>
@ -204,9 +205,13 @@
// src:this.global.starUrl+'banner.png', // src:this.global.starUrl+'banner.png',
// link:'' // link:''
// }, // },
// {
// src: 'https://xoil-public.oss-cn-beijing.aliyuncs.com/WMP-IMG/banner-2dwk.png',
// link: 'https://tengxun.hkzj168.com/?ChannelId=20220831152210221048473'
// },
{ {
src: 'https://xoil-public.oss-cn-beijing.aliyuncs.com/WMP-IMG/banner-2dwk.png', src:'https://xoil-public.oss-cn-beijing.aliyuncs.com/baichuan_MP/banner_baichuan.png',
link: 'https://tengxun.hkzj168.com/?ChannelId=20220831152210221048473' JumpPage:'/Activity/pages/index/index'
}, },
], ],
listHeight: 160, listHeight: 160,
@ -354,6 +359,7 @@
}, },
methods: { methods: {
toActivity(){},
toManagement() { toManagement() {
const user = uni.getStorageSync('user'); const user = uni.getStorageSync('user');
if (user) { if (user) {
@ -378,10 +384,15 @@
} }
}, },
swiperClick(item, index) { swiperClick(item, index) {
if (!item?.link) return // if (!item?.link) return
uni.navigateTo({ // uni.navigateTo({
url: '/pages/tabbar/home/link?url=' + encodeURIComponent(JSON.stringify(item.link)) // url: '/pages/tabbar/home/link?url=' + encodeURIComponent(JSON.stringify(item.link))
}) // })
if(item?.JumpPage){
uni.navigateTo({
url: item.JumpPage
})
}
}, },
goToPage(url) { goToPage(url) {
if (!url) return; if (!url) return;
@ -575,27 +586,32 @@
}, },
toDetail(item) { toDetail(item) {
let itemS = encodeURIComponent(JSON.stringify(item)) let itemS = encodeURIComponent(JSON.stringify(item))
console.log(itemS) uni.navigateTo({
if (uni.getStorageSync('user')) { url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,
uni.navigateTo({ fail: (err) => {},
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`, success: () => {}
fail: (err) => {}, })
success: () => {} // console.log(itemS)
}) // if (uni.getStorageSync('user')) {
} else { // uni.navigateTo({
uni.showModal({ // url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,
title: '请您登录', // fail: (err) => {},
content: "登录佰川加油才可以加油 |˛˙꒳˙)♡", // success: () => {}
confirmText: '去登陆', // })
success: (res) => { // } else {
if (res.confirm) { // uni.showModal({
uni.reLaunch({ // title: '',
url: '../../../BagAuth/pages/login/login' // content: " |˛˙˙)",
}) // confirmText: '',
} // success: (res) => {
} // if (res.confirm) {
}) // uni.reLaunch({
} // url: '../../../BagAuth/pages/login/login?loginType=true'
// })
// }
// }
// })
// }
}, },
getFilterData() { getFilterData() {
oilSiteApi.getCheckInfo().then(res => { oilSiteApi.getCheckInfo().then(res => {

@ -426,31 +426,40 @@
}, },
toDetail(item) { toDetail(item) {
let itemS = encodeURIComponent(JSON.stringify(item)) let itemS = encodeURIComponent(JSON.stringify(item));
if (uni.getStorageSync('user')) { uni.navigateTo({
uni.navigateTo({ url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`, fail: (err) => {
fail: (err) => { // console.log(err)
// console.log(err) },
}, success: () => {
success: () => { // console.log('err')
// console.log('err') }
} })
}) // if (uni.getStorageSync('user')) {
} else { // uni.navigateTo({
uni.showModal({ // url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,
title: '请您登录', // fail: (err) => {
content: "登录佰川加油才可以加油 |˛˙꒳˙)♡", // // console.log(err)
confirmText: '去登陆', // },
success: (res) => { // success: () => {
if (res.confirm) { // // console.log('err')
uni.reLaunch({ // }
url: '../../../BagAuth/pages/login/login' // })
}) // } else {
} // uni.showModal({
} // title: '',
}) // content: " |˛˙˙)",
} // confirmText: '',
// success: (res) => {
// if (res.confirm) {
// uni.reLaunch({
// url: '../../../BagAuth/pages/login/login?loginType=true'
// })
// }
// }
// })
// }
}, },
nameSelect(value, item) { nameSelect(value, item) {
this.title2 = item.text this.title2 = item.text

@ -121,9 +121,9 @@
</view> </view>
</view> </view>
</view> </view>
<view class="xu-content card-menu margin margin-bottom-xs radius my-shadow"> <!-- <view class="xu-content card-menu margin margin-bottom-xs radius my-shadow">
<view class=" cu-list sm-border grid col-4 no-border "> <view class=" cu-list sm-border grid col-4 no-border ">
<view class="cu-item"> <view @click="clickFn" class="cu-item">
<view class=" padding-tb-0"> <view class=" padding-tb-0">
<view class="image-self-view"> <view class="image-self-view">
<img :src="starUrl+'wd-ic-1.png'" lazy-load class="png" mode="widthFix"></img> <img :src="starUrl+'wd-ic-1.png'" lazy-load class="png" mode="widthFix"></img>
@ -131,7 +131,7 @@
</view> </view>
<text>红包卡券</text> <text>红包卡券</text>
</view> </view>
<view class="cu-item"> <view @click="clickFn" class="cu-item">
<view class=" padding-tb-0"> <view class=" padding-tb-0">
<view class="image-self-view"> <view class="image-self-view">
<img :src="starUrl+'wd-ic-2.png'" lazy-load class="png" mode="widthFix"></img> <img :src="starUrl+'wd-ic-2.png'" lazy-load class="png" mode="widthFix"></img>
@ -139,7 +139,7 @@
</view> </view>
<text>活动通知</text> <text>活动通知</text>
</view> </view>
<view class="cu-item"> <view @click="clickFn" class="cu-item">
<view class=" padding-tb-0"> <view class=" padding-tb-0">
<view class="image-self-view"> <view class="image-self-view">
<img :src="starUrl+'wd-ic-3.png'" lazy-load class="png" mode="widthFix"></img> <img :src="starUrl+'wd-ic-3.png'" lazy-load class="png" mode="widthFix"></img>
@ -147,7 +147,7 @@
</view> </view>
<text>推荐有礼</text> <text>推荐有礼</text>
</view> </view>
<view class="cu-item" @tap="goToPage('/BagAuth/pages/agreeMent/OperationGuide')"> <view class="cu-item" @tap="goToPage('/BagAuth/pages/agreeMent/OperationGuide')">
<view class=" padding-tb-0"> <view class=" padding-tb-0">
<view class="image-self-view"> <view class="image-self-view">
<img :src="starUrl+'wd-ic-4.png'" lazy-load class="png" mode="widthFix"></img> <img :src="starUrl+'wd-ic-4.png'" lazy-load class="png" mode="widthFix"></img>
@ -156,7 +156,7 @@
<text>操作说明</text> <text>操作说明</text>
</view> </view>
</view> </view>
</view> </view> -->
<view class="xu-content padding-sm"> <view class="xu-content padding-sm">
<view class="cu-list menu"> <view class="cu-list menu">
<view class="cu-item hidden-cu-item"> <view class="cu-item hidden-cu-item">
@ -173,12 +173,12 @@
</view> </view>
</view> </view>
<view class="cu-item arrow"> <!-- <view @click="clickFn" class="cu-item arrow">
<view class="content"> <view class="content">
<image :src="starUrl+'gywm.png'" class="png" mode="aspectFit"></image> <image :src="starUrl+'gywm.png'" class="png" mode="aspectFit"></image>
<text class="text-grey padding-left-sm">关于我们</text> <text class="text-grey padding-left-sm">关于我们</text>
</view> </view>
</view> </view> -->
</view> </view>
</view> </view>
</view> </view>
@ -207,7 +207,21 @@
this.getAmount() this.getAmount()
}, },
methods: { methods: {
clickFn(e){
uni.showToast({
title:'功能正在开发中',
icon:'none'
})
},
goToPage(url) { goToPage(url) {
const token = uni.getStorageSync('Authorization')
if(!token){
uni.showToast({
title:'功能正在开发中',
icon:'none'
})
return
}
if (!url) return; if (!url) return;
uni.navigateTo({ uni.navigateTo({
url url
@ -228,7 +242,7 @@
this.routerTo('/BagSetup/setup/setup') this.routerTo('/BagSetup/setup/setup')
}else{ }else{
uni.reLaunch({ uni.reLaunch({
url:'../../../BagAuth/pages/login/login' url:'../../../BagAuth/pages/login/login?loginType=true'
}) })
} }
}, },

@ -4,7 +4,7 @@ import utils from '@/utils/encode'
// const env = process.env.NODE_ENV // const env = process.env.NODE_ENV
const env = 'production'/* */ const env = 'production'/* */
// const env = 'test' // const env = 'test'
const testUrl = 'http://192.168.0.45:38080' const testUrl = 'http://192.168.0.254:38080'
// const productUrl = 'http://121.196.213.68/adminapi' //预生产 // const productUrl = 'http://121.196.213.68/adminapi' //预生产
const productUrl = 'https://www.xingoil.com/adminapi' // 生产,加密 new const productUrl = 'https://www.xingoil.com/adminapi' // 生产,加密 new
@ -90,7 +90,7 @@ service.interceptors.response.use(
uni.hideLoading() uni.hideLoading()
if(response.config.url.indexOf('/oil-site/oilSiteOrderInfo/getOrderQrCode') === -1){ if(response.config.url.indexOf('/oil-site/oilSiteOrderInfo/getOrderQrCode') === -1){
if (res.code != 20000 && res.msg != '令牌为空,不允许操作' && res.msg != '您的ip已经更改,请重新登录' && res.msg != '登录与操作设备不同') { if (res.code != 20000 && res.msg != '令牌为空,不允许操作' && res.msg != '您的ip已经更改,请重新登录' && res.msg != '登录与操作设备不同' && res.msg != '用户未登录只可查询前两页油站信息') {
uni.showToast({ uni.showToast({
title: res.msg, title: res.msg,
icon: "none" icon: "none"

Loading…
Cancel
Save