Browse Source

样式修改

常志远 3 năm trước cách đây
mục cha
commit
fec9825fef

+ 1 - 1
pages/login/login.vue

@@ -230,7 +230,7 @@
 				this.form.headImg=this.carhelp.getUserInfo().headimgurl;
 				this.form.openId= this.carhelp.getOpenId();
 				loginApi.validateCode(this.form).then((response) => {
-					uni.hideLoading();
+					uni.hideLoading(); 
 					
 					var token = response ? response.data.token : '';
 					this.carhelp.setToken(token);

+ 5 - 5
pages/user/myPile/pileManagement.vue

@@ -59,7 +59,7 @@
 			<u-cell-group>
 				<u-cell-item  title="开放共享" :arrow="false">
 						<view class="">
-							<u-radio-group v-model="value" @change="radioGroupChange">
+							<u-radio-group  @change="radioGroupChange">
 								<u-radio 
 									@change="radioChange" 
 									v-for="(item, index) in list2" :key="index" 
@@ -74,7 +74,7 @@
 					
 				</u-cell-item>
 				<u-cell-item  title="开放预约" :arrow="false"><view class="">
-							<u-radio-group v-model="value" @change="radioGroupChange">
+							<u-radio-group  @change="radioGroupChange">
 								<u-radio 
 									@change="radioChange" 
 									v-for="(item, index) in list2" :key="index" 
@@ -87,7 +87,7 @@
 							</u-radio-group>
 						</view></u-cell-item>
 				<u-cell-item  title="预约自动确认" :arrow="false"><view class="">
-							<u-radio-group v-model="value" @change="radioGroupChange">
+							<u-radio-group @change="radioGroupChange">
 								<u-radio 
 									@change="radioChange" 
 									v-for="(item, index) in list2" :key="index" 
@@ -104,7 +104,7 @@
 						<u-cell-item   :arrow="false" class="time-cell">
 							<p>预约时长选项</p>
 							<view class="radio-box">
-									<u-radio-group v-model="value" @change="radioGroupChange">
+									<u-radio-group  @change="radioGroupChange">
 										<u-radio 
 											@change="radioChange" 
 											v-for="(item, index) in timeList" :key="index" 
@@ -131,7 +131,7 @@
 								
 							</view>正常</u-cell-item>
 			</u-cell-group>
-	</view>
+	</view>	
 </view>
 
 <view class="bottom">

+ 9 - 5
pages/user/preengaged/preengagedListDetails.vue

@@ -101,8 +101,8 @@
 
 		<!-- 底部按钮 -->
 		<view class="bottom">
-			<u-button shape='circle'>扫码充电</u-button>
-			<u-button type="success" shape='circle'>导航</u-button>
+			<u-button shape='circle' class="refuse-btn">拒绝</u-button>
+			<u-button type="success" shape='circle'>确认</u-button>
 			
 		</view>
 	</view>
@@ -231,15 +231,19 @@
 .bottom{
 	width: 100%;
 	height: 56px;
-	background-color: #fff;
 	position: fixed;
 	bottom: 0;
+	background-color: #fff;
 	display: flex;
+	.refuse-btn{
+		background-color: #DBDBDB;
+	}
 	.u-btn{
 		width: 44%;
-		height: 32px;
+		height: 40px;
 		margin: auto;
-		font-size: 18px
+		font-size: 18px;
+		
 	}
 }
 </style>