郭宇琦 1 tydzień temu
rodzic
commit
413e99a645

+ 2 - 0
.hbuilderx/launch.json

@@ -19,10 +19,12 @@
             "type" : "uniCloud"
         },
         {
+            "openVueDevtools" : true,
             "playground" : "standard",
             "type" : "uni-app:app-android"
         },
         {
+            "openVueDevtools" : true,
             "playground" : "standard",
             "type" : "uni-app:app-ios"
         }

+ 4 - 1
common/http.js

@@ -31,8 +31,11 @@ function _checkTokenValid(res) {
 		// var shareCode = storage.getShareCode();
 		// storage.clearStorage();
 		// storage.setShareCode(shareCode);
+		storage.removeUserToken()
+		uni.removeStorageSync('car_info')
+		uni.removeStorageSync('USER_INFO_DATA')
 		uni.reLaunch({
-			url: '/pages/index/index'
+			url: '/pages/loginRegister/login'
 		});
 		return false;
 	}

+ 4 - 1
common/request.js

@@ -31,8 +31,11 @@ function _checkTokenValid(res) {
 		// var shareCode = storage.getShareCode();
 		// storage.clearStorage();
 		// storage.setShareCode(shareCode);
+		storage.removeUserToken()
+		uni.removeStorageSync('car_info')
+		uni.removeStorageSync('USER_INFO_DATA')
 		uni.reLaunch({
-			url: '/pages/index/index'
+			url: '/pages/loginRegister/login'
 		});
 		return false;
 	}

+ 4 - 0
common/storage.js

