request->isAjax()) { $get = $this->request->get(); $lists = FaceSheetOrderLogic::lists($get, $this->shop_id); return JsonServer::success("", $lists); } return view(); } /** * @notes 选择打印模板 * @return \think\response\View * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2023/2/13 16:55 */ public function select() { return view("", [ 'template' => FaceSheetTplLogic::allTpl($this->shop_id), 'sender' => FaceSheetSenderLogic::allSender($this->shop_id), ]); } /** * @notes 打印 * @return \think\response\Json * @author 段誉 * @date 2023/2/13 16:56 */ public function print() { if (!$this->request->isAjax()) { return JsonServer::error('请求异常'); } $params = (new FaceSheetOrderValidate())->goCheck(null, [ 'shop_id' => $this->shop_id, 'admin_id' => $this->admin_id ]); $result = FaceSheetOrderLogic::print($params); if ($result !== true) { return JsonServer::error(FaceSheetOrderLogic::getError()); } return JsonServer::success('操作成功'); } }