Compare commits
No commits in common. "97de0aaa08a61a13fe129da46cb0c77691edd08f" and "ef3c04dfb57794c23aa932441cd26c8e88ca682c" have entirely different histories.
97de0aaa08
...
ef3c04dfb5
|
@ -42,7 +42,7 @@
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="用户名" prop="USERNAME">
|
<el-form-item label="用户名" prop="USERNAME">
|
||||||
<el-input v-model="form.USERNAME" placeholder="默认用户手机号码..." @blur="goCheck()"/>
|
<el-input v-model="form.USERNAME" placeholder="默认用户手机号码..." @change="goCheck()"/>
|
||||||
<a style="color: red">
|
<a style="color: red">
|
||||||
<span>如果修改手机号,登录密码则会变成初始密码“Aa@123456789”</span></a>
|
<span>如果修改手机号,登录密码则会变成初始密码“Aa@123456789”</span></a>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="身份证号" prop="USER_ID_CARD">
|
<el-form-item label="身份证号" prop="USER_ID_CARD">
|
||||||
<el-input v-model="form.USER_ID_CARD" placeholder="这里输入身份证号..."/>
|
<el-input v-model="form.USER_ID_CARD" placeholder="这里输入身份证号..." @change="goCheck()"/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
|
@ -720,8 +720,7 @@ export default {
|
||||||
'/user/goCheck',
|
'/user/goCheck',
|
||||||
{
|
{
|
||||||
USERNAME: value,
|
USERNAME: value,
|
||||||
VERIFYUSER_ID: this.form.USER_ID,
|
VERIFYUSER_ID: this.form.USER_ID
|
||||||
USER_ID: this.form.USER_ID
|
|
||||||
}
|
}
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
if (data.result == 'success') {
|
if (data.result == 'success') {
|
||||||
|
@ -1518,12 +1517,10 @@ export default {
|
||||||
if (this.form.ISSTUDENT) {
|
if (this.form.ISSTUDENT) {
|
||||||
this.uploadImgByZhengshu(this.form.USER_ID)
|
this.uploadImgByZhengshu(this.form.USER_ID)
|
||||||
this.uploadImgByFace(this.form.USER_ID)
|
this.uploadImgByFace(this.form.USER_ID)
|
||||||
// this.goPush(this.form)
|
this.goPush(this.form)
|
||||||
this.$parent.activeName = 'List'
|
|
||||||
} else {
|
} else {
|
||||||
this.uploadImgByFace(this.form.USER_ID)
|
this.uploadImgByFace(this.form.USER_ID)
|
||||||
// this.goPush(this.form)
|
this.goPush(this.form)
|
||||||
this.$parent.activeName = 'List'
|
|
||||||
}
|
}
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
|
@ -1544,12 +1541,10 @@ export default {
|
||||||
if (this.form.ISSTUDENT) {
|
if (this.form.ISSTUDENT) {
|
||||||
this.uploadImgByZhengshu(this.form.USER_ID)
|
this.uploadImgByZhengshu(this.form.USER_ID)
|
||||||
this.uploadImgByFace(this.form.USER_ID)
|
this.uploadImgByFace(this.form.USER_ID)
|
||||||
// this.goPush(this.form)
|
this.goPush(this.form)
|
||||||
this.$parent.activeName = 'List'
|
|
||||||
} else {
|
} else {
|
||||||
this.uploadImgByFace(this.form.USER_ID)
|
this.uploadImgByFace(this.form.USER_ID)
|
||||||
// this.goPush(this.form)
|
this.goPush(this.form)
|
||||||
this.$parent.activeName = 'List'
|
|
||||||
}
|
}
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
|
|
Loading…
Reference in New Issue