twt před 1 rokem
rodič
revize
45a91e14f0
2 změnil soubory, kde provedl 11 přidání a 3 odebrání
  1. 2 2
      pages/myOrder/myOrder.vue
  2. 9 1
      pages/wyCar/apply.vue

+ 2 - 2
pages/myOrder/myOrder.vue

@@ -564,9 +564,9 @@
 	}
 
 	.tabActive {
-		color: #FF0000;
+		color: #3F90F7;
 		font-weight: bold;
-		border-bottom: 4rpx solid #FF0000;
+		border-bottom: 4rpx solid #3F90F7;
 
 	}
 

+ 9 - 1
pages/wyCar/apply.vue

@@ -22,7 +22,7 @@
 		<view class="box">
 			<view class="cont">
 				<view class="line">
-					<view class="lineLeft">姓名</view>
+					<view class="lineLeft"><span class="stars">*</span>姓名</view>
 					<view class="lineRight">
 						<input type="text" v-model="customerName" class="lineInput" placeholder="请填写姓名"/>
 					</view>
@@ -112,6 +112,14 @@
 		methods: {
 			submit(){
 				//this.convertToUpperCase(this.plateNumber)
+				if(!this.customerName){
+					uni.showToast({
+						title: '请输入姓名',
+						icon: 'none',
+						duration: 3000
+					});
+					return false;
+				}
 				this.plateNumber=this.plateNumber.toUpperCase()
 				 console.log(this.plateNumber)
 				var reg = /^1[3|4|5|7|8][0-9]\d{8}$/;