You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
368 lines
8.3 KiB
368 lines
8.3 KiB
<template>
|
|
<view class="main">
|
|
<view class="signAndOut">
|
|
<view class="top_row">
|
|
<view class="flex-box">
|
|
<view class="icon">
|
|
<image src="@/static/images/carIcon/home_icon_buzhou@2x.png" mode=""></image>
|
|
</view>
|
|
<view class="txt">步骤</view>
|
|
</view>
|
|
<view class="flex-box">
|
|
<view class="icon">
|
|
<image src="@/static/images/carIcon/home_icon_zhuangtai@2x.png" mode=""></image>
|
|
</view>
|
|
<view class="txt">状态</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="step">
|
|
<view class="li" :class="{active: step1}">
|
|
<view class="leftIcon" >
|
|
<view class="icon">1</view>
|
|
<view class="line" ></view>
|
|
</view>
|
|
<view class="textCon">
|
|
<view class="text">信息认证</view>
|
|
<view class="redTps" v-if="!step1">失败原因:{{stepFailureReason}}</view>
|
|
</view>
|
|
<view class="btn" :class="{red: !step1}">{{step1?'通过': '不通过'}}</view>
|
|
</view>
|
|
|
|
<view class="li" :class="{active: step2}">
|
|
<view class="leftIcon">
|
|
<view class="icon">2</view>
|
|
<view class="line" ></view>
|
|
</view>
|
|
<view class="textCon">
|
|
<view class="text">人脸识别</view>
|
|
<view class="redTps"></view>
|
|
</view>
|
|
<view class="btn" v-if="step2">通过</view>
|
|
</view>
|
|
|
|
<view class="li" :class="{active: step3}">
|
|
<view class="leftIcon">
|
|
<view class="icon">3</view>
|
|
</view>
|
|
<view class="textCon">
|
|
<view class="text">信息同步</view>
|
|
<view class="redTps"></view>
|
|
</view>
|
|
<view class="btn" v-if="step3">通过</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="footBtn">
|
|
<view class="oneBtn" :class="{active: btnActive}" v-if="!step3" @click="Recertification">重新认证</view>
|
|
<view class="oneBtn" :class="{active: step3}" v-else @click="goBack">我知道了</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { getInitBodyFaceVerify, getDescribeBodyFaceVerify, operationSigin, vailStudentInfo, signOutAuth, signOut, reSignOut } from '@/config/api.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
deviceCode: 0,
|
|
stepFailureReason: '未通过',
|
|
step1: false,
|
|
step2: false,
|
|
step3: false,
|
|
params: {},
|
|
count: 0
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.vailStudentInfoFn()
|
|
},
|
|
computed: {
|
|
btnActive() {
|
|
if(this.step1&&(!this.step2||!this.step3)) {
|
|
return true
|
|
}else {
|
|
return false
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
// 信息校验
|
|
async vailStudentInfoFn() {
|
|
await this.$store.dispatch('getCity')
|
|
if(!this.vuex_cityInfo.lat) return
|
|
let schoolCoach = this.$store.state.school.schoolCoach
|
|
this.params = {
|
|
coachId: schoolCoach.id ,
|
|
stduentId: this.studentId,
|
|
lng: this.vuex_cityInfo.lng,
|
|
lat: this.vuex_cityInfo.lat,
|
|
key: schoolCoach.key,
|
|
type: schoolCoach.QrType,
|
|
}
|
|
let fn = vailStudentInfo
|
|
if(this.params.type==3) {
|
|
fn = signOutAuth
|
|
}
|
|
console.log('扫码传的参数')
|
|
console.log(this.params)
|
|
const res = await fn(this.params)
|
|
console.log('第一步校验信息')
|
|
console.log(res)
|
|
console.log(res.msg)
|
|
if(res.code=='200240213') {
|
|
this.stepFailureReason = res.msg
|
|
// if(res.msg=='学员未签退,请先签退') {
|
|
// if(!this.count) {
|
|
// this.count ++
|
|
// console.log('来这了?')
|
|
// const res2 = await reSignOut({coachId: this.params.coachId})
|
|
// console.log('来这没有?')
|
|
// this.vailStudentInfoFn()
|
|
// console.log('补签结果')
|
|
// console.log(res2)
|
|
|
|
// this.getInitFaceVerifyFn('补签退')
|
|
// }
|
|
|
|
// }
|
|
}
|
|
|
|
if(res.code==0) {
|
|
this.step1 = true
|
|
this.params.key = res.data
|
|
// this.siginFn()
|
|
this.getInitFaceVerifyFn()
|
|
}
|
|
console.log(res)
|
|
},
|
|
// 人脸对比
|
|
async getInitFaceVerifyFn() {
|
|
const verifyPlugin = uni.requireNativePlugin('Ocr-FaceDetectModule');
|
|
var metaInfo = verifyPlugin.getMetaInfo()
|
|
if(typeof metaInfo =='object' ) {
|
|
metaInfo = JSON.stringify(metaInfo)
|
|
}
|
|
console.log(metaInfo)
|
|
const res = await getInitBodyFaceVerify({metaInfo, userId : this.userId})
|
|
console.log(res)
|
|
let certifyId = res.data.body.resultObject.certifyId
|
|
let _this = this
|
|
verifyPlugin.verify({
|
|
certifyId,
|
|
// extParams: {
|
|
// kIdentityParamKeyIdCardFaceOnly: 'YES'
|
|
// }
|
|
}, function(response){
|
|
console.log(response)
|
|
if(response.code==1000) {
|
|
getDescribeBodyFaceVerify({certifyId,}).then((useRes)=>{
|
|
_this.step2 = true
|
|
_this.params.certifyId = certifyId
|
|
_this.siginFn()
|
|
})
|
|
}else if(response.code==2006) {
|
|
_this.$u.toast('认证失败!请确定是本人后再重试')
|
|
}else {
|
|
_this.$u.toast(response.msg)
|
|
}
|
|
});
|
|
},
|
|
// 签到签退
|
|
async siginFn() {
|
|
let fn = operationSigin
|
|
let obj = this.params
|
|
if(this.params.type==3) {
|
|
fn = signOut
|
|
obj = {
|
|
"certifyId": this.params.certifyId,
|
|
"signKey": this.params.key,
|
|
"coachId": this.params.coachId
|
|
}
|
|
}
|
|
console.log(obj)
|
|
const res = await fn(obj)
|
|
if(res.code=='200240213') {
|
|
this.$u.toast(res.msg)
|
|
}
|
|
console.log('签到结果')
|
|
console.log(res)
|
|
if(res.code==0) {
|
|
this.step3 = true
|
|
let msg = '签到成功'
|
|
if(this.params.type==3) {
|
|
msg = '签退成功'
|
|
}
|
|
this.$u.toast(msg)
|
|
setTimeout(()=>{
|
|
uni.navigateBack()
|
|
},1000)
|
|
}
|
|
},
|
|
// 重新认证
|
|
Recertification() {
|
|
if(!this.step1) return
|
|
if(!this.step2) {
|
|
// this.siginFn()
|
|
this.getInitFaceVerifyFn()
|
|
}
|
|
if(!this.step3) {
|
|
this.siginFn()
|
|
}
|
|
},
|
|
goBack() {
|
|
uni.navigateBack()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.main {
|
|
padding: 10rpx 32rpx;
|
|
}
|
|
|
|
.signAndOut {
|
|
width: 100%;
|
|
height: calc(100vh - 150rpx);
|
|
background-color: #fff;
|
|
padding: 48rpx;
|
|
border-radius: 16rpx;
|
|
position: relative;
|
|
|
|
.footBtn {
|
|
padding: 48rpx 100rpx;
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
bottom: 60rpx;
|
|
|
|
}
|
|
|
|
.top_row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 0 0 52rpx;
|
|
|
|
.flex-box {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.icon {
|
|
width: 28rpx;
|
|
height: 28rpx;
|
|
|
|
image {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.txt {
|
|
font-size: 28rpx;
|
|
color: #FD6401;
|
|
margin-left: 14rpx;
|
|
}
|
|
}
|
|
}
|
|
|
|
.step {
|
|
padding: 50rpx 0 0 0;
|
|
|
|
.li {
|
|
width: 100%;
|
|
display: flex;
|
|
height: 256rpx;
|
|
|
|
// padding: 0 0 8rpx 0;
|
|
.leftIcon {
|
|
width: 56rpx;
|
|
height: 100%;
|
|
position: relative;
|
|
|
|
.icon {
|
|
width: 56rpx;
|
|
height: 56rpx;
|
|
border-radius: 50%;
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
text-align: center;
|
|
line-height: 56rpx;
|
|
background: url('../../../../static/images/carIcon/home_icon_weidao@2x.png');
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.line {
|
|
position: absolute;
|
|
left: 26rpx;
|
|
top: 50rpx;
|
|
width: 5rpx;
|
|
height: 200rpx;
|
|
border: 2rpx solid;
|
|
border-image: linear-gradient(180deg, rgba(238, 238, 238, 1), rgba(216, 216, 216, 1)) 2 2;
|
|
}
|
|
}
|
|
|
|
.textCon {
|
|
flex: 1;
|
|
padding: 0 0 0 8rpx;
|
|
font-weight: 550;
|
|
|
|
.text {
|
|
font-size: 36rpx;
|
|
color: #363A44;
|
|
}
|
|
|
|
.redTps {
|
|
font-size: 28rpx;
|
|
color: #E63633;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
width: 108rpx;
|
|
height: 52rpx;
|
|
text-align: center;
|
|
line-height: 52rpx;
|
|
color: #ffffff;
|
|
background: linear-gradient(180deg, #53D3E5 0%, #3593FB 100%);
|
|
border-radius: 8rpx;
|
|
|
|
&.red {
|
|
background: linear-gradient(180deg, #ea7c48 0%, #f54e40 100%);
|
|
}
|
|
}
|
|
&.active {
|
|
.leftIcon {
|
|
.icon {
|
|
// background: url('../../../static/images/icon/home_icon_yiguo@2x.png');
|
|
background-size: 100% 100%;
|
|
}
|
|
.line {
|
|
border-image: linear-gradient(180deg, rgba(83, 211, 229, 1), rgba(53, 147, 251, 1)) 2 2;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.oneBtn {
|
|
width: 100%;
|
|
height: 96rpx;
|
|
border-radius: 48rpx;
|
|
font-size: 36rpx;
|
|
color: #fff;
|
|
background: linear-gradient(180deg, #EEEEEE 0%, #D8D8D8 100%);
|
|
text-align: center;
|
|
line-height: 96rpx;
|
|
|
|
&.active {
|
|
background: linear-gradient(180deg, #3593FB 0%, #53D3E5 100%);
|
|
}
|
|
}
|
|
</style>
|