dataLists(new FinanceRefundApplyLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2023/12/14 16:58 */ public function add() { $params = (new FinanceRefundApplyValidate())->post()->goCheck('add'); $result = FinanceRefundApplyLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(FinanceRefundApplyLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2023/12/14 16:58 */ public function edit() { $params = (new FinanceRefundApplyValidate())->post()->goCheck('edit'); $result = FinanceRefundApplyLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(FinanceRefundApplyLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2023/12/14 16:58 */ public function delete() { $params = (new FinanceRefundApplyValidate())->post()->goCheck('delete'); FinanceRefundApplyLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2023/12/14 16:58 */ public function detail() { $params = (new FinanceRefundApplyValidate())->goCheck('detail'); $result = FinanceRefundApplyLogic::detail($params); return $this->data($result); } public function flows(): \think\response\Json { $flow_type = FlowType::where('type',3)->where('name','tksq')->findOrEmpty(); $data = Flow::field('id,name')->where('flow_cate',$flow_type['id'])->where('status',2)->select(); return $this->success('请求成功',$data->toArray()); } //添加审批 public function approve(): \think\response\Json { $params = (new FinanceRefundApplyValidate())->post()->goCheck('approve'); $result = FinanceRefundApplyLogic::approve($params,$this->adminId); if (true === $result) { return $this->success('提交审核信息成功', [], 1, 1); } return $this->fail(FinanceRefundApplyLogic::getError()); } }