From ce638a236f72b1d8f3ccb15dc5f94661a9fabc1d Mon Sep 17 00:00:00 2001 From: tx <2622874537@qq.com> Date: Mon, 9 Dec 2024 09:51:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/http.interceptor.js | 60 +------------- page_user/jfgz.vue | 8 +- pages/index/index.vue | 160 +++++++++++++++++++++++++----------- pages_admin/admin_worke.vue | 60 ++++++-------- 4 files changed, 142 insertions(+), 146 deletions(-) diff --git a/common/http.interceptor.js b/common/http.interceptor.js index af7f478..21a6bb2 100644 --- a/common/http.interceptor.js +++ b/common/http.interceptor.js @@ -22,18 +22,7 @@ const install = (Vue, vm) => { // 俞山岛: wx4d178f8c80348214 // 请求拦截部分 Vue.prototype.$u.http.interceptor.request = (config) => { - // 引用token - // 方式一,存放在vuex的token,假设使用了uView封装的vuex方式 - // 见:https://uviewui.com/components/globalVariable.html - // config.header.token = vm.token; - - // 方式二,如果没有使用uView封装的vuex方法,那么需要使用$store.state获取 - // config.header.token = vm.$store.state.token; - - // 方式三,如果token放在了globalData,通过getApp().globalData获取 - - // 方式四,如果token放在了Storage本地存储中,拦截是每次请求都执行的 - // 所以哪怕您重新登录修改了Storage,下一次的请求将会是最新值 + const token = uni.getStorageSync('token'); // const token = "Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjQ0ZDljYzBlLThjZjEtNGFkOC05OGFjLThlNThjMWIxYjQ3OSJ9.v-aMkp9t7Z_QfjfsZy6d_1Ng76hPYa0A--SWScMJY9to7UlNv9IxHQnTJylLKdYKGrr8fRZ47Bu12UPm1DgMQg" @@ -46,6 +35,8 @@ const install = (Vue, vm) => { // #endif // 可以对某个url进行特别处理,此url参数为this.$u.get(url)中的url值 if (config.url == '/user/login') config.header.noToken = true; + + // 最后需要将config进行return return config; @@ -55,50 +46,7 @@ const install = (Vue, vm) => { // 响应拦截部分 Vue.prototype.$u.http.interceptor.response = (res) => { - // if(res.code == 10022 || res.code == 10023) { - // // res为服务端返回值,可能有code,result等字段 - // // 这里对res.result进行返回,将会在this.$u.post(url).then(res => {})的then回调中的res的到 - // // 如果配置了originalData为true,请留意这里的返回值 - // uni.redirectTo({ - // url:"/pages/login/login", - // fail:function(mes){ - // console.log(mes) - // }, - // success:function(mes){ - // console.log(mes) - // } - // }) - // // return res.result; - // } - // if (res.code == 401) { - // wx.login({ - // success(res) { - // if (res.code) { - // // console.log('登录!', res); - // let areaId = uni.getStorageSync('areaId'); - // if (areaId) { - // vm.$u.post('/loginByopenid?jsCode=' + res.code + '&areaId=' + areaId).then( - // res => { - // uni.hideLoading(); - // if (res.code == 200) { - // uni.setStorageSync('token', res.token); - // } else if (res.code == 501) { - // uni.showToast({ - // title: res.msg, - // icon: 'none', - // duration: 2000 - // }); - // } else { - // uni.navigateTo({ - // url: '/pages/login/login' - // }) - // } - // }); - // } - // } - // }, - // }); - // } + return res; } diff --git a/page_user/jfgz.vue b/page_user/jfgz.vue index 00da0dd..15b1b43 100644 --- a/page_user/jfgz.vue +++ b/page_user/jfgz.vue @@ -7,7 +7,7 @@ 骑行服务费 - + 预约服务费 @@ -16,17 +16,17 @@ - + 押金 - {{areaInfo.vehicleManagementFee}}元 + {{areaInfo.deposit}}元 - + diff --git a/pages/index/index.vue b/pages/index/index.vue index 98659cb..10770db 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -1440,67 +1440,127 @@ export default { }); return; } +// this.showmap = false + // 发送请求获取数据 + this.areaInfo = {} + // console.log(this.qParam, 'qParamqParamqParamqParam'); + this.polyline = [] + // if(this.qParam){ - // 重置数据 - this.areaInfo = {} - this.polyline = [] + // } + // console.log(this.sn,'this.gps.sn this.gps.sn this.gps.sn '); - // 处理设备编号 - if (this.orderinfo.sn) { - this.gps.sn = this.orderinfo.sn - } - if (/^\d{7}$/.test(this.qParam)) { - this.gps.sn = this.qParam - } - if (this.deviceInfos.sn) { - this.gps.sn = this.deviceInfos.sn - } - if (this.qParam != '' && this.qParam != null) { - this.sn = this.getSNFromQRCode(this.qParam); - if (this.sn != 0 && this.sn != '' && this.sn != null) { - this.gps.sn = this.sn + // console.log(this.qParam,'qParamqParamqParamqParam'); + if (/^\d{7}$/.test(this.qParam)) { + this.gps.sn = this.qParam + console.log(this.gps.sn, 'this.gps.sn this.gps.sn this.gps.sn '); + } + if (this.orderinfo.sn != '') { + this.gps.sn = this.orderinfo.sn + } + if (this.deviceInfos.sn) { + this.gps.sn = this.deviceInfos.sn + } + if (this.qParam != '' && this.qParam != null) { + this.sn = this.getSNFromQRCode(this.qParam); + + if (this.sn != 0 && this.sn != '' && this.sn != null) { + this.gps.sn = this.sn + console.log(this.sn, 'qParamqParamqParamqParam'); + + } } - } - setTimeout(() => { this.$u.get('/app/area/info?', this.gps).then((res) => { - if (res.code === 200) { - const polylines = this.convertBoundaryToPolyline(res.data.boundaryStr) - this.areaInfo = res.data - this.polyline.push(polylines) - uni.setStorageSync('areaId', res.data.areaId); + // this.showmap = true + if (res.code === 200) { - // 基础数据获取 - this.getinfo() - this.getmarks() - this.getParking() + // 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构 + const polylines = this.convertBoundaryToPolyline(res.data.boundaryStr) + + // 更新折线数据 + this.areaInfo = res.data + setTimeout(() => { + let abb = this.cleanedText() + console.log(abb.length, 'cleanedTextcleanedTextcleanedText'); - if (uni.getStorageSync('token') && this.islogin) { - this.getisInOrder() - } + // 计算滚动时间,基于文本宽度 + this.duration = abb.length * 0.3; // 50 px/s 的速度 + }, 200) + + this.polyline.push(polylines) + console.log(); + // console.log(this.areaInfo, 'areaInfoareaInfo'); + uni.setStorageSync('areaId', res.data.areaId); + this.getinfo() + this.getmarks() + // this.getlist() + this.getParking() + if (uni.getStorageSync('token')&&this.islogin) { + this.getisInOrder() - // 处理设备信息 - if (this.gps.sn && /^\d{7}$/.test(this.gps.sn) && !this.isqrcode) { - if (!this.deviceInfos.sn) { - this.deviceInfo(this.qParam ? 1 : 0) - this.qParam = null } + const hasShownPopup = uni.getStorageSync('hasShownPopup'); + console.log(hasShownPopup, 'hasShownPopup'); + + if (hasShownPopup === '' || hasShownPopup === null) { + console.log('1111111111'); + + this.showTips = true; + this.startCountdown(); + uni.setStorageSync('hasShownPopup', true); + } else { + console.log('222'); + this.showTips = uni.getStorageSync('hasShownPopup'); + console.log(this.showTips, 'this.showTips'); + this.startCountdown(); + + } + if (this.gps.sn && /^\d{7}$/.test(this.gps.sn)) { + setTimeout(() => { + if (this.orderinfo.status) { + // this.showtcs = true + } else { + // if(this.showdevice==false&&){ + // console.log('进入的判断1'); + // this.deviceInfo(1) + // this.qParam = null + // } + if (this.deviceInfos.sn) { + + } else { + if (this.qParam) { + console.log('进入的判断2'); + this.deviceInfo(1) + this.qParam = null + } else { + console.log('进入的判断3'); + // if(this.de) + this.deviceInfo(0) + this.qParam = null + } + } + + + + } + + }, 200) + + } + + + } else { + uni.showToast({ + title: res.msg, + icon: 'none', + duration: 2000 + }); } - } else { - uni.showToast({ - title: res.msg, - icon: 'none', - duration: 2000 - }); - } - }).catch(error => { - console.error("Error fetching area data:", error); - }); - }, 500); - - + }).catch(error => { + console.error("Error fetching area data:", error); + }); }, - deviceInfo(num) { if (!this.sn) return; diff --git a/pages_admin/admin_worke.vue b/pages_admin/admin_worke.vue index d741311..d8c613c 100644 --- a/pages_admin/admin_worke.vue +++ b/pages_admin/admin_worke.vue @@ -1,4 +1,4 @@ -