faceCheck.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. const upload_image = require("../../utils/upload/upload_image");
  2. // pages/make_appointment/faceCheck/faceCheck.js
  3. const app = getApp()
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. // (过审专用,禁止删除)- start
  10. fake: null,
  11. // (过审专用,禁止删除)- start
  12. },
  13. // 获得抓拍的人脸照片
  14. async getPhotoPath(e) {
  15. app.data.catchFaceUrl = e.detail || null;
  16. if(e.detail) {
  17. wx.showLoading({
  18. title: '上传中...',
  19. })
  20. await upload_image({url: e.detail}).then((img) => {
  21. app.data.catchFaceUrl = img.url;
  22. }).catch(() => {
  23. wx.showToast({
  24. title: '上传失败,请再试一次吧',
  25. })
  26. });
  27. wx.hideLoading();
  28. }
  29. wx.navigateBack({
  30. delta: 1,
  31. });
  32. },
  33. //赋值收到的参数
  34. doCheckInfo() {
  35. let Info = app.data.faceCheckBaseInfo
  36. if(!Info) {
  37. return;
  38. }
  39. //护照照片
  40. this.data.passportFace = Info.passportFace
  41. //姓名
  42. this.data.username = Info.username;
  43. //身份证号
  44. this.data.idNumber = Info.idNumber;
  45. //手机号
  46. this.data.phone = Info.phone;
  47. //卡号
  48. this.data.cardIdEx = Info.cardIdEx;
  49. //抓拍后处理方式 1-无需比对直接提交 2-需要百度 1:1 比对
  50. this.data.type = Info.type;
  51. //
  52. // this.data.pageType = options.pageType;
  53. //常客/访客
  54. this.data.userType = Info.userType;
  55. //登录参数列表
  56. this.data.needLoginList = Info.needLoginList;
  57. //是否输入手机号 0-否 1-需要
  58. this.data.needPhone = Info.needPhone;
  59. //是否需要照片 0-否 1-需要
  60. this.data.needPhoto = Info.needPhoto;
  61. //是否需要实名 0-否 1-需要
  62. this.data.needRealname = Info.needRealname;
  63. },
  64. /**
  65. * 生命周期函数--监听页面加载
  66. */
  67. onLoad: function (options) {
  68. // (过审专用,禁止删除)- start
  69. this.setData({
  70. fake: (app.data.fake === false || app.data.fake == null ? false : true)
  71. })
  72. // (过审专用,禁止删除)- end
  73. },
  74. /**
  75. * 生命周期函数--监听页面初次渲染完成
  76. */
  77. onReady: function () {
  78. },
  79. /**
  80. * 生命周期函数--监听页面显示
  81. */
  82. onShow: function () {
  83. },
  84. /**
  85. * 生命周期函数--监听页面隐藏
  86. */
  87. onHide: function () {
  88. },
  89. /**
  90. * 生命周期函数--监听页面卸载
  91. */
  92. onUnload: function () {
  93. },
  94. /**
  95. * 页面相关事件处理函数--监听用户下拉动作
  96. */
  97. onPullDownRefresh: function () {
  98. },
  99. /**
  100. * 页面上拉触底事件的处理函数
  101. */
  102. onReachBottom: function () {
  103. },
  104. /**
  105. * 用户点击右上角分享
  106. */
  107. onShareAppMessage: function () {
  108. }
  109. })