作者 lyh

gxA端页面通知

@@ -213,7 +213,7 @@ class InquiryLogic extends BaseLogic @@ -213,7 +213,7 @@ class InquiryLogic extends BaseLogic
213 'phone_region'=>$data['phone_region'] ?? '', 213 'phone_region'=>$data['phone_region'] ?? '',
214 ]; 214 ];
215 if(!empty($param['phone_region'])){ 215 if(!empty($param['phone_region'])){
216 - $param['country'] = Translate::tran($this->param['phone_region'], 'zh') ?? ''; 216 + $param['country'] = Translate::tran($param['phone_region'], 'zh') ?? '';
217 } 217 }
218 (new PhoneData())->addReturnId($param); 218 (new PhoneData())->addReturnId($param);
219 return $this->success($param); 219 return $this->success($param);
  1 +<?php
  2 +/**
  3 + * @remark :
  4 + * @name :WebSettingYoutube.php
  5 + * @author :lyh
  6 + * @method :post
  7 + * @time :2025/3/11 15:51
  8 + */
  9 +
  10 +namespace App\Models\WebSetting;
  11 +
  12 +use App\Models\Base;
  13 +
  14 +/**
  15 + * @remark :youtube账号密码设置
  16 + * @name :WebSettingYoutube
  17 + * @author :lyh
  18 + * @method :post
  19 + * @time :2025/3/11 15:51
  20 + */
  21 +class WebSettingYoutube extends Base
  22 +{
  23 + protected $table = 'gl_web_setting_youtube';
  24 +}