master
xiaozhiyong 12 months ago
parent da0f4e6589
commit 0c0aac6fac
  1. 126
      pages/tabbar/home/home.vue
  2. 72
      pages/tabbar/station/stationList.vue

@ -237,7 +237,7 @@
}, },
onPullDownRefresh() { onPullDownRefresh() {
this.refreshLocation() // this.refreshLocation()
setTimeout(function() { setTimeout(function() {
uni.stopPullDownRefresh() uni.stopPullDownRefresh()
}, 800); }, 800);
@ -249,17 +249,11 @@
const openid = uni.getStorageSync('openid') const openid = uni.getStorageSync('openid')
if (token && openid) { if (token && openid) {
this.getAuthInfo() this.getAuthInfo()
} else {
uni.showToast({
title: '您还没有登录哦',
icon: "none"
})
} }
this.refreshLocation(); this.refreshLocation();
}, },
methods: { methods: {
toManagement() { toManagement() {
const user = uni.getStorageSync('user'); const user = uni.getStorageSync('user');
if (user) { if (user) {
@ -379,25 +373,39 @@
showQr() { showQr() {
const user = uni.getStorageSync('user'); let user = uni.getStorageSync("user");
if (!user) { if (!user) {
uni.showToast({ uni.showModal({
title: '请先登录!', content: "登录后才能出示付款码哦",
icon: 'none' confirmText: "去登录",
}) success: function(res) {
return if (res.confirm) {
uni.navigateTo({
url: "/BagAuth/pages/login/login",
});
}
},
});
return;
} }
this.showThreeSites = true this.showThreeSites = true
}, },
toCards() { toCards() {
const user = uni.getStorageSync('user'); let user = uni.getStorageSync("user");
if (!user) { if (!user) {
uni.showToast({ uni.showModal({
title: '请先登录!', content: "登录后才能查看哦",
icon: 'none' confirmText: "去登录",
}) success: function(res) {
return if (res.confirm) {
uni.navigateTo({
url: "/BagAuth/pages/login/login",
});
}
},
});
return;
} }
uni.navigateTo({ uni.navigateTo({
url: '/BagMoney/pages/oilCards/oilCards' url: '/BagMoney/pages/oilCards/oilCards'
@ -405,6 +413,21 @@
}, },
toOrders() { toOrders() {
let user = uni.getStorageSync("user");
if (!user) {
uni.showModal({
content: "登录后才能查看哦",
confirmText: "去登录",
success: function(res) {
if (res.confirm) {
uni.navigateTo({
url: "/BagAuth/pages/login/login",
});
}
},
});
return;
}
uni.switchTab({ uni.switchTab({
url: '/pages/tabbar/order/orderList/orderList' url: '/pages/tabbar/order/orderList/orderList'
}) })
@ -419,49 +442,41 @@
let params = { let params = {
currentPage: 1, currentPage: 1,
pageSize: 10, pageSize: 10,
params: { //Object // params: {
longitude: 117.157817, // // longitude: 117.157817,
latitude: 31.802472, // // latitude: 31.802472,
// siteBrand: "", // // ( 1- 2- 3- 4- 5- 6- 7- 8- )
// channelCode: "", // // ( OIL WJY LV TY YDJY)
// oilProductCode: "0#" // // ( 0# 92# 92#)
clientBelong: 'ZHONGPIN', clientBelong: 'ZHONGPIN',
comprehensiveSort: 1, comprehensiveSort: 1,
zpDisable: 'ENABLE', zpDisable: 'ENABLE',
sort: "juli", //String // ( price juli ) sort: "juli",
...uni.getStorageSync('location'), ...uni.getStorageSync('location'),
...this.filterData, ...this.filterData,
} }
}; };
if (!uni.getStorageSync('user')) {
oilSiteApi.readOnlySites(params).then(res => {
this.getCount++
if (res.code == 20000) {
this.siteList = res.data.list
} else {
if (this.getCount == 1) {
setTimeout(() => {
this.getSiteList()
}, 1000)
}
}
})
} else {
oilSiteApi.getSiteLists(params).then(res => { oilSiteApi.getSiteLists(params).then(res => {
if (res.code == 20000) { if (res.code == 20000) {
this.siteList = res.data.list this.siteList = res.data.list
} }
}) })
}
oilSiteApi[uni.getStorageSync('user') ? 'getSiteLists' : 'getSiteLists'](params).then(res => {
if (res.code == 20000) {
this.siteList = res.data.list
}
})
}, },
toDetail(item) { toDetail(item) {
let user = uni.getStorageSync("user");
if (!user) {
uni.showModal({
content: "登录后才能查看哦",
confirmText: "去登录",
success: function(res) {
if (res.confirm) {
uni.navigateTo({
url: "/BagAuth/pages/login/login",
});
}
},
});
return;
}
let itemS = encodeURIComponent(JSON.stringify(item)); let itemS = encodeURIComponent(JSON.stringify(item));
uni.navigateTo({ uni.navigateTo({
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}` url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`
@ -513,13 +528,20 @@
}, },
openScan() { openScan() {
const user = uni.getStorageSync('user'); let user = uni.getStorageSync("user");
if (!user) { if (!user) {
uni.showToast({ uni.showModal({
title: '请先登录!', content: "登录后才能使用扫一扫哦",
icon: 'none' confirmText: "去登录",
}) success: function(res) {
return if (res.confirm) {
uni.navigateTo({
url: "/BagAuth/pages/login/login",
});
}
},
});
return;
} }
uni.scanCode({ uni.scanCode({
scanType: 'qrCode', scanType: 'qrCode',

@ -33,8 +33,8 @@
<!-- 筛选开始 --> <!-- 筛选开始 -->
<scroll-view class="screentop bg-white" style="flex: 1;"> <scroll-view class="screentop bg-white" style="flex: 1;">
<view class=""> <view class="">
<sl-filter v-if="isFilterData" reflexTitle ref="slFilter" :productCodeList="productCodeList" :areaCodeList="areaCodeList" <sl-filter v-if="isFilterData" reflexTitle ref="slFilter" :productCodeList="productCodeList"
@result="filterRes" :menuList="menuList"></sl-filter> :areaCodeList="areaCodeList" @result="filterRes" :menuList="menuList"></sl-filter>
<!-- <sl-filter reflexTitle ref="slFilter" @result="filterRes" :menuList="menuList"></sl-filter> --> <!-- <sl-filter reflexTitle ref="slFilter" @result="filterRes" :menuList="menuList"></sl-filter> -->
</view> </view>
<view class="bg-white min-height-50 padding-top" v-if="siteList.length>0"> <view class="bg-white min-height-50 padding-top" v-if="siteList.length>0">
@ -379,7 +379,7 @@
}, },
getSiteList() { getSiteList() {
let data1 = { let parameter = {
currentPage: this.currentPage, currentPage: this.currentPage,
pageSize: 10, pageSize: 10,
params: { //Object // params: { //Object //
@ -390,9 +390,12 @@
siteName: this.siteName, siteName: this.siteName,
...uni.getStorageSync('location'), ...uni.getStorageSync('location'),
// ...this.filterData // ...this.filterData
siteBrand: this.siteName ? '' : this.filterData.siteBrand, // // ( 1- 2- 3- 4- 5- 6- 7- 8- ) siteBrand: this.siteName ? '' : this.filterData
channelCode: this.siteName ? '' : this.filterData.channelCode, // // ( OIL WJY LV TY YDJY) .siteBrand, // // ( 1- 2- 3- 4- 5- 6- 7- 8- )
oilProductCode: this.siteName ? '' : this.filterData.oilProductCode, // // ( 0# 92# 92#) channelCode: this.siteName ? '' : this.filterData
.channelCode, // // ( OIL WJY LV TY YDJY)
oilProductCode: this.siteName ? '' : this.filterData
.oilProductCode, // // ( 0# 92# 92#)
provinceCode: this.filterData.provinceCode, provinceCode: this.filterData.provinceCode,
cityCode: this.filterData.cityCode, cityCode: this.filterData.cityCode,
areaCode: this.filterData.areaCode, areaCode: this.filterData.areaCode,
@ -400,22 +403,9 @@
zpDisable: 'ENABLE', zpDisable: 'ENABLE',
comprehensiveSort: this.filterData.comprehensiveSort ? this.filterData.comprehensiveSort : 1 comprehensiveSort: this.filterData.comprehensiveSort ? this.filterData.comprehensiveSort : 1
} }
} }
if (!uni.getStorageSync('Authorization')) {
oilSiteApi.readOnlySites(data1).then(res => { oilSiteApi.getSiteLists(parameter).then(res => {
if (res.code == 20000) {
this.siteList = this.siteList.concat(res.data.list)
if (res.data.list.length < 10) { //
this.loadStatus = 'nomore'
} else {
this.currentPage++
this.loadStatus = 'load'
}
}
})
} else {
oilSiteApi.getSiteLists(data1).then(res => {
if (res.code == 20000) { if (res.code == 20000) {
this.siteList = this.siteList.concat(res.data.list) this.siteList = this.siteList.concat(res.data.list)
if (res.data.list.length < 10) { // if (res.data.list.length < 10) { //
@ -426,40 +416,30 @@
} }
} }
}) })
}
}, },
toDetail(item) { toDetail(item) {
let user = uni.getStorageSync("user");
if (!user) {
uni.showModal({
content: "登录后才能查看哦",
confirmText: "去登录",
success: function(res) {
if (res.confirm) {
uni.navigateTo({
url: "/BagAuth/pages/login/login",
});
}
},
});
return;
}
let itemS = encodeURIComponent(JSON.stringify(item)); let itemS = encodeURIComponent(JSON.stringify(item));
uni.navigateTo({ uni.navigateTo({
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`, url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,
fail: (err) => {}, fail: (err) => {},
success: () => {} success: () => {}
}) })
// if (uni.getStorageSync('user')) {
// 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'
// })
// }
// }
// })
// }
}, },
nameSelect(value, item) { nameSelect(value, item) {
this.title2 = item.text this.title2 = item.text

Loading…
Cancel
Save