From f224edf69349a719a4441f50e62e9e0a7340d1ce Mon Sep 17 00:00:00 2001 From: yaooo <272523191@qq.com> Date: Mon, 18 Sep 2023 13:53:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=95=86=E6=88=B7=E4=BA=A4?= =?UTF-8?q?=E6=98=93=E7=94=B3=E8=AF=B7=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/repositories/system/CacheRepository.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/common/repositories/system/CacheRepository.php b/app/common/repositories/system/CacheRepository.php index ead67414..0a3bbd1d 100644 --- a/app/common/repositories/system/CacheRepository.php +++ b/app/common/repositories/system/CacheRepository.php @@ -66,6 +66,8 @@ class CacheRepository extends BaseRepository const COUPON_AGREE = 'sys_coupon_agree'; //付费会员协议 const SYS_SVIP = 'sys_svip'; + //交易申请协议 + const BUSINESS_APPLY_AGREE = 'business_apply_agree'; public function getAgreeList($type) { @@ -75,6 +77,7 @@ class CacheRepository extends BaseRepository ['label' => '平台规则', 'key' => self::PLATFORM_RULE], ['label' => '注销重要提示', 'key' => self::CANCELLATION_PROMPT], ['label' => '商户入驻申请协议', 'key' => self::INTEGRAL_AGREE], + ['label' => '交易申请协议', 'key' => self::BUSINESS_APPLY_AGREE], ]; if (!$type) { $data[] = ['label' => '注销声明', 'key' => self::CANCELLATION_MSG];