Browse Source

修改
1、我的发布页面,发布按钮固定定位到底部,蓝色改绿色见UI
2、搜索页面:点击搜索结果没反应,无法切换销售和采购,搜索框清除按钮点击没反应,输入搜索无法使用,昨天都没问题
3、小程序 司机认证列表 下拉一直刷新
4、app,粮商认证,手机号和验证码没有限制长度,手机号不是数字键盘
5、app,司机认证,手机号和验证码不是数字键盘

wangchao 3 years ago
parent
commit
4325383a34

+ 2 - 2
pageD/identity/companyIdentityThree.vue

@@ -66,13 +66,13 @@
 		<view class="c-row b-b">
 			<text class="tit">手机号</text>
 			<view class="con-list">
-				<input placeholder="请填写手机号" @input='phoneinput' v-model="identityAuthenticationInfo.customerPhone"></input>
+				<input placeholder="请填写手机号" @input='phoneinput' type="number" maxlength="11" v-model="identityAuthenticationInfo.customerPhone"></input>
 			</view>
 		</view>
 		<view style='width:100%;border-bottom:1px solid #E8E9ED;padding:10px;' class="flex">
 			<button :class='codestatus&&!sendDisabled?"active":""' @click='obtain' class='getcode'>{{sendText}}</button>
 			<view  class="con-list" style='position:relative;'>
-				<input style='text-align:right;' v-model='verifyCode' placeholder="请输入验证码" type="number">
+				<input style='text-align:right;' v-model='verifyCode' placeholder="请输入验证码" type="number" maxlength="6">
 			</view>
 		</view>
 		<view class="c-row b-b" v-if="identityAuthenticationInfo.customerTypeFlag == 2">

+ 2 - 2
pageD/identity/driverIdentity.vue

@@ -39,14 +39,14 @@
 			<view class="c-row b-b">
 				<text class="tit">手机号</text>
 				<view class="con-list">
-					<input placeholder="请填写手机号" maxlength = "11" @input='phoneinput' name="input" v-model="DriverViewInfo.driverPhone"></input>
+					<input placeholder="请填写手机号" type="number" maxlength = "11" @input='phoneinput' name="input" v-model="DriverViewInfo.driverPhone"></input>
 				</view>
 			</view>
 			<view style='padding:10px;' class="c-row b-b">
 				<button :class='codestatus&&!sendDisabled?"active":""' @click='getcode'
 					class='getcode'>{{sendText}}</button>
 					<view class="con-list">
-						<input v-model='verifyCode' maxlength = "6"  placeholder="请输入验证码" type="text">
+						<input v-model='verifyCode'  maxlength = "6"  placeholder="请输入验证码" type="number">
 					</view>
 			</view>
 			<view class="c-row ">

+ 4 - 0
pages/attestation/indexThree.vue

@@ -111,6 +111,10 @@
 		onLoad() {
 			this.getList()
 		},
+		onPullDownRefresh() {
+			this.getList()
+			uni.stopPullDownRefresh()
+		},
 		methods: {
 			resend() {
 				

+ 5 - 2
pages/release/release.vue

@@ -283,7 +283,7 @@
 
 <style>
 	.center {
-		padding: 10px 20px;
+		padding: 10px 20px 150rpx 20px;
 		background-color: #F5F6FA;
 	}
 
@@ -397,6 +397,9 @@
 		width: 100%;
 		border-radius: 20px;
 		background-color: #22C572;
-		margin-top: 10px;
+		/* margin-top: 10px; */
+		position: fixed;
+		bottom: 30rpx;
+		width: 90%;
 	}
 </style>