作者 lyh

gx

<?php
/**
* @remark :
* @name :ProjectKeywordController.php
* @author :lyh
* @method :post
* @time :2023/12/26 9:22
*/
namespace App\Http\Controllers\Bside\Keyword;
use App\Http\Controllers\Bside\BaseController;
class ProjectKeywordController extends BaseController
{
public function lists(){
}
}
... ...
... ... @@ -89,7 +89,7 @@ class BTemplateLogic extends BaseLogic
$type = $this->getCustomizedType($source, $source_id);//定制获取头部底部类型
$commonInfo = $this->getCommonPage($type,$this->user['project_id'],0);//获取定制头部
$html = $this->handleAllHtml($commonInfo,$templateInfo['html']);
return $this->success(['html'=>$html,'template_id'=>$template_id,'id'=>$templateInfo['id']]);
return $this->success(['html'=>$html,'template_id'=>$template_id,'id'=>$templateInfo['id'],'updated_at'=>$templateInfo['updated_at']]);
}
$mainInfo = ['main_html'=>$templateInfo['main_html'], 'main_css'=>$templateInfo['main_css']];
}
... ...
... ... @@ -25,7 +25,7 @@ class NewsRequest extends FormRequest
{
return [
'name'=>'required|max:100',
'remark'=>'max:255',
'remark'=>'max:500',
'url'=>'required',
];
}
... ... @@ -34,9 +34,9 @@ class NewsRequest extends FormRequest
{
return [
'name.required'=>'请填写名称',
'name.max'=>'名称超过最长长度',
'name.max'=>'名称超过最长长度100',
'url.required'=>'链接不能为空',
'remark.max'=>'描述超过最长长度'
'remark.max'=>'描述超过最长长度500'
];
}
}
... ...