bike-ali/page_user/idcard_test.vue

231 lines
4.7 KiB
Vue
Raw Permalink Normal View History

2024-05-28 17:48:29 +08:00
<template>
<view class="page">
<u-navbar title="认证" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
2024-06-07 18:08:55 +08:00
height='45'></u-navbar>
2024-06-04 18:12:12 +08:00
<view class="tit">
为了防范身份信息被冒用需进行身份认证以确保 是本人操作
2024-05-28 17:48:29 +08:00
</view>
2024-06-04 18:12:12 +08:00
<view class="imgbox">
2024-12-12 18:02:37 +08:00
<image class="img" src="https://lxnapi.ccttiot.com/bike/img/static/uxAqR8zizZddzadit9ms" mode="aspectFit"></image>
2024-05-28 17:48:29 +08:00
</view>
2024-06-04 18:12:12 +08:00
<view class="ipt_box">
<view class="li">
<view class="left">
姓名
</view>
<input type="text" v-model="name" placeholder="填写本人真实姓名" placeholder-style='' />
</view>
<view class="line"></view>
<view class="li">
<view class="left">
身份证号
</view>
<input type="text" v-model="idnum" placeholder="填写本人身份证号" />
2024-05-28 17:48:29 +08:00
</view>
2024-06-04 18:12:12 +08:00
</view>
<view class="tips">
以上信息仅用于验证我们将严格为您保密
</view>
<view class="btn" :class="istrue?'act1':''" @click="test">
认证
</view>
2024-05-28 17:48:29 +08:00
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
name: '',
2024-06-04 18:12:12 +08:00
idnum: null,
istrue:false
2024-05-28 17:48:29 +08:00
}
},
2024-06-04 18:12:12 +08:00
watch: {
idnum(newVal) {
// 正则表达式用于校验 15 位或 18 位身份证号码
const regex = /^\d{17}(\d|X|x)$/;
this.istrue = regex.test(newVal);
}
},
2024-05-28 17:48:29 +08:00
computed: {
userId() {
return this.$store.getters.userId;
},
},
2024-06-20 18:08:54 +08:00
onLoad() {
this.getinfo()
},
2024-05-28 17:48:29 +08:00
methods: {
2024-06-20 18:08:54 +08:00
getinfo() {
uni.showLoading({
title:'加载中'
})
this.$u.get("/getAppInfo").then((res) => {
if (res.code == 200) {
uni.hideLoading()
this.$store.commit('SET_USERID', res.user.userId);
this.userinfo = res.user
} else {
setTimeout(()=>{
this.getinfo()
},2000)
}
});
},
2024-05-28 17:48:29 +08:00
validateName(name) {
const nameRegex = /^[\u4e00-\u9fa5·]{2,20}$/;
return nameRegex.test(name);
},
validateIdnum(idnum) {
2024-06-04 18:12:12 +08:00
const idnumRegex =
/^(^[1-9]\d{7}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}$)|(^[1-9]\d{5}[1-9]\d{3}(0[1-9]|1[0-2])(0[1-9]|[12]\d|3[01])\d{3}(\d|X)$)$/;
2024-05-28 17:48:29 +08:00
return idnumRegex.test(idnum);
},
test() {
if (!this.validateName(this.name)) {
uni.showToast({
title: '请输入有效的中文姓名',
icon: 'none',
duration: 2000
});
return;
}
if (!this.validateIdnum(this.idnum)) {
uni.showToast({
title: '请输入有效的身份证号',
icon: 'none',
duration: 2000
});
return;
}
let data = {
realName: this.name,
idCard: this.idnum,
userId: this.userId,
};
this.$u.get('/appVerify/user/authentication?', data).then((res) => {
if (res.code === 200) {
2024-06-20 18:08:54 +08:00
if(res.data.isok){
uni.navigateBack({
delta: 1 // delta值为1时表示返回的页面层数
});
}else{
uni.showToast({
title: '身份信息与姓名不符',
icon: 'none',
duration: 2000
});
}
2024-05-28 17:48:29 +08:00
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}
});
},
}
}
</script>
<style lang="scss">
.page {
width: 750rpx;
2024-06-04 18:12:12 +08:00
.tit{
margin: 20rpx auto;
width: 608rpx;
height: 76rpx;
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
font-weight: 600;
font-size: 28rpx;
color: #3D3D3D;
}
2024-05-28 17:48:29 +08:00
.tips {
text-align: center;
margin: 10rpx auto;
width: 610rpx;
font-weight: 500;
font-size: 28rpx;
color: #3D3D3D;
}
2024-06-04 18:12:12 +08:00
.imgbox{
width: 100%;
display: flex;
align-items: center;justify-content: center;
.img{
margin: 10rpx auto;
width: 428rpx;
height: 292.32rpx;
}
}
2024-05-28 17:48:29 +08:00
.btn {
display: flex;
align-items: center;
justify-content: center;
margin: 10rpx auto;
width: 610rpx;
height: 90rpx;
background: #979797;
border-radius: 16rpx;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
2024-06-04 18:12:12 +08:00
.act1{
background: #4C97E7;
}
2024-05-28 17:48:29 +08:00
.ipt_box {
padding: 30rpx 12rpx;
margin: 48rpx auto;
width: 610rpx;
background: #FFFFFF;
2024-06-04 18:12:12 +08:00
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
2024-05-28 17:48:29 +08:00
border-radius: 12rpx;
2024-06-04 18:12:12 +08:00
2024-05-28 17:48:29 +08:00
.line {
margin-top: 34rpx;
margin-bottom: 34rpx;
width: 586rpx;
height: 2rpx;
background: #F3F3F3;
}
2024-06-04 18:12:12 +08:00
2024-05-28 17:48:29 +08:00
.li {
display: flex;
align-items: center;
2024-06-04 18:12:12 +08:00
2024-05-28 17:48:29 +08:00
.left {
width: 96rpx;
font-weight: 400;
font-size: 24rpx;
color: #979797;
}
2024-06-04 18:12:12 +08:00
2024-05-28 17:48:29 +08:00
input {
margin-left: 44rpx;
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
2024-06-04 18:12:12 +08:00
2024-05-28 17:48:29 +08:00
.input-placeholder {
font-weight: 400;
font-size: 24rpx;
color: #C7C7C7;
}
}
}
}
}
2024-06-04 18:12:12 +08:00
</style>