|
@@ -70,11 +70,19 @@
|
|
|
<view class="flex border-bottom mt20 align-center">
|
|
|
<view class="left">联系电话</view>
|
|
|
<view class="flex right">
|
|
|
- <u--input disabledColor='#fff' placeholder="输入联系电话" inputAlign='left' border="none"
|
|
|
+ <u--input disabledColor='#fff' placeholder="输入联系电话" maxlength="15" inputAlign='left' border="none"
|
|
|
v-model="dataDetails.phone">
|
|
|
</u--input>
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
+ <view class="left">通讯地址</view>
|
|
|
+ <view class="flex right">
|
|
|
+ <u--input disabledColor='#fff' placeholder="输入通讯地址" maxlength="15" inputAlign='left' border="none"
|
|
|
+ v-model="dataDetails.mailingAddress">
|
|
|
+ </u--input>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="title">上传身份证人像面</view>
|
|
|
<view @click.stop="uploadImg(2)" class="picture picture1" v-if="!dataDetails.cardAddressUrl">
|
|
|
<image class="xj-image" src="@/static/images/mine/ic_shanchuan@2x.png"></image>
|
|
@@ -96,7 +104,7 @@
|
|
|
<view class="flex border-bottom mt20 align-center">
|
|
|
<view class="left-text">身份证号</view>
|
|
|
<view class="flex right">
|
|
|
- <u--input disabledColor='#fff' placeholder="输入身份证号" inputAlign='left' border="none"
|
|
|
+ <u--input disabledColor='#fff' placeholder="输入身份证号" maxlength="18" inputAlign='left' border="none"
|
|
|
v-model="dataDetails.cardNumber">
|
|
|
</u--input>
|
|
|
</view>
|
|
@@ -463,6 +471,13 @@
|
|
|
})
|
|
|
return true
|
|
|
}
|
|
|
+ if (uni.$u.test.isEmpty(this.dataDetails.mailingAddress)) {
|
|
|
+ this.$refs.uToast.show({
|
|
|
+ type: 'error',
|
|
|
+ message: "通讯地址不能为空!",
|
|
|
+ })
|
|
|
+ return true
|
|
|
+ }
|
|
|
// if (uni.$u.test.isEmpty(this.dataDetails.registeredPaidAmount)) {
|
|
|
// this.$refs.uToast.show({
|
|
|
// type: 'error',
|
|
@@ -791,6 +806,10 @@
|
|
|
/deep/uni-image.uploadimage-small {
|
|
|
width: 100% !important;
|
|
|
}
|
|
|
+ .title {
|
|
|
+ color: #333333;
|
|
|
+ margin: 20rpx 0;
|
|
|
+ }
|
|
|
|
|
|
.next {
|
|
|
color: #2772FB;
|
|
@@ -896,10 +915,7 @@
|
|
|
height: 100rpx;
|
|
|
}
|
|
|
|
|
|
- .title {
|
|
|
- color: #333333;
|
|
|
- margin: 20rpx 0;
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.content2,
|