@@ -106,6 +106,9 @@ function setUserToken(user_token) {
 function getUserToken() {
 	return uni.getStorageSync(STORAGE_USER_TOKEN);
 }
+function removeUserToken() {
+	uni.removeStorageSync(STORAGE_USER_TOKEN);
+}
 
 function clearStorage() {
 	const appConfig = getAppConfig();
@@ -232,6 +235,7 @@ function getIsBuyModel() {
 }
 
 module.exports = {
+	removeUserToken,
 	setFunctionTag,
 	getFunctionTag,
 	setUserToken: setUserToken,

+ 1 - 9
manifest.json

@@ -78,15 +78,7 @@
                         "APIKey_android" : "AIzaSyAyfZx9Stm7rx5KbOGH5e1mgT-84EWvb7Q"
                     }
                 },
-                "oauth" : {
-                    "google" : {
-                        "clientid" : "1"
-                    },
-                    "facebook" : {
-                        "appid" : "",
-                        "client_token" : ""
-                    }
-                },
+                "oauth" : {},
                 "geolocation" : {
                     "amap" : {
                         "__platform__" : [ "ios", "android" ],

+ 10 - 6
pages/dashboard/dashboard.vue

@@ -2,23 +2,23 @@
 	<view class="dashboard-page zx-page-linear">
 		<navBar bgColor="transparent"></navBar>
 		<view class="dashboard">
-			<view class="shadow" :style="{ '--progress': progress + '%' }"></view>
+			<view class="shadow" :style="{ '--progress': progress || 0 + '%' }"></view>
 			<view class="spe-wrap">
 				<view class="spe-num">
-					{{ infoList.speed }}
+					{{ infoList.speed || 0 }}
 				</view>
 				<view class="unit">km/h</view>
 			</view>
 			<view class="power-wrap">
-				<u-count-to :startVal="0" bold :endVal="progress" fontSize="48rpx" />
+				<u-count-to :startVal="0" bold :endVal="progress || 0" fontSize="48rpx" />
 			</view>
 		</view>
 
 		<view class="battery_life_progress">
-			<view :style="{width:((infoList.remain_mail / infoList.endurance) * 100) + '%'}" class="is_progress"></view>
+			<view :style="{width:((infoList.remain_mail || 0 / infoList.endurance || 0) * 100) + '%'}" class="is_progress"></view>
 			<view class="text ">
 				<text>续航</text>
-				<text> {{(infoList.remain_mail/1000).toFixed(0) || 0}}km </text>
+				<text> {{(infoList.remain_mail || 0/1000).toFixed(0) || 0}}km </text>
 			</view>
 		</view>
 
@@ -50,7 +50,11 @@
 			}
 		},
 		created() {
-			this._initInfoList()
+			let car_sn = uni.getStorageSync('car_info').car_sn
+			if(car_sn){
+				this._initInfoList()
+			}
+			
 		},
 		methods: {
 			async _initInfoList() {

+ 262 - 236
pages/feedback/index.vue

@@ -1,268 +1,294 @@
 <template>
-    <view class="container">
+	<view class="container">
 		<navBar name="意见反馈" left="0"></navBar>
-        <text class="title">问题类型</text>
-        <view class="title-wrapper">
-            <view v-for="(item, index) in typeList" @tap="tapType(item)" :key="index"
-                :class="item.type_id == typeId ? 'text-wrapper text-wrapper-i' : 'text-wrapper text-wrapper-s'"
-               >{{ item.type_name }}</view>
-        </view>
-        <view style="margin: 64rpx 0;">            
-            <view class="title">问题描述</view>
-            <view class="text-description-input">
-                <textarea :enableNative="false" @input="inputContent" :value="content"
-                    placeholder-class="description-placeholder" placeholder="请详细说明,以便我们解决问题,最多可填写300字。"
-                    maxlength="300"></textarea>
-            </view>
-        </view>
-        <view>
-            <view class="title-img">
-                <view class="title-img-text">问题图片</view>
-                <view class="img-text">{{ imgList.length }} / 3</view>
-            </view>
+		<view style="display: flex;">
+			<text class="title">问题类型</text>
+			<text style="color: red; margin-left: 10rpx;">*</text>
+		</view>
+		<view class="title-wrapper">
+			<view v-for="(item, index) in typeList" @tap="tapType(item)" :key="index"
+				:class="item.type_id == typeId ? 'text-wrapper text-wrapper-i' : 'text-wrapper text-wrapper-s'">
+				{{ item.type_name }}</view>
+		</view>
+		<view style="margin: 64rpx 0;">
+			<view style="display: flex;">
+				<text class="title">问题描述</text>
+				<text style="color: red; margin-left: 10rpx;">*</text>
+			</view>
+			<view class="text-description-input">
+				<textarea :enableNative="false" @input="inputContent" :value="content"
+					placeholder-class="description-placeholder" placeholder="请详细说明,以便我们解决问题,最多可填写300字。"
+					maxlength="300"></textarea>
+			</view>
+		</view>
+		<view>
+			<view class="title-img">
+				<!-- <view class="title-img-text">问题图片</view> -->
+				<view style="display: flex;">
+					<text class="title">问题图片</text>
+					<text style="color: red; margin-left: 10rpx;">*</text>
+				</view>
+				<view class="img-text">{{ imgList.length }} / 3</view>
+			</view>
 
-            <view class="upload-img-row">
-                <view class="upload-img-view" v-for="(item, index) in imgList" :key="index">
-                    <img @tap="bindChangeImg" :data-index="index" class="upload-img" :src="item" alt="">
-                </view>
-                <view class="upload-img-view" v-if="imgList.length < 3">
-                    <img @tap="bindUpImg" class="upload-img" src="https://qiniu.bms16.com/Fv3KFmim5gle_kWR9g1Mym56lJpC"
-                        alt="">
-                </view>
-            </view>
+			<view class="upload-img-row">
+				<view class="upload-img-view" v-for="(item, index) in imgList" :key="index">
+					<img @tap="bindChangeImg" :data-index="index" class="upload-img" :src="item" alt="">
+				</view>
+				<view class="upload-img-view" v-if="imgList.length < 3">
+					<img @tap="bindUpImg" class="upload-img" src="https://qiniu.bms16.com/Fv3KFmim5gle_kWR9g1Mym56lJpC"
+						alt="">
+				</view>
+			</view>
 
-        </view>
-        <view class="submit-btn-view">
-            <view v-if="typeId != '' && imgList.length != 0 && content != ''" class="submit" @tap="submitFeedback">提交
-            </view>
-            <view v-else class="submit-btn">提交</view>
-        </view>
-    </view>
+		</view>
+		<view class="submit-btn-view">
+			<view v-if="typeId != '' && imgList.length != 0 && content != ''" class="submit" @tap="submitFeedback">提交
+			</view>
+			<view v-else class="submit-btn">提交</view>
+		</view>
+	</view>
 </template>
 
 <script>
-const http = require('../../common/http.js');
-const config = require('../../common/config.js');
-const common = require('../../common/common.js');
-export default {
-    data() {
-        return {
-            typeList: [
-                { type_id: 1, type_name: '车辆' },
-                { type_id: 2, type_name: '电池' },
-                { type_id: 3, type_name: '电柜' },
-                { type_id: 4, type_name: '应用操作' },
-                { type_id: 5, type_name: '其他' },
-            ],
-            typeId: '',
-            content: '',
-            imgList: [],
-            isDiabled: false,
-        };
-    },
-    /**
-     * 生命周期函数--监听页面加载
-     */
-    onLoad: function (options) {
-        // this.loadTypeList()
-    },
-    /**
-     * 生命周期函数--监听页面显示
-     */
-    onShow: function () {
+	const http = require('../../common/http.js');
+	const config = require('../../common/config.js');
+	const common = require('../../common/common.js');
+	export default {
+		data() {
+			return {
+				typeList: [{
+						type_id: 1,
+						type_name: '车辆'
+					},
+					{
+						type_id: 2,
+						type_name: '电池'
+					},
+					{
+						type_id: 3,
+						type_name: '电柜'
+					},
+					{
+						type_id: 4,
+						type_name: '应用操作'
+					},
+					{
+						type_id: 5,
+						type_name: '其他'
+					},
+				],
+				typeId: '',
+				content: '',
+				imgList: [],
+				isDiabled: false,
+			};
+		},
+		/**
+		 * 生命周期函数--监听页面加载
+		 */
+		onLoad: function(options) {
+			// this.loadTypeList()
+		},
+		/**
+		 * 生命周期函数--监听页面显示
+		 */
+		onShow: function() {
 
-    },
-    methods: {
-        loadTypeList() {
-            http.postApi(config.API_DAYHIRE_REPORT_REPORT_TYPE, {}, (resp) => {
-                if (resp.data.code === 200) {
-                    this.setData({
-                        typeList: resp.data.data.list
-                    });
-                } else {
-                    common.simpleToast(resp.data.msg)
-                }
-            })
-        },
+		},
+		methods: {
+			loadTypeList() {
+				http.postApi(config.API_DAYHIRE_REPORT_REPORT_TYPE, {}, (resp) => {
+					if (resp.data.code === 200) {
+						this.setData({
+							typeList: resp.data.data.list
+						});
+					} else {
+						common.simpleToast(resp.data.msg)
+					}
+				})
+			},
 
-        tapType({ type_id }) {
-            this.setData({
-                typeId: type_id
-            })
-        },
+			tapType({
+				type_id
+			}) {
+				this.setData({
+					typeId: type_id
+				})
+			},
 
-        inputContent(e) {
-            const content_text = e.detail.value
-            if (content_text.length >= 300) {
-                common.simpleToast('最多输入300字');
-            } else {
-                this.setData({
-                    content: content_text
-                })
-            }
-        },
+			inputContent(e) {
+				const content_text = e.detail.value
+				if (content_text.length >= 300) {
+					common.simpleToast('最多输入300字');
+				} else {
+					this.setData({
+						content: content_text
+					})
+				}
+			},
 
-        bindUpImg: function () {
-            const that = this;
-            let _imgList = this.imgList
-            common.upLoadImgQiNiu(function (imgUrl) {
-                _imgList.push(imgUrl)
-                that.setData({
-                    imgList: _imgList
-                });
-            });
-        },
+			bindUpImg: function() {
+				const that = this;
+				let _imgList = this.imgList
+				common.upLoadImgQiNiu(function(imgUrl) {
+					_imgList.push(imgUrl)
+					that.setData({
+						imgList: _imgList
+					});
+				});
+			},
 
-        bindChangeImg(e) {
-            const that = this;
-            const index = e.currentTarget.dataset.index
-            let _imgList1 = this.imgList
-            common.upLoadImgQiNiu(function (imgUrl) {
-                _imgList1.splice(index, 1, imgUrl)
-                that.setData({
-                    imgList: _imgList1
-                });
-            });
-        },
+			bindChangeImg(e) {
+				const that = this;
+				const index = e.currentTarget.dataset.index
+				let _imgList1 = this.imgList
+				common.upLoadImgQiNiu(function(imgUrl) {
+					_imgList1.splice(index, 1, imgUrl)
+					that.setData({
+						imgList: _imgList1
+					});
+				});
+			},
 
-        submitFeedback() {
-            const imgs = this.imgList.join(',')
-            const pData = {
-                content: this.content,
-                imgs: imgs,
-                type_id: this.typeId
-            }
-            const that = this
-            http.postApi(config.API_DAYHIRE_REPORT_REPORT, pData, (resp) => {
-                if (resp.data.code === 200) {
-                    // that.setData({
-                    // 	isDiabled:true
-                    // })
-                    common.simpleToast('上传成功')
-                    setTimeout(() => {
-                        wx.navigateBack({
-                            delta: 1 // 返回上一级页面
-                        })
-                    }, 1000)
-                } else {
-                    common.simpleToast(resp.data.msg)
-                }
-            })
-        }
-    }
-};
+			submitFeedback() {
+				const imgs = this.imgList.join(',')
+				const pData = {
+					content: this.content,
+					imgs: imgs,
+					type_id: this.typeId
+				}
+				const that = this
+				http.postApi(config.API_DAYHIRE_REPORT_REPORT, pData, (resp) => {
+					if (resp.data.code === 200) {
+						// that.setData({
+						// 	isDiabled:true
+						// })
+						common.simpleToast('上传成功')
+						setTimeout(() => {
+							wx.navigateBack({
+								delta: 1 // 返回上一级页面
+							})
+						}, 1000)
+					} else {
+						common.simpleToast(resp.data.msg)
+					}
+				})
+			}
+		}
+	};
 </script>
 
 <style scoped lang="scss">
-.container {
-    padding: 0 32rpx 0;
-    background-color: white;
-    height: 100vh;
-}
+	.container {
+		padding: 0 32rpx 0;
+		background-color: white;
+		height: 100vh;
+	}
 
-.title {
-    font-size: 40rpx;
-    color: #2A3A5A;
-    font-weight: 600;
-    margin-bottom: 40rpx;
-}
+	.title {
+		font-size: 40rpx;
+		color: #2A3A5A;
+		font-weight: 600;
+		margin-bottom: 40rpx;
+	}
 
-.title-wrapper {
-    display: flex;
-    flex-wrap: wrap;
-    margin-right: -32rpx;
-}
+	.title-wrapper {
+		display: flex;
+		flex-wrap: wrap;
+		margin-right: -32rpx;
+	}
 
-.text-wrapper {
-    padding: 24rpx 0;
-    text-align: center;
-    width: 218rpx;
-    background: #F3F8FF;
-    border-radius: 16rpx;
-    margin: 0 16rpx 16rpx 0;
-    font-size: 32rpx;
-    border: 4rpx solid transparent
-}
+	.text-wrapper {
+		padding: 24rpx 0;
+		text-align: center;
+		width: 218rpx;
+		background: #F3F8FF;
+		border-radius: 16rpx;
+		margin: 0 16rpx 16rpx 0;
+		font-size: 32rpx;
+		border: 4rpx solid transparent
+	}
 
-.text-wrapper-s {
-    background-color: #F3F8FF;
-    color: #2A3A5A;
-}
+	.text-wrapper-s {
+		background-color: #F3F8FF;
+		color: #2A3A5A;
+	}
 
-.text-wrapper-i {
-    color: #0A59F7;
-    background: #FFFFFF;
-    border-color: #0A59F7;
-}
+	.text-wrapper-i {
+		color: #0A59F7;
+		background: #FFFFFF;
+		border-color: #0A59F7;
+	}
 
-.text-description-input {
-    background: #F3F8FF;
-    padding-left: 32rpx;
-    padding-top: 24rpx;
-}
+	.text-description-input {
+		background: #F3F8FF;
+		padding-left: 32rpx;
+		padding-top: 24rpx;
+	}
 
-.description-placeholder {
-    color: #828DA2;
-    font-size: 28rpx;
-}
+	.description-placeholder {
+		color: #828DA2;
+		font-size: 28rpx;
+	}
 
-.title-img {
-    font-size: 40rpx;
-    color: #2A3A5A;
-    font-weight: 600;
-    display: flex;
-    justify-content: space-between;
-    align-items: center;
-    margin-bottom: 40rpx;
-}
+	.title-img {
+		font-size: 40rpx;
+		color: #2A3A5A;
+		font-weight: 600;
+		display: flex;
+		justify-content: space-between;
+		align-items: center;
+		margin-bottom: 40rpx;
+	}
 
-.img-text {
-    font-size: 32rpx;
-    color: #9FA7B7;
-    font-weight: 400;
-}
+	.img-text {
+		font-size: 32rpx;
+		color: #9FA7B7;
+		font-weight: 400;
+	}
 
-.upload-img-row {
-    display: flex;
-    justify-content: flex-start;
-    flex-wrap: wrap;
-}
+	.upload-img-row {
+		display: flex;
+		justify-content: flex-start;
+		flex-wrap: wrap;
+	}
 
-.upload-img-view {
-    margin-right: 20rpx;
-}
+	.upload-img-view {
+		margin-right: 20rpx;
+	}
 
-.upload-img {
-    width: 218rpx;
-    height: 218rpx;
-}
+	.upload-img {
+		width: 218rpx;
+		height: 218rpx;
+	}
 
-.submit-btn-view {
-    border-top: 2rpx solid #F4F5F6;
-    padding-top: 24rpx;
-    position: fixed;
-    bottom: 0;
-    width: 93%
-}
+	.submit-btn-view {
+		border-top: 2rpx solid #F4F5F6;
+		padding-top: 24rpx;
+		position: fixed;
+		bottom: 0;
+		width: 93%
+	}
 
-.submit-btn {
-    background: #0074FF;
-    opacity: 0.2;
-    border-radius: 70rpx;
-    color: #FFF;
-    font-size: 32rpx;
-    text-align: center;
-    padding: 24rpx 0;
-    margin: 0 0 24rpx 0;
-}
+	.submit-btn {
+		background: #0074FF;
+		opacity: 0.2;
+		border-radius: 70rpx;
+		color: #FFF;
+		font-size: 32rpx;
+		text-align: center;
+		padding: 24rpx 0;
+		margin: 0 0 24rpx 0;
+	}
 
-.submit {
-    background: #0074FF;
-    border-radius: 40rpx;
-    color: #FFF;
-    font-size: 32rpx;
-    text-align: center;
-    padding: 24rpx 0;
-    margin: 0 32rpx 24rpx 32rpx;
-}
+	.submit {
+		background: #0074FF;
+		border-radius: 40rpx;
+		color: #FFF;
+		font-size: 32rpx;
+		text-align: center;
+		padding: 24rpx 0;
+		margin: 0 32rpx 24rpx 32rpx;
+	}
 </style>

+ 1 - 1
pages/loginRegister/login.vue

@@ -114,7 +114,7 @@
             // 
             const { baseInfo } = res.body.data
             storage.setUserInfoData(baseInfo)
-            storage.setUserToken(baseInfo.token)
+			uni.setStorageSync('storage_user_token', baseInfo.token);
             common.simpleToast('登录成功')
             uni.reLaunch({
               url: '/pages/index/index',

+ 11 - 2
pages/my/my.vue

@@ -22,7 +22,7 @@
 		</view>
 		
 		
-		<view v-if="car_info.car_sn" class="common-tabs">
+		<view  class="common-tabs">
 			<view class="item" @click="routerLink({url:'/pages/dashboard/dashboard',isLogin:1})">
 				<image :src="QINIU_URL + 'Fp6G-Kzb-YUGkP2WR-kjTlIbbTj1'" class="icon" />
 				<view class="name">{{ $t('我的车辆') }}</view>
@@ -31,7 +31,7 @@
 				<image :src="QINIU_URL + 'FnxGW52BCkTkK9HxsTdVrghU7B4D'" class="icon" />
 				<view class="name">{{ $t('用车人') }}</view>
 			</view>
-			<view v-if="car_info.sold_time" class="item" @click="routerLink({url:'',jumpCheck:'combo',isLogin:1})">
+			<view class="item" @click="routerLink({url:'',jumpCheck:'combo',isLogin:1})">
 				<image :src="QINIU_URL + 'FsOsd1SxYDHDm00aiwrTib_k0Mbr'" class="icon" />
 				<view class="name">{{ $t('换电套餐') }}</view>
 			</view>
@@ -129,6 +129,7 @@ var request = require('@/common/request.js');
 		onShow() {
 			this.car_info = uni.getStorageSync('car_info') || {};
 			const user_token = storage.getUserToken()
+			console.log(user_token)
 			if(user_token){
 				this.loadUserInfo()
 				this.newsNumFn()
@@ -166,6 +167,14 @@ var request = require('@/common/request.js');
 				}
 			},
 			checkHandle_combo() {
+				if(!this.car_info.sold_time){
+					this.$msg('您还未购买车辆,购买车辆才可享受次套餐')
+					return
+				}
+				if(!this.car_info.car_sn){
+					this.$msg('您还未绑定车辆!')
+					return
+				}
 				if(this.car_info.exchange_package_info){
 					uni.navigateTo({
 						url: `/pages/package/package`

+ 17 - 2
pages/orderStatus/orderStatus.vue

@@ -217,7 +217,6 @@
 			</view>
 		</view>
 		<!-- 考虑为空的情况 -->
-
 		<view class="payment-info flex-row flex-between">
 			<view v-if="orderInfo.order_status == 1 || orderInfo.pay_status == 5" class="flex-row"> <!-- 待取车 -->
 				<view v-if="orderInfo.order_type != 3"
@@ -411,6 +410,22 @@
 					price: (price / 100).toFixed(2)
 				})
 			},
+			
+			async carDetFn(car_sn){
+				let {data} = await request.postApi(config.API_FLK_CAR_DETAIL, {car_sn})
+				if (data.code === 200) {
+					if(data.data.is_display == 1){
+						return true
+					}else{
+						common.simpleToast('车辆未展示!')
+						return false
+					}
+				} else {
+					common.simpleToast(resp.data.msg)
+					return false
+				}
+				return false
+			},
 			async navToScan() {
 				let car_sn = this.orderInfo.car_sn || ''
 				if (!car_sn) {
@@ -420,11 +435,11 @@
 					});
 					if (res[0]) return
 					car_sn = res[1].result
+					if(!this.carDetFn(car_sn)) return
 				}
 				uni.navigateTo({
 					url: `/pages/activation/activation?model_id=${this.orderInfo.model_id}&sub_sn=${this.sub_sn}&car_sn=${car_sn}`
 				})
-				// let {data} = await request.postApi(config.API_CAR_ASSIGNMENT,{sub_sn:this.sub_sn,car_sn:res[1].result})
 			},
 
 			navToCabinet() {

+ 5 - 0
pages/service/components/cabinetList/cabinetList.css

@@ -20,6 +20,10 @@
 }
 .battery-list-view{
 	margin: 20rpx 0 32rpx;
+	display: flex;
+	align-items: center;
+	flex-wrap: wrap;
+	
 }
 .battery-view{
 	background: rgba(10,89,247,0.1);
@@ -29,6 +33,7 @@
 	justify-content: space-between;
 	height: 48rpx;
 	line-height: 48rpx;
+	margin-right: 10rpx;
 }
 .battery-voltage{
 	font-weight: 500;

+ 3 - 3
pages/service/components/carRentalList/carRentalList.vue

@@ -1,7 +1,7 @@
 <template>
 	<view>
 		<block>
-			<view :class='{"active" : activeMarkersId == item.id}' class="store-card" v-if="item.admin_id"  @click="navToStore(item.admin_id)" v-for="(item, index) in near_store_list" :key="index">
+			<view :class='{"active" : activeMarkersId == item.id}' class="store-card" v-if="item.admin_id"  @click.stop="navToStore(item.admin_id)" v-for="(item, index) in near_store_list" :key="index">
 				<view>
 					<view class="card-top-style flex-row flex-between">
 						<view class="shop_name">{{item.shop_name}}</view>
@@ -40,7 +40,7 @@
 				
 				<scroll-view v-if="item.model_list.length>1" :scroll-into-view="'into'+into" scroll-x="true" enable-flex class="scrollview-box"
 					scroll-with-animation @scroll="onScroll">
-					<view v-for="(items,index) in item.model_list" :key="index"
+					<view @click.stop="$srcFn(`/pages/carDetail/carDetail?model_id=${item.model_id}`)" v-for="(items,index) in item.model_list" :key="index"
 						:style="{ marginLeft: index > 0 ? '32rpx' : '0' }" class="form-item" :data-item="items"
 						>
 						<view class="second-view flex-row">
@@ -73,7 +73,7 @@
 								src="https://qiniu.bms16.com/Ft0YA1JYmq66hdoeEN-PgBHy5vLa"  mode=""></image>
 						</view>
 						<view style="margin-left: 20rpx;">
-							<image @click="bindToNav(item)" style="width: 112rpx;height: 64rpx;"
+							<image @click.stop="bindToNav(item)" style="width: 112rpx;height: 64rpx;"
 								src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" mode=""></image>
 								
 						</view>

+ 32 - 24
pages/userManagement/userManagement.vue

@@ -1,24 +1,27 @@
 <template>
-	<view class="user-card">
-		<navBar :name="'最近骑行'" />
-		<view class="flex-row align-center user-card-heard">
-			<img style="width: 48rpx;height: 48rpx;" src="https://qiniu.bms16.com/FieeNq75ybyjIzQO6fmNcdTlRsp5" alt="">
-			<text style="margin-left: 16rpx;">共享用户</text>
-		</view>
-		<view class="user-card-text">家人、朋友长期共用车辆,授权账户可以使用感应解锁,寻车定位,查看设置等功能;</view>
-		<!-- <view v-for="(item,index) in userList" :key="index"> -->
-		<view  @click="srcFn(`/pages/powerSetting/powerSetting?id=${item.target_user_id}`)" v-for="(item,index) of list" :key="index" class="user-list flex-row align-center">
-			<image class="user-heard-img" :src="item.headimg" mode="aspectFill"></image>
-			<view class="user-name-view">
-				<view class="user-name">{{item.nickname}}</view>
-				<view class="user-email">{{item.email}}</view>
+	<view class="">
+		<navBar name="共享用户" />
+		<view class="user-card">
+			<view class="flex-row align-center user-card-heard">
+				<img style="width: 48rpx;height: 48rpx;" src="https://qiniu.bms16.com/FieeNq75ybyjIzQO6fmNcdTlRsp5" alt="">
+				<text style="margin-left: 16rpx;">共享用户</text>
+			</view>
+			<view class="user-card-text">家人、朋友长期共用车辆,授权账户可以使用感应解锁,寻车定位,查看设置等功能;</view>
+			<!-- <view v-for="(item,index) in userList" :key="index"> -->
+			<view @click="srcFn(`/pages/powerSetting/powerSetting?id=${item.target_user_id}`)" v-for="(item,index) of list" :key="index" class="user-list flex-row align-center">
+				<image class="user-heard-img" :src="item.headimg" mode="aspectFill"></image>
+				<view class="user-name-view">
+					<view class="user-name">{{item.nickname}}</view>
+					<view class="user-email">{{item.email}}</view>
+				</view>
+				<img class="user-nav-img" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" alt="">
+			</view>
+			<view @click="addUser" class="flex-row user-card-btn align-center">
+				<img style="width: 20rpx;height: 20rpx;" src="https://qiniu.bms16.com/FvP_5VTgawzExIHW3kJahXAvE04z" alt="">
+				<text style="margin-left: 6rpx;">添加成员</text>
 			</view>
-			<img class="user-nav-img" src="https://qiniu.bms16.com/FqnbZ2iKHmzCGJA8XD30sf5g_CAm" alt="">
-		</view>
-		<view @click="addUser" class="flex-row user-card-btn align-center">
-			<img style="width: 20rpx;height: 20rpx;" src="https://qiniu.bms16.com/FvP_5VTgawzExIHW3kJahXAvE04z" alt="">
-			<text style="margin-left: 6rpx;">添加成员</text>
 		</view>
+		
 	</view>
 </template>
 
@@ -38,6 +41,7 @@
 		,
 		onLoad: function(options) {
 			// this.listFn()
+			this.car_info = uni.getStorageSync('car_info') || {};
 		},
 		onShow() {
 			this.listFn()
@@ -49,19 +53,23 @@
 				})
 			},
 			addUser(){
-				uni.navigateTo({
-					url:`/pages/addUser/addUser`
-				})
+				if(this.car_info.car_sn){
+					uni.navigateTo({
+						url:`/pages/addUser/addUser`
+					})
+					return
+				}
+				this.$msg('您还未绑定车辆!')
+				
 			},
 			async listFn(){
-				this.car_info = uni.getStorageSync('car_info') || {};
+				
 				let {data} = await http.postApi(config.API_FLK_CAR_SHARE_LIST,{
 					car_sn:this.car_info.car_sn
 				})
 				if(data.code == 200){
-					this.list = data.data.list
+					this.list = data.data.list || []
 				}
-				console.log(data)
 			}
 		}
 	};

+ 8 - 0
utils/gyq_utils.js

@@ -10,8 +10,16 @@ function srcFn(url,isLogin){
 		url,
 	})
 }
+
+function msg(str){
+	uni.showToast({
+		title:str,
+		icon:'none'
+	})
+}
 export default {
   install: function (vm) {
     vm.prototype.$srcFn = srcFn;
+    vm.prototype.$msg = msg;
   },
 };