From ba37efbed7263c24862b09ac85bd9100bc905837 Mon Sep 17 00:00:00 2001 From: heshupeng <hsp@bronet.cn> Date: Thu, 17 Dec 2020 14:50:34 +0800 Subject: [PATCH] 职位海报 --- application/api/controller/Index.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/application/api/controller/Index.php b/application/api/controller/Index.php index 034f625..5183ae8 100644 --- a/application/api/controller/Index.php +++ b/application/api/controller/Index.php @@ -418,10 +418,12 @@ class Index extends Api } // 职位小程序码 - $qrcode = $dir.'/qrcode_'.$job_id.'.png'; + $user_id = $this->auth->id > 0 ? $this->auth->id : 0; + $qrcode_id = "{$job_id}_{$user_id}"; + $qrcode = $dir.'/qrcode_'.$qrcode_id.'.png'; if(!file_exists($qrcode)){ $user_id = $this->auth->id > 0 ? $this->auth->id : 0; - $response = Wechat::miniProgram()->app_code->getUnlimit("{$job_id}_{$user_id}", [ + $response = Wechat::miniProgram()->app_code->getUnlimit($qrcode_id, [ 'page' => 'pages/zhiwei_xq/zhiwei_xq', 'width' => 280, //最小宽度280 ]); -- libgit2 0.24.0