From 47f1ea3c3203e16f06454c514501cda737bd3ed5 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 16 May 2023 11:31:28 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=95=86=E6=88=B7=E8=B5=84?= =?UTF-8?q?=E8=B4=A8=E6=A0=A1=E9=AA=8C=E7=9A=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/model/system/merchant/Merchant.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/common/model/system/merchant/Merchant.php b/app/common/model/system/merchant/Merchant.php index c9b8e50f..4881e983 100644 --- a/app/common/model/system/merchant/Merchant.php +++ b/app/common/model/system/merchant/Merchant.php @@ -246,7 +246,11 @@ class Merchant extends BaseModel public function getIssetCertificateAttr() { - return count(merchantConfig($this->mer_id, 'mer_certificate') ?: []) > 0; + $merchantCertificate = merchantConfig($this->mer_id, 'mer_certificate'); + if (!is_array($merchantCertificate)) { + $merchantCertificate = empty($merchantCertificate) ? [] : explode(',', $merchantCertificate); + } + return count($merchantCertificate) > 0; } public function searchMerIdsAttr($query, $value)