2024-08-06 17:46:36 +08:00

82 lines
2.2 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\api\controller\sys;
use app\service\api\verify\VerifyService;
use core\base\BaseApiController;
use think\Response;
class Verify extends BaseApiController
{
/**
* 获取验证码
* @return Response
*/
public function getVerifyCode(){
$data = $this->request->params([
['data', []],
['type', '']
]);
return success(data:(new VerifyService())->getVerifyCode($data['type'], $data['data']));
}
/**
* 获取核销码信息
* @param $code
* @return Response
*/
public function getInfoByCode($code){
return success(data:(new VerifyService())->getInfoByCode($code));
}
/**
* 核销
* @param $code
* @return Response
*/
public function verify($code){
return success(data:(new VerifyService())->verify($code));
}
/**
* 校验是否是核销员
* @return Response
*/
public function checkVerifier(){
return success(data:(new VerifyService())->checkVerifier());
}
/**
* 核销记录
* @return void
*/
public function records(){
$data = $this->request->params([
['relate_tag', 0],
['type', ''],
['code', ''],
['keyword', ''],
['create_time', []]
]);
return success(data:(new VerifyService())->getRecordsPageByVerifier($data));
}
/**
* 获取核销详情
* @param $code
* @return Response
*/
public function detail(string|int $code){
return success(data:(new VerifyService())->getRecordsDetailByVerifier($code));
}
}