123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- const app = getApp()
- const util = require("../../../utils/util");
- const api = require('../../../api/api.js');
- const user = require('../../../utils/user.js');
- import moment from 'moment'
- Page({
- data: {
- wholeState:{
- },
- state:'',
- contractUrl:'',
- signTime:'',
- flowId:'',
- active:0,
- steps:[
- {
- text: '实名认证',
- desc: '',
- inactiveIcon: '',
- activeIcon: 'success',
- },
- {
- text: '背景认证',
- desc: '',
- // inactiveIcon: 'like-o',
- activeIcon: 'success',
- },
- {
- text: '完成',
- desc:'完成',
- inactiveIcon: '',
- activeIcon: 'success',
- },
-
- ],
-
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- // app.globalData.flowId='';
- // this.getState();
- },
-
- onReachBottom() {
-
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow(e) {
- this.getState();
- const options = wx.getEnterOptionsSync()
- // options数据在上方
- console.log('---options', options);
- // wx.showModal({
- // title: '警告',
- // content: JSON.stringify(options),
- // });
- // &&options.referrerInfo.extraData.faceResult.ErrorCode === 0
- if (options && options.referrerInfo&& options.referrerInfo.extraData && options.referrerInfo.extraData.faceResult&&app.globalData.isFirstFace) {
- //这里需要调用e签宝后端【个人实名刷脸结果核对】接口,查询刷脸结果
- // 刷脸完成,会跳到贵司自己的小程序,查询刷脸结果完成!
- // this.getFaceResult();
- }
- },
- getState(){
- let userInfo = wx.getStorageSync('userInfo');
- let params={ workerNo:userInfo.workerNo};
- if(app.globalData.flowId){
- params.flowId=app.globalData.flowId;
- }
- util.request(api.faceAndInvestigation, params, 'GET').then(res=> {
- if (res.errno === 0) {
- let faceCheckState=res.data.faceCheckState;
- let backInvestigateState=res.data.backInvestigateState;
- let signPersonState=res.data.signPersonState;
- this.setData({
- wholeState:res.data,
- 'steps[0].desc':faceCheckState,
- 'steps[1].desc':signPersonState+'|'+backInvestigateState
- });
- if(faceCheckState!='认证成功'){
- this.setData({
- active:0,
- 'steps[0].activeIcon':'arrow',
-
- });
- }else if(backInvestigateState!='通过'){
- this.setData({
- active:1,
- 'steps[0].inactiveIcon':'checked',
-
- 'steps[1].activeIcon':'arrow',
-
- });
- }else if(backInvestigateState=='通过'){
- this.setData({
- active:2,
- 'steps[0].inactiveIcon':'checked',
- 'steps[1].inactiveIcon':'checked',
-
-
- });
- }
-
-
-
- }
- }).catch(err=>{
- });
- },
- signContract(){
- wx.showLoading({
- title: '加载中...',
- });
- let userInfo = wx.getStorageSync('userInfo');
- util.request(api.singGerenxinxisouquan, {
- workerNo:userInfo.workerNo
- }, 'GET').then(res=> {
- wx.hideLoading();
- if (res.errno === 0) {
- this.getSignUrl(res.data);
- }else{
- wx.showToast({
- title: res.errmsg,
- icon:'none'
- })
- }
- }).catch(err=>{
- });
- },
- getFaceResult(){
- let userInfo = wx.getStorageSync('userInfo');
-
- util.request(api.getFaceResult, {
- workerNo:userInfo.workerNo,
- flowId:app.globalData.flowId
- }, 'GET').then(res=> {
- console.log(res);
- // wx.showModal({
- // title: '警告',
- // content: JSON.stringify(res),
- // });
- if (res.errno === 0) {
- this.setData({
-
- state:res.data.faceCheckState,
-
- signTime:res.data.faceCheckTime!=''?moment(res.data.faceCheckTime).format('YYYY-MM-DD HH:mm:ss'):'',
-
- });
-
-
- }
- }).catch(err=>{
- });
- },
- getSignUrl(id){
-
- util.request(api.selectContractSignUrl, {
- procedureId:id
- }, 'GET').then(res=> {
- if (res.errno === 0) {
-
- app.globalData.webViewUrl=res.data;
-
- wx.navigateTo({
- url: '/pages/upgrade/webView/webView',
- });
- }else{
- wx.showToast({
- title: res.errmsg,
- icon:'none'
- })
- }
- }).catch(err=>{
- });
- },
- viewContract(){
- app.globalData.webViewUrl=this.data.wholeState.signPersonUrl;
- wx.navigateTo({
- url: '/pages/upgrade/webView/webView',
- })
- },
- goAuth(){
- if(this.data.active==0){
- this.faceAuth();
- }else if(this.data.active==1&&this.data.wholeState.backInvestigateState=='未背调'&&this.data.wholeState.signPersonState=='未签署'&&this.data.wholeState.signPersonUrl==''){
- this.signContract();
- }else if(this.data.active==1&&this.data.wholeState.backInvestigateState=='未背调'&&this.data.wholeState.signPersonState=='未签署'&&this.data.wholeState.signPersonUrl!=''){
- this.viewContract();
- }
- },
- faceAuth(){
- let userInfo = wx.getStorageSync('userInfo');
- wx.showLoading({
- title: '加载中...',
- });
- util.request(api.workerIndividualFace, {
- workerNo:userInfo.workerNo
- }, 'GET').then(res=> {
- wx.hideLoading();
- if (res.errno === 0) {
- // this.getSignUrl(res.data);
- let faceToken=res.data.faceToken;
- app.globalData.flowId=res.data.flowId;
- app.globalData.isFirstFace=true;
- wx.navigateToMiniProgram({
- appId: 'wx1cf2708c2de46337', // 公证签小程序APPID
- path: `/pages/face/index?bizToken=${faceToken}`, // 刷脸页面地址
- });
- }else{
- wx.showToast({
- title: res.errmsg,
- icon:'none'
- })
- }
- }).catch(err=>{
- });
- },
- onHide: function () {
- },
- onUnload: function () {
- },
-
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
-
- },
-
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- },
-
- })
|