xiaozy
xiaozhiyong 2 years ago
parent 9e38c2fd0c
commit e331393f09
  1. 39
      BagStation/pages/newRoutePlanning/chooseLocation.vue
  2. 68
      BagStation/pages/newRoutePlanning/components/addressSelector.vue
  3. 165
      BagStation/pages/newRoutePlanning/newRoutePlanning.vue
  4. BIN
      BagStation/static/img/addition.png
  5. BIN
      BagStation/static/img/remove.png
  6. 529
      pages/tabbar/station/stationList.vue
  7. 2
      utils/request.js

@ -54,26 +54,31 @@
pageSize: {
page_size: 15,
page: 1
}
},
currentMidwayIndex: '',
midwayPointList: ''
}
},
onLoad(e) {
let that = this
// let that = this
if (e.type) {
console.log(e.type)
this.type = e.type.split('/')[0]
this.location = e.type.split('/')[1]
console.log(this.List, Boolean(Number(this.List)))
let arr = e.type.split('/')
this.type = arr[0]
this.location = arr[1]
this.currentMidwayIndex = arr[2]
this.midwayPointList = arr[3]
// console.log(this.List, Boolean(Number(this.List)))
this.TXSDK.reverseGeocoder({
sig: 'mOPvEv4WmyaxymycTYy00pSiad2jnQil',
location: that.location,
success(e) {
location: this.location,
success: (e) => {
({
province: that.addressData.province,
city: that.addressData.city,
district: that.addressData.area
province: this.addressData.province,
city: this.addressData.city,
district: this.addressData.area
} = e.result.address_component)
console.log(e, that.addressData, '地址逆解析')
// console.log(e, this.addressData, '')
},
fail(e) {
console.log(e, '地址逆解析 错误')
@ -88,7 +93,7 @@
},
methods: {
seleClick(e) {
uni.$emit('UpdateAddress', e, this.type)
uni.$emit('UpdateAddress', e, this.type, this.currentMidwayIndex, this.midwayPointList)
uni.navigateBack()
},
chargeChange(e) {
@ -144,12 +149,12 @@
})
},
getSuggestion() {
if(!this.seachValue) {
if (!this.seachValue) {
uni.showToast({
title:'还没有输入地址哦~',
icon:'none'
title: '还没有输入地址哦~',
icon: 'none'
})
return
return
}
this.loding(true)
this.TXSDK.getSuggestion({

@ -7,13 +7,25 @@
<!-- <uni-icond type="back" size="30"></uni-icond> -->
</view>
<view class=" flex sele_car_right">
<view @click="chooseLocation('start')" class=" Padding flex ac flexone">
<view @click="chooseLocation('start')" class=" Padding flex ac flexone height79">
<view class="yuan" />
<view class="flexone margin size">{{Route.start.title}}</view>
</view>
<view @click="chooseLocation('end')" class=" Padding addressInput flex ac flexone">
<view v-for="item,index in midwayPointList" :key="index"
@click="chooseLocation('midwayPoint',index)" class=" Padding addressInput flex ac flexone height79">
<view style="background-color: #32CD32;" class="yuan" />
<view class="flexone margin size">{{item.title || '请输入途经点'}}</view>
<image @click.stop="removeLocation(index)" class="remove" src="../../../static/img/remove.png"></image>
</view>
<view @click="chooseLocation('end')" class=" Padding addressInput flex ac flexone height79">
<view style="background-color: #FF6700;" class="yuan" />
<view class="flexone margin size colorb">{{Route.end.title||'请输入终点'}}</view>
<image v-if="midwayPointList.length <= 1" @click.stop="additionLocation"
:style="{'top':midwayPointList.length?'50%':'0'}" class="addition"
src="../../../static/img/addition.png"></image>
</view>
</view>
</view>
@ -62,6 +74,7 @@
isShow: {
conditions: false
},
midwayPointList: [],
header: null,
menuList: [{
title: '距离',
@ -106,7 +119,6 @@
},
mounted() {
this.styles = uni.getMenuButtonBoundingClientRect();
console.log(this.styles);
const query = uni.createSelectorQuery().in(this);
query.select('.header').boundingClientRect(data => {
console.log("得到布局位置信息" + JSON.stringify(data));
@ -116,9 +128,21 @@
},
created() {
this.getConditionMenu();
},
methods: {
removeLocation(index) {
this.midwayPointList.splice(index, 1)
this.$parent.passiveRedraw(this.midwayPointList)
},
additionLocation() {
this.midwayPointList.push({
longitude: '',
latitude: '',
title: ''
})
},
getElement() {
return this.styles.top + this.styles.height + 10 + this.header.height
},
@ -160,7 +184,7 @@
[this.menuList[0], this.menuList[1], this.menuList[2], this.menuList[3]] = [this.menuList[0],
this.menuList[3], this.menuList[1], this.menuList[2]
];
console.log(this.menuList, '***')
// console.log(this.menuList, '***')
})
},
datassFn() {
@ -178,10 +202,10 @@
e.SublistOpen = !e.SublistOpen;
this.$emit('closeFooterScroll')
},
chooseLocation(e) {
chooseLocation(e, index) {
uni.navigateTo({
url: './chooseLocation?type=' +
`${e}/${this.Route.start.latitude},${this.Route.start.longitude}`
`${e}/${this.Route.start.latitude},${this.Route.start.longitude}/${index}/${JSON.stringify(this.midwayPointList)}`
})
},
backFn() {
@ -237,7 +261,11 @@
padding: 0 28rpx;
}
.addressInput {
margin: 7rpx 0;
position: relative;
background: #F0F0F0;
border-radius: 10px;
}
@ -257,7 +285,22 @@
}
.flexone {
flex: 1;
position: relative;
/* flex: 1; */
}
.addition,
.remove {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: -52rpx;
width: 42rpx;
height: 42rpx;
}
.height79 {
height: 79rpx;
}
.yuan {
@ -268,10 +311,11 @@
}
.sele_car_right {
/* position: relative; */
flex-direction: column;
flex: 1;
/* padding: 0 27.2rpx; */
padding-left: 27.2rpx;
width: 100%;
}
.flex {
@ -287,10 +331,10 @@
}
.sele_car {
height: 194rpx;
/* height: 194rpx; */
background: #FFFFFF;
border-radius: 10px;
padding: 18rpx 32rpx;
padding: 18rpx 37px 22rpx 32rpx;
display: flex;
}

@ -54,6 +54,7 @@
latitude: '',
title: ''
},
midwayPointList: [], //list
end: {
longitude: '',
latitude: '',
@ -90,6 +91,50 @@
}
},
methods: {
//
UpdateAddress() {
let that = this
uni.$on('UpdateAddress', (region, type, currentMidwayIndex, midwayPointList) => {
if (type === 'midwayPoint') {
let list = JSON.parse(midwayPointList)
list[currentMidwayIndex].longitude = region.location.lng
list[currentMidwayIndex].latitude = region.location.lat
list[currentMidwayIndex].title = region.title;
let addressSelector = this.$refs.addressSelector
addressSelector.midwayPointList[currentMidwayIndex].longitude = region.location.lng
addressSelector.midwayPointList[currentMidwayIndex].latitude = region.location.lat
addressSelector.midwayPointList[currentMidwayIndex].title = region.title;
this.Route.midwayPointList = list
} else {
this.Route[type].longitude = region.location.lng;
this.Route[type].latitude = region.location.lat;
this.Route[type].title = region.title;
}
this.Route['midwayPointList'].forEach((item, index) => {
if (!item.longitude || !item.latitude) {
this.$refs.addressSelector.midwayPointList.splice(index, 1)
this.Route.midwayPointList.splice(index, 1)
}
})
this.mapEventListeners('updateRoute', this.Route.start, this.Route.end)
this.mapEventListeners('UpdateLocation', this.Route, 'lately')
})
},
passiveRedraw(midwayPointList) {
this.Route.midwayPointList = midwayPointList
this.mapEventListeners('updateRoute')
},
perspectives(item) {
let {
latitude,
@ -139,7 +184,7 @@
let {
oilProductCode, juLi, siteChannel
} = arguments[1];
let markerList = await this.mapUpdateMarkers(this.polyline[0].points, oilProductCode, juLi,
let markerList = await this.mapUpdateMarkers(this.polyline[2].points, oilProductCode, juLi,
siteChannel);
//
@ -196,9 +241,10 @@
// 线
async mapRoutePlanning(start = this.Route.start, end = this.Route.end, strategy = 'LEAST_TIME') {
//
let res = await this.getMapRoutePlanning(start, end);
await this.routePlanning(start, end)
// let res = await this.getMapRoutePlanning(start, end);
//
this.polyline = this.RoutePlanningHandle(res);
// this.polyline = this.RoutePlanningHandle(res);
//
this.zoomRoutePlanning();
//
@ -207,7 +253,8 @@
juLi,
siteChannel
} = this.$refs.addressSelector.datassFn();
let markerList = await this.mapUpdateMarkers(this.polyline[0].points, oilProductCode, juLi,
let markerList = await this.mapUpdateMarkers(this.polyline[2].points, oilProductCode, juLi,
siteChannel);
//
@ -235,18 +282,7 @@
closeAddressSelector() {
this.$refs.addressSelector.menuList.forEach(item => item.SublistOpen = false);
},
//
UpdateAddress() {
let that = this
uni.$on('UpdateAddress', function(region, type) {
// console.log(`%c ${(type=='start'?'':'')} ${region.title}`,'color:red;font-size:50px')
that.Route[type].longitude = region.location.lng;
that.Route[type].latitude = region.location.lat;
that.Route[type].title = region.title;
that.mapEventListeners('updateRoute', that.Route.start, that.Route.end)
that.mapEventListeners('UpdateLocation', that.Route, 'lately')
})
},
//
openMapApp() {
let that = this
@ -265,10 +301,12 @@
},
//线
getMapRoutePlanning(start, end) {
// this.routePlanning(start, end)
let {
seleIndex
} = this.$refs.footerScroll.$data
var _this = this;
return new Promise(function(res, rej) {
_this.TXSDK.direction({
@ -278,7 +316,6 @@
to: end,
policy: seleIndex || 'LEAST_TIME',
success: function(e) {
console.log('获取路线规划成功')
res(e)
},
fail(e) {
@ -289,24 +326,76 @@
});
}, 1000)
rej(e)
console.log('获取路线规划失败', e)
}
})
})
},
routePlanning(start, end) {
let threeLines = []
let {
seleIndex
} = this.$refs.footerScroll.$data
let waypoints = ''
if (this.Route.midwayPointList.length) {
this.Route.midwayPointList.forEach(item => {
waypoints += `${waypoints.length ? ';' : ''}${item.latitude},${item.longitude}`
})
}
let _transfer = (policy) => {
return new Promise((resolve, reject) => {
this.TXSDK.direction({
sig: 'mOPvEv4WmyaxymycTYy00pSiad2jnQil',
mode: 'driving',
from: start,
to: end,
waypoints: waypoints,
policy: policy,
success: res => {
resolve(res)
}
})
})
}
let map = {
// 线
'LEAST_TIME': [1, 2, 0],
'LEAST_FEE': [0, 2, 1],
'AVOID_HIGHWAY': [0, 1, 2]
}
return Promise.all([_transfer('LEAST_TIME'), _transfer('LEAST_FEE'), _transfer('AVOID_HIGHWAY')])
.then(res => {
let currentMap = map[seleIndex]
currentMap.forEach((item, index) => {
let currentRes = res[item]
let [result] = this.RoutePlanningHandle(currentRes)
if (index == 2) {
result.color = '#FF6700'
} else {
result.color = '#00BFFF'
}
threeLines.push(result)
})
this.polyline = threeLines
})
},
//线
RoutePlanningHandle(res) {
var _this = this;
var ret = res;
var coors = ret.result.routes[0].polyline,
pl = [];
//
var kr = 1000000;
for (var i = 2; i < coors.length; i++) {
coors[i] = Number(coors[i - 2]) + Number(coors[i]) / kr;
let coors = res.result.routes[0].polyline
let pl = [];
//
let kr = 1000000;
for (let i = 2; i < coors.length; i++) {
coors[i] = Number(coors[i - 2]) + Number(coors[i]) / kr;
}
//pl
for (var i = 0; i < coors.length; i += 2) {
for (let i = 0; i < coors.length; i += 2) {
pl.push({
latitude: coors[i],
longitude: coors[i + 1],
@ -318,8 +407,8 @@
return [{
points: pl,
color: '#FF6700',
width: 4,
distance: ret.result.routes[0].distance
width: 5,
distance: res.result.routes[0].distance
}]
},
/* 缩放路线规划 includePoints方法 points:经纬度数组 padding:边距 参考 https://uniapp.dcloud.io/api/location/map?id=cdreatemapcontext */
@ -356,7 +445,7 @@
console.log('点击地图')
},
//markers
async mapUpdateMarkers(points = this.polyline[0].points, oilProductCode = '0#', juLi = '5', siteChannel = '') {
async mapUpdateMarkers(points = this.polyline[2].points, oilProductCode = '0#', juLi = '5', siteChannel = '') {
//
let {
latitude,
@ -372,8 +461,8 @@
latitude: latitude || this.coordinate.latitude,
longitude: longitude || this.coordinate.longitude
}
let taht = this;
return new Promise(function(re, rj) {
// let taht = this;
return new Promise((re, rj) => {
oilSiteApi.getSiteByGeoHashNew(data).then(markerList => {
if (markerList.code !== 20000) {
setTimeout(() => {
@ -385,7 +474,7 @@
rj(markerList.code + markerList.msg)
return
}
taht.selePrice = {
this.selePrice = {
middlePrice: markerList.data.middlePrice,
minPrice: markerList.data.minPrice
}
@ -436,22 +525,18 @@
},
//
markertap(e) {
console.log(e, '点击了ma')
console.log('点击了markertap')
},
//
getCurrentLocation() {
// let that = this
uni.getLocation({
type: 'gcj02',
success: (res) => {
// ({
// latitude: that.coordinate.latitude,
// longitude: that.coordinate.longitude
// } = res);
let {
latitude,
longitude
} = res
this.coordinate.latitude = latitude
this.firstLocation.latitude = latitude

Binary file not shown.

After

Width:  |  Height:  |  Size: 909 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 871 B

@ -3,49 +3,53 @@
<cu-custom class="main-totextbar bg-main-oil" bgColor="bg-main-oil">
<block slot="content">附近油站</block>
</cu-custom>
<view style="flex: 1;" class="flex_column">
<view class="headList">
<view class="headList_head" v-for="(list,i) in tabHeadS" :class="[TabHead == i? 'ativeHead':'']" :key='i' @tap='changeHaed(list.value)'>
{{list.title}}
</view>
</view>
<!-- fixed-top-site -->
<view class="">
<view class="cu-bar search bg-white">
<view class="search-form round">
<text class="cuIcon-search"></text>
<input @focus="InputFocus" confirm-type="search" @confirm="onSearch"
@blur="InputBlur" v-model="siteName" :adjust-position="false" type="text" placeholder="请输入搜索站点名称" />
</view>
<view class="action" @tap="toMap">
<image class="icon shadow-blur round icon-gasstation"
src="https://www.51xingka.net/LSMOIL/static/img/gas-station.png" mode=""></image>
<view style="flex: 1;" class="flex_column">
<view class="headList">
<view class="headList_head" v-for="(list,i) in tabHeadS" :class="[TabHead == i? 'ativeHead':'']"
:key='i' @tap='changeHaed(list.value)'>
{{list.title}}
</view>
</view>
</view>
<!-- 筛选开始 -->
<scroll-view style="flex: 1;" class="screentop bg-white">
<view @click="reunrnFn" class="">
<sl-filter reflexTitle ref="slFilter" v-if="TabHead == 0" :productCodeList="productCodeList" :areaCodeList="areaCodeList" @result="filterRes" :menuList="menuList" ></sl-filter>
<sl-filter reflexTitle ref="slFilter" @result="filterRes" :menuList="ureaMenuList" v-if="TabHead == 1 && changeHs == true"></sl-filter>
<sl-filter reflexTitle ref="slFilter" @result="filterRes" :menuList="productTypes" v-if="changeHs == false && TabHead == 1 "></sl-filter>
<!-- fixed-top-site -->
<view class="">
<view class="cu-bar search bg-white">
<view class="search-form round">
<text class="cuIcon-search"></text>
<input @focus="InputFocus" confirm-type="search" @confirm="onSearch" @blur="InputBlur"
v-model="siteAddress" :adjust-position="false" type="text" placeholder="请输入搜索站点名称" />
</view>
<view class="action" @tap="toMap">
<image class="icon shadow-blur round icon-gasstation"
src="https://www.51xingka.net/LSMOIL/static/img/gas-station.png" mode=""></image>
</view>
</view>
</view>
<view class="bg-white min-height-50 padding-top" v-if="siteList.length>0">
<site-item v-for="(item,index) in siteList" :key="item.id" :site-item="item" :first="index==0"
class="cu-list menu-avatar cu-item" @tap="toDetail(item)" v-if="TabHead == 0">
</site-item>
<ureaItem v-for="(list,index) in siteList" :key="list.id" :site-item="list" :first="index==0"
class="cu-list menu-avatar cu-item" @tap="ureaToDetail(list)" v-if="TabHead == 1">
</ureaItem>
<view class="placeholder-hidden"></view>
</view>
<view style="min-height: 100vh;" class="" v-else>
<my-empty></my-empty>
</view>
</scroll-view>
<!-- 筛选开始 -->
<scroll-view style="flex: 1;" class="screentop bg-white">
<view @click="reunrnFn" class="">
<sl-filter reflexTitle ref="slFilter" v-if="TabHead == 0" :productCodeList="productCodeList"
:areaCodeList="areaCodeList" @result="filterRes" :menuList="menuList"></sl-filter>
<sl-filter reflexTitle ref="slFilter" @result="filterRes" :menuList="ureaMenuList"
v-if="TabHead == 1 && changeHs == true"></sl-filter>
<sl-filter reflexTitle ref="slFilter" @result="filterRes" :menuList="productTypes"
v-if="changeHs == false && TabHead == 1 "></sl-filter>
</view>
<view class="bg-white min-height-50 padding-top" v-if="siteList.length>0">
<site-item v-for="(item,index) in siteList" :key="item.id" :site-item="item" :first="index==0"
class="cu-list menu-avatar cu-item" @tap="toDetail(item)" v-if="TabHead == 0">
</site-item>
<ureaItem v-for="(list,index) in siteList" :key="list.id" :site-item="list" :first="index==0"
class="cu-list menu-avatar cu-item" @tap="ureaToDetail(list)" v-if="TabHead == 1">
</ureaItem>
<view class="placeholder-hidden"></view>
</view>
<view style="min-height: 100vh;" class="" v-else>
<my-empty></my-empty>
</view>
</scroll-view>
</view>
<view class="bg-white">
<view class="bg-white">
<uni-load-more :status="loadText"></uni-load-more>
</view>
</view>
@ -67,43 +71,40 @@
data() {
return {
companyCard:uni.getStorageSync('companyCard'),
getSiteListTimer:null,
areaCodeList:[],
loadText:'more',
changeHs:true,
TabHead:0,
tabHeadS:[
{
title:'加油站',
value:0,
},{
title:'尿素站',
value:1,
}
],
productCodeList:null,
companyCard: uni.getStorageSync('companyCard'),
getSiteListTimer: null,
areaCodeList: [],
loadText: 'more',
changeHs: true,
TabHead: 0,
tabHeadS: [{
title: '加油站',
value: 0,
}, {
title: '尿素站',
value: 1,
}],
productCodeList: null,
filterDatas: {
oilProductCode: '0#'
},
ureaFilterDatas:[],
ureaFilterDatas: [],
loadStatus: 'load',
siteName: '',
menuList: [
{
title: '距离优先',
isMutiple: false,
key: 'sort',
detailList: [{
title: "距离优先",
value: 'juli'
},
{
title: "价格优先",
value: 'price'
}
]
},
siteAddress: '',
menuList: [{
title: '距离优先',
isMutiple: false,
key: 'sort',
detailList: [{
title: "距离优先",
value: 'juli'
},
{
title: "价格优先",
value: 'price'
}
]
},
{
title: '距离',
isMutiple: false,
@ -130,15 +131,7 @@
}
]
},
// {
// title: '',
// isMutiple: false,
// key: 'channelCode',
// detailList: [{
// title: "",
// value: ""
// }]
// },
{
title: '0#轻柴油',
key: 'oilProductCode',
@ -153,7 +146,7 @@
key: 'siteBrand',
isSort: true,
isMutiple: false,
detailLists:[{
detailLists: [{
title: "全部",
value: ""
}],
@ -163,22 +156,20 @@
}]
}
],
ureaMenuList:[
{
ureaMenuList: [{
title: '加注方式',
isMutiple: false,
key: 'formats',
detailList: [{
title: "全部",
value: ""
},{
}, {
title: "加注机",
value: "1"
},{
}, {
title: "桶装",
value: "2"
},
]
}, ]
},
{
title: '桶装品牌',
@ -188,31 +179,29 @@
title: "全部",
value: ""
}]
},],
productTypes:[
{
},
],
productTypes: [{
title: '加注方式',
isMutiple: false,
key: 'formats',
detailList: [
{
detailList: [{
title: "全部",
value: ""
},{
}, {
title: "加注机",
value: "1"
},{
}, {
title: "桶装",
value: "2"
},
]
}] ,
}, ]
}],
siteList: [],
InputBottom: 0,
show: false,
currentPage: 1,
brandName:'',
productType:'',
brandName: '',
productType: '',
isLoadMore: false, //
}
},
@ -239,23 +228,22 @@
},
onShow() {
this.refreshLocation()
let storykey = uni.getStorageInfoSync()
let nowCompanyCard = uni.getStorageSync('companyCard')
if(this.companyCard&&this.companyCard!==nowCompanyCard){
let storykey = uni.getStorageInfoSync()
let nowCompanyCard = uni.getStorageSync('companyCard')
if (this.companyCard && this.companyCard !== nowCompanyCard) {
this.companyCard = uni.getStorageSync('companyCard');
this.updateFn()
this.updateFn()
}
},
onLoad() {
onLoad() {
if (!uni.getStorageSync('filterDatas')) {
this.getFilterData()
} else{
}
this.getFilterData()
} else {}
this.findPriceDetails()
if (uni.getStorageSync('productCodeList')) {
this.productCodeList = uni.getStorageSync('productCodeList')
}
this.getSiteList()
this.getSiteList()
},
onPullDownRefresh() {
this.updateFn()
@ -263,11 +251,11 @@
onReachBottom() {
if (this.loadStatus == 'load') {
setTimeout(() => {
if(this.TabHead == 0){
if (this.TabHead == 0) {
this.getSiteList()
}else if(this.TabHead == 1){
} else if (this.TabHead == 1) {
this.getUreaList()
}
}
}, 100)
} else {
uni.showToast({
@ -275,57 +263,57 @@
icon: 'none'
})
}
},
},
methods: {
updateFn(){
updateFn() {
this.filterRes(this.filterDatas)
setTimeout(function() {
uni.stopPullDownRefresh()
}, 600);
},
reunrnFn(){
reunrnFn() {
},
getUreaList(){
let location = uni.getStorageSync('location')
getUreaList() {
let location = uni.getStorageSync('location')
let data1 = {
currentPage: this.currentPage,
pageSize: 10,
params: { //Object //
siteNameOrId:this.siteName,//()
productType: this.productType? this.productType:'',//1- 2-
brandName: this.brandName ? this.brandName:'', //
currentLongitude:location.longitude+'',//
currentLatitude:location.latitude+'', //
siteNameOrId: this.siteName, //()
productType: this.productType ? this.productType : '', //1- 2-
brandName: this.brandName ? this.brandName : '', //
currentLongitude: location.longitude + '', //
currentLatitude: location.latitude + '', //
}
}
ureaSiteApi.getByPageMobile(data1).then(res=>{
ureaSiteApi.getByPageMobile(data1).then(res => {
if (res.code == 20000) {
let objs = []
res.data.list.forEach( ele =>{
res.data.list.forEach(ele => {
let tag
if(ele.productType == 1){
if (ele.productType == 1) {
tag = '加注机'
} else if(ele.productType == 2){
} else if (ele.productType == 2) {
tag = '桶装'
}
}
let obj = {
address: ele.address,
address: ele.address,
id: ele.id,
juli: ele.totalDistance,
latitude: parseInt(ele.lat),
listTag:tag,
longitude:parseInt(ele.lng),
listTag: tag,
longitude: parseInt(ele.lng),
siteCustomerMark: null,
siteId: ele.siteId,
siteName:ele.siteName,
siteId: ele.siteId,
siteName: ele.siteName,
sitePrice: ele.price,
formats: ele.formats,
price: ele.price
}
objs.push(obj)
})
this.siteList = this.siteList.concat(objs)
if (res.data.list.length < 10) { //
this.loadStatus = 'nomore'
@ -336,39 +324,33 @@
}
})
},
changeHaed(code){
changeHaed(code) {
this.TabHead = code
this.siteList = []
this.siteName = ''
this.siteAddress = ''
this.currentPage = 1
if(code == 1){
this.getUreaList()
}else if(code == 0){
this.getSiteList()
if (code == 1) {
this.getUreaList()
} else if (code == 0) {
this.getSiteList()
}
},
ureaToDetail(list){
ureaToDetail(list) {
let itemS = JSON.stringify(list)
if (uni.getStorageSync('user')) {
uni.navigateTo({
url: `/BagStation/pages/ureaDetail/ureaDetail?item=${itemS}`,
fail: (err) => {
// console.log(err)
},
success: () => {
// console.log('err')
}
url: `/BagStation/pages/ureaDetail/ureaDetail?item=${itemS}`
})
} else {
uni.showModal({
title:'请您登录',
content:"登录小星加油才可以加油 |˛˙꒳˙)♡",
confirmText:'去登陆',
title: '请您登录',
content: "登录小星加油才可以加油 |˛˙꒳˙)♡",
confirmText: '去登陆',
success: (res) => {
if(res.confirm){
if (res.confirm) {
uni.reLaunch({
url:'../../../BagAuth/pages/login/login'
url: '../../../BagAuth/pages/login/login'
})
}
}
@ -376,19 +358,19 @@
}
},
filterRes(val) {
console.log(val,'重置')
if(this.TabHead ==0){
this.filterDatas = val
console.log(val, '重置')
if (this.TabHead == 0) {
this.filterDatas = val
this.currentPage = 1
this.siteList = []
this.getSiteList()
}else{
if( val.formats == 2){
} else {
if (val.formats == 2) {
this.changeHs = true
}else{
} else {
this.changeHs = false
}
this.filterDatas = val
this.filterDatas = val
this.productType = val.formats
this.brandName = val.productType
this.currentPage = 1
@ -398,19 +380,18 @@
},
getFilterData() {
oilSiteApi.getCheckInfo().then(res => {
console.log('resresresresres',res)
if (res.code == 20000) {
uni.setStorageSync('productCodeList', res.data.productCodeList)
uni.setStorageSync('areaCodeList', res.data.areaCodeList)
if(uni.getStorageSync('areaCodeList')){
if (uni.getStorageSync('areaCodeList')) {
this.areaCodeList = uni.getStorageSync('areaCodeList')
}else{
} else {
this.areaCodeList = res.data.areaCodeList
}
this.productCodeList = uni.getStorageSync('productCodeList')
// console.log(this.productCodeList,'')
res.data.channelCodes.map(item => {
// this.menuList[1].detailList.push({
this.menuList[3].detailLists.push({
title: item.name,
value: item.id
@ -428,53 +409,46 @@
value: item.id
})
})
let data = [
{
let data = [{
title: '全部',
value: ''
},
{
title: '一级油站',
value: 'A'
},{
}, {
title: '二级油站',
value: 'B'
},{
}, {
title: '三级油站',
value: 'C'
},{
}, {
title: '四级油站',
value: 'D'
},{
}, {
title: '一级油站',
value: 'E'
},
]
// this.oliMenuList[3].detailList = data
// // console.log(channelCodes, productCodes, siteBrands)
// this.$refs.slFilter.resetMenuList(this.menuList)
}
console.log(this.menuList,uni.getStorageSync('areaCodeList'),'----')
console.log(this.menuList, uni.getStorageSync('areaCodeList'), '----')
})
},
onSelected(e) {
// console.log(e)
},
findPriceDetails(){
ureaSiteApi.findPriceDetails().then(res=>{
// console.log(res)
res.data.forEach(item=>{
let obj={
title:item,
value:item
findPriceDetails() {
ureaSiteApi.findPriceDetails().then(res => {
res.data.forEach(item => {
let obj = {
title: item,
value: item
}
// console.log(obj)
this.ureaMenuList[1].detailList.push(obj)
// this.productTypes[0].detailList.push(obj)
})
})
console.log(this.ureaMenuList)
console.log(this.productTypes)
})
})
},
refreshLocation() {
uni.getLocation({
@ -503,54 +477,46 @@
})
},
getSiteList() {
this.refreshLocation()
this.refreshLocation()
let location = uni.getStorageSync('location')
console.log(this.filterDatas)
let data1 = {
currentPage: this.currentPage,
pageSize: 10,
params: { //Object //
// sort: "juli", //String // ( price juli )
siteName: this.siteName,
params: {
siteAddress: this.siteAddress,
...uni.getStorageSync('location'),
// ...this.filterData
// siteBrand: this.siteName ? '' : this.filterDatas
siteBrand: this.filterDatas
.siteBrand, // // ( 1- 2- 3- 4- 5- 6- 7- 8- )
// channelCode: this.siteName ? '' : this.filterDatas
.siteBrand, // // ( 1- 2- 3- 4- 5- 6- 7- 8- )
channelCode: this.filterDatas
.channelCode, // // ( OIL WJY LV TY YDJY)
// oilProductCode: this.siteName ? '' : this.filterDatas
oilProductCode:this.filterDatas
.oilProductCode ,// // ( 0# 92# 92#)
// siteLevel: this.siteName ? '' : this.filterDatas
.channelCode, // // ( OIL WJY LV TY YDJY)
oilProductCode: this.filterDatas
.oilProductCode, // // ( 0# 92# 92#)
siteLevel: this.filterDatas
.siteLevel ,
sort:this.filterDatas.sort?this.filterDatas.sort:'juli',
provinceCode:this.filterDatas.provinceCode,
cityCode:this.filterDatas.cityCode,
areaCode:this.filterDatas.areaCode,
distance:this.filterDatas.distance
.siteLevel,
sort: this.filterDatas.sort ? this.filterDatas.sort : 'juli',
provinceCode: this.filterDatas.provinceCode,
cityCode: this.filterDatas.cityCode,
areaCode: this.filterDatas.areaCode,
distance: this.filterDatas.distance
}
}
if (!uni.getStorageSync('Authorization')) {
data1.params.role = 1
oilSiteApi.readOnlySites(data1).then(res => {
if (res.code == 20000) {
console.log(res,'+++')
this.siteList = this.siteList.concat(res.data.list)
if (res.data.list.length < 10) { //
this.loadStatus = 'nomore'
} else {
this.currentPage++
this.loadStatus = 'load'
}
oilSiteApi.readOnlySites(data1).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.getSiteList(data1).then(res => {
if (res.code == 20000) {
console.log(res,'+++')
console.log(res, '+++')
this.siteList = this.siteList.concat(res.data.list)
if (res.data.list.length < 10) { //
this.loadStatus = 'nomore'
@ -561,84 +527,22 @@
}
})
}
},
// getSiteList() {
// this.refreshLocation()
// let data1 = {
// currentPage: this.currentPage,
// pageSize: 10,
// params: { //Object //
// sort: "juli", //String // ( price juli )
// siteName: this.siteName,
// longitude: 116.397451, // //
// latitude: 39.909187, // //
// ...uni.getStorageSync('location'),
// // ...this.filterData
// siteBrand: this.siteName ? '' : this.filterData
// .siteBrand, // // ( 1- 2- 3- 4- 5- 6- 7- 8- )
// channelCode: this.siteName ? '' : this.filterData
// .channelCode, // // ( OIL WJY LV TY YDJY)
// oilProductCode: this.siteName ? '' : this.filterData
// .oilProductCode // // ( 0# 92# 92#)
// }
// }
// if (!uni.getStorageSync('Authorization')) {
// oilSiteApi.readOnlySites(data1).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.getSiteList(data1).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'
// }
// }
// })
// }
},
// },
toDetail(item) {
// console.log(item)
// console.log('')
let itemS = JSON.stringify(item)
let itemS = JSON.stringify(item)
if (uni.getStorageSync('user')) {
if(item.channelCode==='TY'){
uni.setStorageSync('OtherSiteInfo',item)
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')
}
url: `/BagStation/pages/stationDetail/stationDetail?channerCode=${item.channelCode}`
})
return
}
uni.navigateTo({
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`,
fail: (err) => {
// console.log(err)
},
success: () => {
// console.log('err')
}
url: `/BagStation/pages/stationDetail/stationDetail?item=${itemS}`
})
} else {
uni.showModal({
@ -657,14 +561,11 @@
},
nameSelect(value, item) {
this.title2 = item.text
// console.log(item)
},
typeSelect(value, item) {
// console.log(item)
this.title1 = item.text
},
optionSelect(value, item) {
// console.log(item)
this.title3 = item.text
},
toMap() {
@ -674,49 +575,44 @@
},
InputFocus(e) {
this.InputBottom = e.detail.height
// console.log(e.detail)
// console.log(this.InputBottom)
},
InputBlur(e) {
this.InputBottom = 0
// console.log(this.InputBottom)
// console.log(e.detail)
},
onInput() {
// setTimeout(() => {
// this.currentPage = 1
// this.siteList = []
// this.getSiteList()
// }, 100)
clearTimeout(this.getSiteListTimer);
this.getSiteListTimer = setTimeout(()=>{
this.getSiteListTimer = setTimeout(() => {
this.currentPage = 1
this.siteList = []
this.getSiteList()
},500);
}, 500);
},
onSearch() {
clearTimeout(this.getSiteListTimer);
this.getSiteListTimer = setTimeout(()=>{
this.getSiteListTimer = setTimeout(() => {
this.currentPage = 1
this.siteList = []
if(this.TabHead == 0){
if (this.TabHead == 0) {
this.getSiteList()
}else if (this.TabHead == 1){
} else if (this.TabHead == 1) {
this.getUreaList()
}
},500)
}, 500)
}
}
}
</script>
<style scoped>
.flex_column{display: flex;flex-direction: column;}
.headList_head{
.flex_column {
display: flex;
flex-direction: column;
}
.headList_head {
padding: 2% 0;
width: 16%;
text-align: center;
@ -725,33 +621,36 @@
border-bottom: 2px solid #fff;
margin: 0% 3%;
}
.headList{
.headList {
display: flex;
justify-content: space-around;
align-items: center;
background-color: #fff;
background-color: #fff;
padding: 1% 3%;
}
.ativeHead{
.ativeHead {
color: red;
border-bottom: 2px solid red;
}
.icon-gasstation {
width: 1.2rem;
height: 1.2rem;
}
.placeholder-hidden {
/* min-height: 95upx; */
}
.fixed-top-site {
/* top: 120rpx; */
z-index: 4;
position: fixed;
width: 750upx;
}
.min-height-50 {
min-height: 50vh;
}

@ -5,7 +5,7 @@ import utils from '@/utils/encode'
// const env = 'test'
const env = 'production'
// 45
const testUrl = 'http://192.168.1.83:38080'
const testUrl = 'http://192.168.1.132:38080'
// const productUrl = 'https://www.xingoil.com/adminapi'
const productUrl = 'http://uat.xingoil.com/adminapi'

Loading…
Cancel
Save