Przeglądaj źródła

群组开关配置

lizhen_gitee 6 miesięcy temu
rodzic
commit
b0ed6d8318

+ 1 - 0
application/api/controller/Baseconfig.php

@@ -23,6 +23,7 @@ class Baseconfig extends Api
             'kefu_phone' => config('site.kefuphoneno'),//客服电话号
             'index_jiuyipeizhen' => localpath_to_netpath(config('site.index_jiuyipeizhen')),//首页就医陪诊
             'index_hulipeihu' => localpath_to_netpath(config('site.index_hulipeihu')),//首页护理陪护
+            'app_imgroup_switch' => config('site.app_imgroup_switch'),//APP群聊功能开关
         ];
 
 

+ 2 - 0
application/api/controller/tvuser/Baseconfig.php

@@ -28,6 +28,8 @@ class Baseconfig extends Api
 
             'tv_wenzhen_no_camera_notice'               => config('site.tv_wenzhen_no_camera_notice'),//问诊没有摄像头提示语
             'tv_friend_no_camera_notice'                => config('site.tv_friend_no_camera_notice'),//好友页没有摄像头提示语
+
+            'tv_imgroup_switch' => config('site.tv_imgroup_switch'),//电视盒子群聊功能开关
         ];
 
         $this->success('success',$config);

+ 2 - 0
application/extra/site.php

@@ -119,4 +119,6 @@ return array (
   'tv_device_index_image' => '/uploads/20240709/b2fa02721dfab1e640abfee0575acd1a.png',
   'tv_wenzhen_no_camera_notice' => '您暂未接入摄像头,请接入摄像头后重试。您也可微信扫码下载APP进行视频问诊',
   'tv_friend_no_camera_notice' => '您暂未接入摄像头,请接入摄像头后重试。您也可微信扫码下载APP与好友视频通话',
+  'app_imgroup_switch' => '1',
+  'tv_imgroup_switch' => '1',
 );