dataLists(new ProjectCostAdjustmentLists()); } /** * @notes 添加成本调整 * @return \think\response\Json * @author likeadmin * @date 2024/01/17 13:43 */ public function add() { $params = (new ProjectCostAdjustmentValidate())->post()->goCheck('add'); $result = ProjectCostAdjustmentLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(ProjectCostAdjustmentLogic::getError()); } /** * @notes 编辑成本调整 * @return \think\response\Json * @author likeadmin * @date 2024/01/17 13:43 */ public function edit() { $params = (new ProjectCostAdjustmentValidate())->post()->goCheck('edit'); $result = ProjectCostAdjustmentLogic::edit($params,$this->adminId); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(ProjectCostAdjustmentLogic::getError()); } /** * @notes 删除成本调整 * @return \think\response\Json * @author likeadmin * @date 2024/01/17 13:43 */ public function delete() { $params = (new ProjectCostAdjustmentValidate())->post()->goCheck('delete'); ProjectCostAdjustmentLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取成本调整详情 * @return \think\response\Json * @author likeadmin * @date 2024/01/17 13:43 */ public function detail() { $params = (new ProjectCostAdjustmentValidate())->goCheck('detail'); $result = ProjectCostAdjustmentLogic::detail($params); return $this->data($result); } public function flows(): \think\response\Json { $flow_type = FlowType::where('type',4)->where('name','cbtz')->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 ProjectCostAdjustmentValidate())->post()->goCheck('approve'); $result = ProjectCostAdjustmentLogic::approve($params,$this->adminId); if (true === $result) { return $this->success('提交审核信息成功', [], 1, 1); } return $this->fail(ProjectCostAdjustmentLogic::getError()); } }