- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\controller\api\pc;
|
|
|
|
use app\Request;
|
|
use app\services\order\StoreOrderRefundServices;
|
|
use think\annotation\Inject;
|
|
|
|
/**
|
|
* 售后订单
|
|
* Class RefundController
|
|
* @package app\controller\api\v1\order
|
|
*/
|
|
class Refund
|
|
{
|
|
|
|
/**
|
|
* @var StoreOrderRefundServices
|
|
*/
|
|
#[Inject]
|
|
protected StoreOrderRefundServices $services;
|
|
|
|
/**
|
|
* 订单列表
|
|
* @param Request $request
|
|
* @return mixed
|
|
*/
|
|
public function lst(Request $request)
|
|
{
|
|
$where = $request->getMore([
|
|
['refund_type', '', '', 'refundTypes']
|
|
]);
|
|
$where['uid'] = $request->uid();
|
|
$list = $this->services->getRefundOrderList($where);
|
|
return app('json')->successful($list);
|
|
}
|
|
|
|
/**
|
|
* 订单详情
|
|
* @param Request $request
|
|
* @param $uni
|
|
* @return mixed
|
|
*/
|
|
public function detail(StoreOrderRefundServices $services, Request $request, $uni)
|
|
{
|
|
$orderData = $services->refundDetail($uni);
|
|
return app('json')->successful('ok', $orderData);
|
|
}
|
|
|
|
|
|
/**
|
|
* 取消申请
|
|
* @param $id
|
|
* @return mixed
|
|
*/
|
|
public function cancelApply(Request $request, $uni)
|
|
{
|
|
if (!strlen(trim($uni))) return app('json')->fail('参数错误');
|
|
$uid = (int)$request->uid();
|
|
$this->services->cancelApplyRefund($uid, $uni);
|
|
return app('json')->success('取消成功');
|
|
}
|
|
|
|
/**
|
|
* 删除已退款和拒绝退款的订单
|
|
* @param Request $request
|
|
* @param $uni
|
|
* @return mixed
|
|
*/
|
|
public function delRefundOrder(Request $request, $uni)
|
|
{
|
|
if (!strlen(trim($uni))) return app('json')->fail('参数错误');
|
|
$uid = (int)$request->uid();
|
|
$this->services->delRefundOrder($uid, $uni);
|
|
return app('json')->success('删除成功');
|
|
}
|
|
}
|