fix: 调整扫码逻辑

hyx_2025-01-13_xgf2.0
mengfanliang 2025-03-07 16:05:16 +08:00
parent bd40af6eb3
commit 932f5955ca
6 changed files with 107 additions and 57 deletions

View File

@ -1,14 +1,14 @@
<script> <script>
export default { export default {
onLaunch: function () { onLaunch: function () {
console.log('App Launch') // console.log('App Launch')
this.isLogin() this.isLogin()
}, },
onShow: function () { onShow: function () {
console.log('App Show') // console.log('App Show')
}, },
onHide: function () { onHide: function () {
console.log('App Hide') // console.log('App Hide')
}, },
methods:{ methods:{
// //

View File

@ -84,4 +84,5 @@ export const compareUserFaceCertify = (params) => post('/app/user/compareFace',
export const compareUserVideoFaceCertify = (params) => post('/app/user/compareVideoFace', params) // 视频人脸验证 export const compareUserVideoFaceCertify = (params) => post('/app/user/compareVideoFace', params) // 视频人脸验证
export const compareUserExamFaceCertify = (params) => post('/app/user/compareExamFace', params) // 考试照片人脸认证 export const compareUserExamFaceCertify = (params) => post('/app/user/compareExamFace', params) // 考试照片人脸认证
export const compareUserExamVideoFaceCertify = (params) => post('/app/user/compareExamVideoFace', params) // 考试视频人脸认证 export const compareUserExamVideoFaceCertify = (params) => post('/app/user/compareExamVideoFace', params) // 考试视频人脸认证
export const getListAll = (params) => post("/app/stagestudentrelation/getClassInfoByParams", params);
// ********************* end *********************** // ********************* end ***********************

View File

@ -98,63 +98,94 @@ export default {
} }
}, },
onLoad() { onLoad() {
// , /utils/updateVersion.js
this.fnUpdateVersion(false) this.fnUpdateVersion(false)
this.getUserFaceCompleted() this.getUserFaceCompleted()
}, },
methods: { methods: {
handleGetListAll(classId) {
return new Promise(async (resolve, reject) => {
const userInfo = store.getters.getUserInfo
await getListAll({
classId,
userId: userInfo.USER_ID
})
.then((resData) => {
resolve(resData.classInfo)
})
.catch(() => {
uni.$u.toast('网络开小差了,请稍后尝试')
reject()
})
})
},
async fnScan() { async fnScan() {
uni.scanCode({ uni.scanCode({
success: async (res) => { success: async (res) => {
let obj = JSON.parse(res.result) // let obj = JSON.parse(res.result)
let type = obj[0].CODE_TYPE // let type = obj[0].CODE_TYPE
if (type === '0') { const { classId, type } = JSON.parse(response.result)
let info = await setEntryV1({ const classInfo = await this.handleGetListAll(classId);
switch(type) {
case "0": {
let info = await setEntryV1({
userId: this.userInfo.USER_ID, userId: this.userInfo.USER_ID,
corpinfoId: obj[0].CORPINFO_ID, corpinfoId: obj[0].CORPINFO_ID,
RELEVANT_UNIT_NAME: obj[0].RELEVANT_UNIT_NAME, RELEVANT_UNIT_NAME: obj[0].RELEVANT_UNIT_NAME,
postMethod: 'application/json' postMethod: 'application/json'
}) })
if (info.code === 200) { if (info.code === 200) {
uni.$u.toast('入职成功') uni.$u.toast('入职成功')
} else { } else {
uni.$u.toast('入职失败,请联系管理员') uni.$u.toast('入职失败,请联系管理员')
}
} else if (type === '1') {
// type=1
uni.$u.route({
url: '/pages/electronic_work_card/index',
params: {
USER_ID: obj[0].USER_ID,
CODE_TYPE: obj[0].CODE_TYPE
} }
}) break;
} else if (type === '2') { };
// , [type: 2 --> ] case "1": {
if (findClassId) { // type=1
uni.$u.route({ uni.$u.route({
url: '/pages/train_management/realname_info_auth', url: '/pages/electronic_work_card/index',
params: { params: {
type: 'scan_face', USER_ID: obj[0].USER_ID,
classId CODE_TYPE: obj[0].CODE_TYPE
} }
}) })
} else { break;
uni.$u.toast('您未在培训计划内,无法入班签到,请联系教师') };
} case "2": {
} else if (type === '3') { // , [type: 2 --> ]
// [type: 3 --> ] if (classInfo) {
if (findClassId) { uni.$u.route({
uni.$u.route({ url: '/pages/train_management/realname_info_auth',
url: '/pages/train_management/face_authentication', params: {
params: { type: 'scan_face',
type: 'learning_certification', classId
stageexampaperinputId, }
classId, })
} } else {
}) uni.$u.toast('您未在培训计划内,无法入班签到,请联系教师')
} else { }
uni.$u.toast('您未在培训计划内,无法进行考试,请联系教师') break;
};
case "3": {
// [type: 3 --> ]
if (classInfo) {
uni.$u.route({
url: '/pages/train_management/face_authentication',
params: {
type: 'learning_certification',
stageexampaperinputId,
classId,
}
})
} else {
uni.$u.toast('您未在培训计划内,无法进行考试,请联系教师')
}
break;
} }
default: {
break;
};
} }
} }
}) })

View File

@ -44,6 +44,7 @@ export default {
} }
}, },
onLoad() { onLoad() {
// , /utils/updateVersion.js
this.fnUpdateVersion(false) this.fnUpdateVersion(false)
}, },
methods: { methods: {

View File

@ -45,8 +45,8 @@
</template> </template>
<script> <script>
import { getClassList, getIsUploadFace, getStudentInfoApi } from '@/api'; import { getClassList, getIsUploadFace, getStudentInfoApi, getListAll } from '@/api'
import store from '@/store/index'; import store from '@/store/index'
export default { export default {
data() { data() {
@ -65,9 +65,9 @@ export default {
}, },
/* 监听页面显示,页面每次出现在屏幕上都触发,包括从下级页面点返回露出当前页面 */ /* 监听页面显示,页面每次出现在屏幕上都触发,包括从下级页面点返回露出当前页面 */
async onShow() { async onShow() {
await this.getUserFaceCompleted() await this.getUserFaceCompleted()
await this.resetList() await this.resetList()
}, },
methods: { methods: {
@ -93,24 +93,40 @@ export default {
this.currentPage++ this.currentPage++
if (this.totalPage >= this.currentPage) this.getData() if (this.totalPage >= this.currentPage) this.getData()
}, },
handleGetListAll(classId) {
return new Promise(async (resolve, reject) => {
const userInfo = store.getters.getUserInfo
await getListAll({
classId,
userId: userInfo.USER_ID
})
.then((resData) => {
resolve(resData.classInfo)
})
.catch(() => {
uni.$u.toast('网络开小差了,请稍后尝试')
reject()
})
})
},
/** /**
* 右上角自定义扫码图标触发事件 * 右上角自定义扫码图标触发事件
*/ */
onNavigationBarButtonTap(e) { onNavigationBarButtonTap(e) {
// //
getStudentInfoFunc(); // this.getStudentInfoFunc();
// //
uni.scanCode({ uni.scanCode({
// scanType: ['qrCode'], // // scanType: ['qrCode'], //
onlyFromCamera: false, // onlyFromCamera: false, //
hideAlbum: false, // , hideAlbum: false, // ,
success: (response) => { success:async (response) => {
const { stageexampaperinputId, classId, type, } = JSON.parse(response.result) const { stageexampaperinputId, classId, type } = JSON.parse(response.result)
const findClassId = this.trainList.some((item) => item.classId === classId) const classInfo = await this.handleGetListAll(classId);
if (type === '2') { if (type === '2') {
// , [type: 2 --> ] // , [type: 2 --> ]
if (findClassId) { if (classInfo) {
uni.$u.route({ uni.$u.route({
url: '/pages/train_management/realname_info_auth', url: '/pages/train_management/realname_info_auth',
params: { params: {
@ -123,7 +139,7 @@ export default {
} }
} else if (type === '3') { } else if (type === '3') {
// [type: 3 --> ] // [type: 3 --> ]
if (findClassId) { if (classInfo) {
uni.$u.route({ uni.$u.route({
url: '/pages/train_management/face_authentication', url: '/pages/train_management/face_authentication',
params: { params: {
@ -149,7 +165,7 @@ export default {
* 使用网络接口获取学员信息 * 使用网络接口获取学员信息
*/ */
async getStudentInfoFunc() { async getStudentInfoFunc() {
const resData = await getStudentInfoApi(); const resData = await getStudentInfoApi()
await this.$store.dispatch('studentInfo', resData.studentInfo) await this.$store.dispatch('studentInfo', resData.studentInfo)
}, },
/** /**
@ -202,7 +218,7 @@ export default {
url: '/pages/train_management/exam_record', url: '/pages/train_management/exam_record',
params: { params: {
classId, classId,
stagestudentrelationId stagestudentrelationId
} }
}) })
} }

View File

@ -1,6 +1,7 @@
import refreshToken from "../api/refreshToken"; import refreshToken from "../api/refreshToken";
let requestPath = 'http://192.168.0.102:8059/xgf_gwj_2.0/'; // 后台请求地址 // let requestPath = 'http://192.168.0.102:8059/xgf_gwj_2.0/'; // 后台请求地址
let requestPath = 'http://192.168.0.37:8058/xgf_gwj_2.0/'; // 后台请求地址
// let requestPath = 'https://skqhdg.porthebei.com:9006/qa-prevention-xgf/'; // 后台请求地址 // let requestPath = 'https://skqhdg.porthebei.com:9006/qa-prevention-xgf/'; // 后台请求地址
// let requestPath = 'https://qgxgf.qhdsafety.com/qa-prevention-xgf/'; // 外网地址 // let requestPath = 'https://qgxgf.qhdsafety.com/qa-prevention-xgf/'; // 外网地址
import store from '../store/index' import store from '../store/index'