diff --git a/page_user/agreement.vue b/page_user/agreement.vue index 8cde35a..24a755c 100644 --- a/page_user/agreement.vue +++ b/page_user/agreement.vue @@ -1,8 +1,16 @@ @@ -15,16 +23,39 @@ }, info: {}, userinfo: {}, - areaInfo:{} + areaInfo: {} + } + }, + onLoad(e) { + console.log(e, 'eee'); + if (e.needback) { + this.showbot = true } }, onShow() { this.getagree() }, methods: { - + ok() { + this.$store.commit('SET_SHOWAGRE',false); + console.log( this.$store.getters.showagre); + uni.redirectTo({ + url:'/pages/index/index' + }) + }, + quit() { + uni.exitMiniProgram({ + success: function() { + console.log('退出小程序成功'); + }, + fail: function(err) { + console.log('退出小程序失败', err); + } + }) + }, + getagree() { - let id = uni.getStorageSync('areaId'); + let id = 15 this.$u.get(`/app/article/list?areaId=${id}&tag=agreement`).then((res) => { if (res.code === 200) { this.info = res.rows[0]; @@ -61,7 +92,7 @@ // this.info.content = this.info.content.replace(/ /g, '\u00A0'); // }, insertPhoneNumberAndDate() { - + // 替换所有的 为 \u00A0 this.info.content = this.info.content.replace(/ /g, '\u00A0'); } @@ -78,6 +109,47 @@ .page { width: 750rpx; + .bottom { + position: fixed; + background: #fff; + bottom: 0; + width: 750rpx; + height: 200rpx; + display: flex; + flex-wrap: nowrap; + align-items: center; + justify-content: space-around; + // box-shadow: 12rpx 16rpx 40rpx 0rpx rgba(42,130,228,0.1); + .btn { + width: 250rpx; + height: 80rpx; + display: flex; + flex-wrap: nowrap; + align-items: center; + justify-content: center; + // border: 2rpx solid #000; + border-radius: 40rpx; + background: #ccc; + color: #fff; + font-size: 28rpx; + font-weight: 600; + } + .btn1{ + width: 250rpx; + height: 80rpx; + display: flex; + flex-wrap: nowrap; + align-items: center; + justify-content: center; + // border: 2rpx solid #000; + border-radius: 40rpx; + background: #4C97E7; + color: #fff; + font-size: 28rpx; + font-weight: 600; + } + } + .cont { margin-top: 34rpx; margin: 0 auto; diff --git a/page_user/khfw/khfw.vue b/page_user/khfw/khfw.vue index 50de600..e6cfc6a 100644 --- a/page_user/khfw/khfw.vue +++ b/page_user/khfw/khfw.vue @@ -1,11 +1,34 @@ @@ -14,22 +37,137 @@ data() { return { bgc: { - backgroundColor: "#fff", + backgroundColor: "#4C97E7", }, - areaInfo: {} + areaInfo: {}, + tabindex:0, + classlist:[], + wordlist:[] } }, onShow() { this.getarea() + this.getclass() }, methods: { + getuserInfo(){ + uni.showLoading({ + title:'加载中' + }) + this.$u.get("/getAppInfo").then((res) => { + + if (res.code == 200) { + uni.hideLoading() + + this.getarea() + // if( res.user.role==2){ + // uni.navigateTo({ + // url:'/page_fix/fix_index' + // }) + // } + } else { + + let areaId=uni.getStorageSync('areaId'); + if(areaId){ + let that =this + wx.login({ + success(res) { + if (res.code) { + console.log('登录!', res); + let data = { + wxOpenId: res.code, + + }; + let areaId = uni.getStorageSync('areaId'); + that.$u.post('/loginByopenid?jsCode=' + res.code + '&areaId=' + areaId).then( + res => { + uni.hideLoading(); + if (res.code == 200) { + uni.setStorageSync('token', res.token); + that.getuserInfo() + + + } else if (res.code == 501) { + uni.showToast({ + title: res.msg, + icon: 'none', + duration: 2000 + }); + } else { + // console.log("老用户登录",res.data) + uni.redirectTo({ + url: '/pages/login/login' + }) + } + }); + } + }, + + }); + }else{ + uni.showToast({ + title: '请授权位置信息后再尝试', + icon: 'none', + duration: 4000 + }); + } + + } + }); + }, getarea() { let id = uni.getStorageSync('areaId'); this.$u.get("/app/area/" + id).then((res) => { if (res.code == 200) { this.areaInfo = res.data - + + } else { + // uni.showToast({ + // title: res.msg, + // icon: 'none', + // duration: 2000 + // }); + } + }); + }, + topage(item) { + // 编码 title 和 content + const encodedTitle = encodeURIComponent(item.title); + const encodedContent = encodeURIComponent(JSON.stringify(item.content)); + // 跳转到新页面并传递编码后的 title 和 content + uni.navigateTo({ + url: `/page_user/word?title=${encodedTitle}&content=${encodedContent}` + }); + }, + changeitx(itme,index){ + this.tabindex=index + this.getword(itme.classifyId) + }, + getclass() { + + this.$u.get("/app/classify/list?deptId=101&parentId=111" ).then((res) => { + + if (res.code == 200) { + this.classlist = res.data + let id =this.classlist[0].classifyId + this.getword(id) + } else { + // uni.showToast({ + // title: res.msg, + // icon: 'none', + // duration: 2000 + // }); + } + }); + }, + getword(id) { + + this.$u.get("/app/article/list??classifyId="+id ).then((res) => { + + if (res.code == 200) { + this.wordlist = res.rows + } else { // uni.showToast({ // title: res.msg, @@ -55,7 +193,70 @@ .page { width: 750rpx; - + .backimg{ + position: fixed; + width: 750rpx; + height: 384rpx; + z-index: -1; + } + .tit{ + margin-top: 56rpx; + margin-left: 56rpx; + font-weight: 400; + font-size: 30rpx; + color: #FFFFFF; + } + .qscard{ + width: 680rpx; + margin: 40rpx auto ; + background: #FFFFFF; + border-radius: 40rpx; + padding: 28rpx 30rpx; + box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42,130,228,0.1); + .card_top{ + display: flex; + align-items: center; + flex-wrap: nowrap; + justify-content: space-around; + .li{ + width: 112rpx; + display: flex; + flex-wrap: wrap; + justify-content: center; + .txt{ + font-weight: 500; + font-size: 28rpx; + color: #3D3D3D; + } + .bot_bor{ + margin-top: 16rpx; + width: 66rpx; + height: 6rpx; + background: #4C97E7; + border-radius: 3rpx 3rpx 3rpx 3rpx; + } + } + } + .qs_li{ + margin-top: 10rpx; + display: flex; + flex-wrap: nowrap; + align-items: center; + justify-content: space-between; + border-bottom: 2rpx solid #D8D8D8; + padding-bottom: 26rpx; + .qs_li_txt{ + + font-weight: 400; + font-size: 28rpx; + color: #3D3D3D; + } + .icon-xiangyou1{ + font-size: 32rpx; + color: #3D3D3D; + } + } + } .btn { position: fixed; left: 36rpx; diff --git a/page_user/word.vue b/page_user/word.vue new file mode 100644 index 0000000..78c66aa --- /dev/null +++ b/page_user/word.vue @@ -0,0 +1,78 @@ + + + + + + \ No newline at end of file diff --git a/page_user/yj.vue b/page_user/yj.vue index f908763..5b38d41 100644 --- a/page_user/yj.vue +++ b/page_user/yj.vue @@ -238,7 +238,7 @@ this.getinfo() this.getlist() this.show = false - }, 2000) + }, 500) } else { uni.hideLoading() diff --git a/pages.json b/pages.json index 84d384b..6071900 100644 --- a/pages.json +++ b/pages.json @@ -355,6 +355,15 @@ "enablePullDownRefresh" : false, "navigationStyle": "custom" } + }, + { + "path" : "word", + "style" : + { + "navigationBarTitleText" : "", + "enablePullDownRefresh" : false, + "navigationStyle": "custom" + } } // 其他 userpages 目录下的页面... diff --git a/pages/index/index.vue b/pages/index/index.vue index cfba857..ed566be 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -6,7 +6,7 @@ 创享出行 - @@ -396,6 +396,12 @@ 故障上报 + + + + 客户服务 + + @@ -434,11 +440,53 @@ + + + + +
+ 更多用车服务 +
+
+ + + + 押金充值 + + + + + + 用车指南 + + + + + + 编号开锁 + + + + + + + 故障上报 + + + + + + 个人中心 + + +
+
+ 您未充值押金 @@ -524,52 +572,54 @@ - - - + + + + + + 设备离线 请使用蓝牙连接辅助操作 + + + 请确保手机蓝牙权限已授权 -
- 更多用车服务 -
-
- - - - 押金充值 - - - - - - 用车指南 - + + + 取消 - - - - 编号开锁 - + + 蓝牙连接 + - - - - 故障上报 - + + + + + + 停车点外还车 + + + 未在停车点内还车,任要还车会产生额外费用,是否继续还车? + + + + + 取消 - - - - 个人中心 - + + 确定 -
+
+