郭宇琦 1 săptămână în urmă
părinte
comite
bd1e876c78

+ 1 - 0
pages/activation/activation.vue

@@ -152,6 +152,7 @@
 					current_time
 				})
 				if (data.code == 200) {
+					uni.removeStorageSync('car_info')
 					common.simpleToast('还车成功!')
 					setTimeout(() => {
 						uni.switchTab({

+ 3 - 1
pages/index/index.vue

@@ -204,6 +204,7 @@
 			AndroidUnlockAuth,
 			IosUnlockAuth
 		},
+		
 		/**
 		 * 生命周期函数--监听页面加载
 		 */
@@ -224,7 +225,8 @@
 			uni.onNetworkStatusChange((res) => {
 				_this.isConnected = res.isConnected
 				if(res.isConnected){
-					//有网络了
+					//
+					console.log('有网络了')
 					_this.init()
 				}
 			});

+ 1 - 1
pages/my/set.vue

@@ -12,7 +12,7 @@
           <view class="title">{{ item.title }}</view>
           <view :class="['text-right', item.hideArrow && 'hide-arrow']">
             <view v-if="item.textProp == 'registrationTime' && userInfo.ctime"> {{ formatTimestamp(userInfo.ctime) }}</view>
-            <input class="inp" @blur="inpfn" v-if="item.textProp == 'nickname'" v-model="userInfo[item.textProp]" type="text" />
+            <input class="inp" @blur="inpfn" :maxlength="22" v-if="item.textProp == 'nickname'" v-model="userInfo[item.textProp]" type="text" />
             <!-- <view v-if="item.textProp == 'registrationTime'"" class="title">{{ userInfo[item.textProp] }}1</view> -->
             <block v-else>
               {{ userInfo[item.textProp] || '' }}

+ 5 - 2
pages/orderStatus/orderStatus.vue

@@ -219,8 +219,11 @@
 		<!-- 考虑为空的情况 -->
 
 		<view class="payment-info flex-row flex-between">
-			<view v-if="(orderInfo.order_status == 1 || orderInfo.pay_status == 5) && orderInfo.pay_type != 1"
-				class="cancel" @tap="clickCancel">结束订单
+			<view v-if="orderInfo.order_status == 1 || orderInfo.pay_status == 5" class="flex-row"> <!-- 待取车 -->
+				<view v-if="orderInfo.order_type != 3"
+					class="cancel" @tap="clickCancel">结束订单
+				</view>
+				<view @tap="callStorePhone" class="deposit-btn ">联系门店</view>
 			</view>
 			<view v-if="orderInfo.order_status == 1" class="flex-row"> <!-- 待取车 -->
 				<view @tap="callStorePhone" class="deposit-btn ">联系门店</view>