全栈小学生 e6c822aa8e up niucloud
2025-06-26 15:07:17 +08:00

113 lines
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的多应用管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\adminapi\controller\member;
use app\service\admin\member\MemberLabelService;
use core\base\BaseAdminController;
use think\db\exception\DataNotFoundException;
use think\db\exception\DbException;
use think\db\exception\ModelNotFoundException;
use think\Response;
/**
* 会员标签
* Class MemberLabel
* @description 会员标签
* @package app\adminapi\controller\member
*/
class MemberLabel extends BaseAdminController
{
/**
* 会员标签列表
* @description 会员标签列表
* @return Response
*/
public function lists()
{
$data = $this->request->params([
[ 'label_name', '' ],
]);
return success(( new MemberLabelService() )->getPage($data));
}
/**
* 会员标签详情
* @description 会员标签详情
* @param int $id
* @return Response
*/
public function info(int $id)
{
return success(( new MemberLabelService() )->getInfo($id));
}
/**
* 添加会员标签
* @description 添加会员标签
* @return Response
*/
public function add()
{
$data = $this->request->params([
[ 'label_name', '' ],
[ 'memo', '' ],
[ 'sort', 0 ],
]);
$this->validate($data, 'app\validate\member\MemberLabel.add');
$id = ( new MemberLabelService() )->add($data);
return success('ADD_SUCCESS', [ 'label_id' => $id ]);
}
/**
* 编辑会员标签
* @description 编辑会员标签
*/
public function edit($id)
{
$data = $this->request->params([
[ 'label_name', '' ],
[ 'memo', '' ],
[ 'sort', 0 ],
]);
$this->validate($data, 'app\validate\member\MemberLabel.edit');
( new MemberLabelService() )->edit($id, $data);
return success('EDIT_SUCCESS');
}
/**
* 会员标签删除
* @description 会员标签删除
* @param int $id
* @return Response
*/
public function del(int $id)
{
( new MemberLabelService() )->del($id);
return success('DELETE_SUCCESS');
}
/**
* 获取标签
* @description 获取标签
* @return Response
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function getAll()
{
return success(( new MemberLabelService() )->getAll());
}
}