|
@@ -8,15 +8,15 @@
|
|
<form class="mui-input-group">
|
|
<form class="mui-input-group">
|
|
<div class="mui-input-row">
|
|
<div class="mui-input-row">
|
|
<label>姓名</label>
|
|
<label>姓名</label>
|
|
- <input name="name" type="text" class="mui-input-clear" v-model="subForm.name">
|
|
|
|
|
|
+ <input name="name" type="text" placeholder="请填写姓名" class="mui-input-clear" v-model="subForm.name">
|
|
</div>
|
|
</div>
|
|
<div class="mui-input-row">
|
|
<div class="mui-input-row">
|
|
<label>手机号码</label>
|
|
<label>手机号码</label>
|
|
- <input name="phone" type="number" class="mui-input-clear" v-model="subForm.phone">
|
|
|
|
|
|
+ <input name="phone" type="number" placeholder="请填写手机号码" class="mui-input-clear" v-model="subForm.phone">
|
|
</div>
|
|
</div>
|
|
<div class="mui-input-row">
|
|
<div class="mui-input-row">
|
|
<label>身份证号</label>
|
|
<label>身份证号</label>
|
|
- <input name="idCard" type="text" class="mui-input-clear" v-model="subForm.idCard" style="text-transform: uppercase;">
|
|
|
|
|
|
+ <input name="idCard" type="text" placeholder="请填写身份证号" class="mui-input-clear" v-model="subForm.idCard" style="text-transform: uppercase;">
|
|
</div>
|
|
</div>
|
|
<div class="mui-input-row">
|
|
<div class="mui-input-row">
|
|
<label style="width: 40%">人脸识别照片</label>
|
|
<label style="width: 40%">人脸识别照片</label>
|
|
@@ -25,6 +25,10 @@
|
|
<img :src="subForm.faceImageUrl" />
|
|
<img :src="subForm.faceImageUrl" />
|
|
</button>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="mui-input-row">
|
|
|
|
+ <label>车牌号</label>
|
|
|
|
+ <input name="car" type="text" placeholder="请填写车牌号" class="mui-input-clear" v-model="subForm.carNum" style="text-transform: uppercase;">
|
|
|
|
+ </div>
|
|
</form>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="mui-content-padded vongi-editme">
|
|
<div class="mui-content-padded vongi-editme">
|
|
@@ -84,6 +88,7 @@
|
|
faceImageUrl: '',
|
|
faceImageUrl: '',
|
|
wechatNoticeEnabled: true,
|
|
wechatNoticeEnabled: true,
|
|
openId: '',
|
|
openId: '',
|
|
|
|
+ carNum:"",
|
|
},
|
|
},
|
|
|
|
|
|
imgBase64: '',
|
|
imgBase64: '',
|
|
@@ -113,6 +118,8 @@
|
|
this.subForm.name = this.person_data.name;
|
|
this.subForm.name = this.person_data.name;
|
|
this.subForm.phone = this.person_data.phone;
|
|
this.subForm.phone = this.person_data.phone;
|
|
this.subForm.idCard = this.person_data.idCard;
|
|
this.subForm.idCard = this.person_data.idCard;
|
|
|
|
+ this.subForm.carNum = this.person_data.carNum;
|
|
|
|
+
|
|
this.subForm.faceImageUrl = this.person_data.faceImageUrl;
|
|
this.subForm.faceImageUrl = this.person_data.faceImageUrl;
|
|
this.subForm.openId = this.openId;
|
|
this.subForm.openId = this.openId;
|
|
},
|
|
},
|