request->get(); $result = VerificationLogic::lists($params, $this->page_no, $this->page_size, $this->shop_id); return JsonServer::success('获取成功', $result); } /** * @notes 订单详情 * @return \think\response\Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2022/11/2 18:08 */ public function detail() { $params = $this->request->get(); (new VerificationValidate())->goCheck('detail', ['shop_id' => $this->shop_id]); $result = VerificationLogic::detail($params, $this->shop_id); return JsonServer::success('', $result); } /** * @notes 核销订单 * @return \think\response\Json * @author 段誉 * @date 2022/11/2 17:11 */ public function confirm() { $params = $this->request->post(); (new VerificationValidate())->goCheck('confirm', ['shop_id' => $this->shop_id]); $result = VerificationLogic::verification($params, $this->shop); if(false === $result) { return JsonServer::error(OrderLogic::getError() ?: '操作失败'); } return JsonServer::success('操作成功'); } }