From 0f4ae76f61182c19fe6bf1d7e1c025a860ee5f82 Mon Sep 17 00:00:00 2001 From: tx <2622874537@qq.com> Date: Thu, 17 Oct 2024 18:08:10 +0800 Subject: [PATCH] 11 --- common/http.interceptor.js | 4 +- components/tab-bar/tab-bar.vue | 2 +- page_user/user_order.vue | 70 +++++++++++++++- pages/index/index.vue | 147 ++++++++++++++++++++++++++------- pages/login/login.vue | 23 ++++-- pages/my.vue | 3 + 6 files changed, 206 insertions(+), 43 deletions(-) diff --git a/common/http.interceptor.js b/common/http.interceptor.js index b05298d..994201b 100644 --- a/common/http.interceptor.js +++ b/common/http.interceptor.js @@ -7,9 +7,9 @@ const install = (Vue, vm) => { // baseUrl: 'http://192.168.2.46:8080', // baseUrl: 'https://che.chuangtewl.com/prod-api', // 测试环境 - baseUrl: 'https://testzc.chuangtewl.com/prod-api', + baseUrl: 'https://zc.chuangtewl.com/prod-api', // 俞山岛 - // baseUrl: 'http://192.168.2.228:8090', + // baseUrl: 'http://192.168.2.20:8090', // baseUrl: 'http://47.120.68.19:8090', // 创特 diff --git a/components/tab-bar/tab-bar.vue b/components/tab-bar/tab-bar.vue index 7103638..25ffbe9 100644 --- a/components/tab-bar/tab-bar.vue +++ b/components/tab-bar/tab-bar.vue @@ -1,7 +1,7 @@ @@ -150,11 +150,39 @@ dataIndex: 0, dataInfo: {}, shopList: [], - userInfo:{} + userInfo: {}, + qParam:'', + sn:'' } }, - onLoad() { + onLoad(e) { + console.log(e); + if (e.q) { + this.qParam = e.q + if (this.qParam != 'null' ) { + let qParam = this.qParam + console.log(qParam, 'qParamqParamqParam'); + // 第2步: URL解码q参数 + let decodedUrl = decodeURIComponent(qParam); + + // 第3步: 使用正则表达式解析解码后的URL并提取查询参数 + let sn = null; + let queryParams = decodedUrl.split('?')[1]; + if (queryParams) { + let params = queryParams.split('&'); + params.forEach(param => { + let [key, value] = param.split('='); + if (key === 'sn') { + sn = value; + } + }); + } + this.sn = sn + + } + + } this.getcityList() this.getdata() }, @@ -162,7 +190,12 @@ }, onShow() { - this.getUserInfo() + if(this.userInfo.userId){ + + }else{ + this.getUserInfo() + } + let that = this uni.getLocation({ type: 'gcj02', @@ -170,9 +203,10 @@ that.gps.latitude = lb.latitude; that.gps.longitude = lb.longitude; + that.getshopList() that.getCity() that.getaddress() - that.getshopList() + }, fail: function(error) { uni.showToast({ @@ -201,47 +235,98 @@ }, methods: { - getUserInfo(){ - this.$u.get("/getInfo").then((res) => { - if(res.code==200){ - this.userInfo=res.user - console.log(this.userInfo); - } - - - }); - }, - tomap(){ + getsn(){ if(this.userInfo.userId){ - uni.navigateTo({ - url:'/page_user/mapSele?index='+this.dataIndex - }) + let data = { + sn: this.sn + } + this.$u.get(`appVerify/getInProgressOrder?`, data).then((res) => { + if (res.code == 200) { + // if(res.data.) + // this.getstoreInfo() + if(res.data){ + uni.navigateTo({ + url:'/pages_device/carInfo?sn='+this.sn + }) + }else{ + this.$u.get('app/getDeviceBySn?sn=' + this.sn).then((res) => { + console.log(res, 'rererer'); + if (res.code === 200) { + // console.log(this.areaId,); + uni.redirectTo({ + url:'/page_user/ordder?storeId='+res.data.storeId+'&modelId='+res.data.modelId + }) + + } else { + uni.showToast({ + title: res.msg, + icon: 'none', + duration: 2000 + }); + } + }) + } + + } else { + uni.showToast({ + title: res.msg, + icon: 'none', + duration: 2000 + }); + } + }); }else{ uni.navigateTo({ - url:'/pages/login/login' + url:'/pages/login/login?qParam='+this.qParam }) } - console.log(this.dataInfo,'dataInfo'); + }, + getUserInfo() { + this.$u.get("/getInfo").then((res) => { + if (res.code == 200) { + this.userInfo = res.user + + + + } + if(this.sn!=''){ + this.getsn() + } + + }); + }, + tomap() { + if (this.userInfo.userId) { + uni.navigateTo({ + url: '/page_user/mapSele?index=' + this.dataIndex + }) + } else { + uni.navigateTo({ + url: '/pages/login/login' + }) + } + console.log(this.dataInfo, 'dataInfo'); + // this.dataInfo = item // this.dataIndex = index }, - toTips(){ + toTips() { uni.navigateTo({ - url:'/page_user/tips' + url: '/page_user/tips' }) }, toStore(item) { - if(this.userInfo.userId){ + if (this.userInfo.userId) { uni.navigateTo({ url: '/page_user/carStore?storeId=' + item.storeId }) - }else{ + } else { uni.navigateTo({ - url:'/pages/login/login' + url: '/pages/login/login' }) } - + }, getshopList() { let data = { @@ -381,16 +466,16 @@ }); }, tosele() { - if(this.userInfo.userId){ + if (this.userInfo.userId) { uni.navigateTo({ url: '/page_user/carSelection' }) - }else{ + } else { uni.navigateTo({ - url:'/pages/login/login' + url: '/pages/login/login' }) } - + }, diff --git a/pages/login/login.vue b/pages/login/login.vue index fbd3af1..0543785 100644 --- a/pages/login/login.vue +++ b/pages/login/login.vue @@ -245,10 +245,14 @@ codeButtonText2: '获取验证码', countdown2: 60, openCode:null, + qParam:'' } }, - onLoad() { - + onLoad(e) { + if(e.qParam){ + this.qParam=e.qParam + } + console.log(e); }, computed: { codeButtonStyle() { @@ -641,11 +645,18 @@ this.$u.get("/getInfo").then((res) => { console.log('进入跳转',res); if(res.user.isAuthentication){ - uni.navigateTo({ - url: '/pages/index/index' - }) + if(this.qParam!=''){ + uni.redirectTo({ + url: '/pages/index/index?q='+this.qParam + }) + }else{ + uni.redirectTo({ + url: '/pages/index/index' + }) + } + }else{ - uni.navigateTo({ + uni.redirectTo({ url:"/page_user/idcard_test" }) } diff --git a/pages/my.vue b/pages/my.vue index d412fd0..912a790 100644 --- a/pages/my.vue +++ b/pages/my.vue @@ -29,6 +29,9 @@ {{ typeReturn(item.status).text }} + + 已超时 + 取车方式:自行前往门店