- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\message\service;
|
|
|
|
|
|
use app\dao\other\CategoryDao;
|
|
use app\services\other\CategoryServices;
|
|
use crmeb\services\FormBuilder;
|
|
use think\exception\ValidateException;
|
|
|
|
/**
|
|
* Class StoreServiceSpeechcraftCateServices
|
|
* @package app\services\message\service
|
|
*/
|
|
class StoreServiceSpeechcraftCateServices extends CategoryServices
|
|
{
|
|
/**
|
|
* 获取分类表单
|
|
* @param array $data
|
|
* @return mixed
|
|
*/
|
|
public function serviceSpeechcraftCateForm(array $data = [])
|
|
{
|
|
$f[] = FormBuilder::input('name', '分类名称:', $data['name'] ?? '')->required();
|
|
$f[] = FormBuilder::number('sort', '排序:', (int)($data['sort'] ?? 0))->min(0);
|
|
return $f;
|
|
}
|
|
|
|
/**
|
|
* 获取创建表单
|
|
* @return array
|
|
* @throws \FormBuilder\Exception\FormBuilderException
|
|
*/
|
|
public function createForm()
|
|
{
|
|
return create_form('添加分类', $this->serviceSpeechcraftCateForm(), $this->url('/app/wechat/speechcraftcate'), 'POST');
|
|
}
|
|
|
|
/**
|
|
* 获取编辑表单
|
|
* @param int $id
|
|
* @return array
|
|
* @throws \FormBuilder\Exception\FormBuilderException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function editForm(int $id)
|
|
{
|
|
$cateInfo = $this->dao->get($id);
|
|
if (!$cateInfo) {
|
|
throw new ValidateException('分类没有查询到');
|
|
}
|
|
return create_form('修改分类', $this->serviceSpeechcraftCateForm($cateInfo->toArray()), $this->url('/app/wechat/speechcraftcate/' . $id), 'PUT');
|
|
}
|
|
|
|
}
|