From 790b5ee1c09e6e5592ddac9541736bbba39c0aac Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Tue, 10 Jun 2025 14:27:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=88=E7=94=A8show=E7=9A=84=E9=92=A9?= =?UTF-8?q?=E5=AD=90=E5=AE=9E=E7=8E=B0=E7=AD=BE=E8=AE=A2=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E5=90=8E=E8=B7=B3=E8=BD=AC=E8=87=B3=E6=94=AF=E4=BB=98=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index/index.js | 2 +- subpages/index/checkInUser/checkInUser.js | 14 +++++++++++++- subpages/index/checkInWait/checkInWait.js | 14 +++++++++++++- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/pages/index/index.js b/pages/index/index.js index e0fc099..1a83b30 100644 --- a/pages/index/index.js +++ b/pages/index/index.js @@ -177,7 +177,7 @@ Page({ }else if(e.currentTarget.dataset.url){ if(this.data.userInfo.idCard){ wx.navigateTo({ - url: `/subpages/index/checkInUser/checkInUser?idCard=${res.data.idCard}`, + url: `/subpages/index/checkInUser/checkInUser?idCard=${this.data.userInfo.idCard}`, }) }else{ wx.navigateTo({ diff --git a/subpages/index/checkInUser/checkInUser.js b/subpages/index/checkInUser/checkInUser.js index 276a5e1..f7550ed 100644 --- a/subpages/index/checkInUser/checkInUser.js +++ b/subpages/index/checkInUser/checkInUser.js @@ -40,7 +40,19 @@ Page({ * 生命周期函数--监听页面显示 */ onShow() { - + if(this.data.form){ + const pamars = { + bizId:this.data.form.chooseRecId || '', + signType:1 + } + eSignDownload(pamars).then(res=>{ + if(res.data.code === 0){ + wx.navigateTo({ + url: '/subpages/OCRCard/pages/deposit/deposit', + }) + } + }) + } }, /** diff --git a/subpages/index/checkInWait/checkInWait.js b/subpages/index/checkInWait/checkInWait.js index ab36522..7ecb061 100644 --- a/subpages/index/checkInWait/checkInWait.js +++ b/subpages/index/checkInWait/checkInWait.js @@ -33,7 +33,19 @@ Page({ * 生命周期函数--监听页面显示 */ onShow() { - + if(this.data.info){ + const pamars = { + bizId:this.data.info.chooseRecId ||'', + signType:1 + } + eSignDownload(pamars).then(res=>{ + if(res.data.code === 0){ + wx.navigateTo({ + url: '/subpages/OCRCard/pages/deposit/deposit', + }) + } + }) + } }, /**