fix: 调整扫码逻辑
parent
bd40af6eb3
commit
932f5955ca
6
App.vue
6
App.vue
|
@ -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:{
|
||||||
// 是否登录
|
// 是否登录
|
||||||
|
|
|
@ -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 ***********************
|
||||||
|
|
|
@ -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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -44,6 +44,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
|
// 获取系统版本号, 其函数主体在 /utils/updateVersion.js 文件内查找
|
||||||
this.fnUpdateVersion(false)
|
this.fnUpdateVersion(false)
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue