全栈小学生 384e793c7e up
2025-05-23 14:40:12 +08:00

94 lines
2.3 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\verify;
use app\dict\verify\VerifyDict;
use app\service\admin\verify\VerifierService;
use core\base\BaseAdminController;
use think\Response;
class Verifier extends BaseAdminController
{
/**
* 核销人员列表
* @return Response
*/
public function lists()
{
return success(data: ( new VerifierService() )->getPage());
}
/**
* 核销人员列表
* @return Response
*/
public function select()
{
return success(data: ( new VerifierService() )->getList());
}
/**
* 获取核销员信息
* @param int $order_id
* @return Response
*/
public function detail($id)
{
return success(data: ( new VerifierService() )->getDetail($id));
}
/**
* 添加核销员
* @param int $order_id
* @return Response
*/
public function add()
{
$data = $this->request->params([
[ 'member_id', 0 ],
[ 'verify_type', '' ],
]);
return success(data: ( new VerifierService() )->add($data));
}
/**
* 添加核销员
* @param int $order_id
* @return Response
*/
public function edit($id)
{
$data = $this->request->params([
[ 'verify_type', '' ],
]);
( new VerifierService() )->edit($id,$data);
return success('EDIT_SUCCESS');
}
/**
* 删除核销员
*/
public function del(int $id)
{
return success('DELETE_SUCCESS', ( new VerifierService() )->del($id));
}
/**
* 获取核销类型
* @return Response
*/
public function getVerifyType()
{
return success(VerifyDict::getType());
}
}