dataLists(new ProjectMaterialBudgetLists()); } /** * @notes 添加材料预算 * @return \think\response\Json * @author likeadmin * @date 2024/01/08 16:30 */ public function add() { $params = (new ProjectMaterialBudgetValidate())->post()->goCheck('add'); $result = ProjectMaterialBudgetLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(ProjectMaterialBudgetLogic::getError()); } /** * @notes 编辑材料预算 * @return \think\response\Json * @author likeadmin * @date 2024/01/08 16:30 */ public function edit() { $params = (new ProjectMaterialBudgetValidate())->post()->goCheck('edit'); $result = ProjectMaterialBudgetLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(ProjectMaterialBudgetLogic::getError()); } /** * @notes 删除材料预算 * @return \think\response\Json * @author likeadmin * @date 2024/01/08 16:30 */ public function delete() { $params = (new ProjectMaterialBudgetValidate())->post()->goCheck('delete'); ProjectMaterialBudgetLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取材料预算详情 * @return \think\response\Json * @author likeadmin * @date 2024/01/08 16:30 */ public function detail() { $params = (new ProjectMaterialBudgetValidate())->goCheck('detail'); $result = ProjectMaterialBudgetLogic::detail($params); return $this->data($result); } public function flows(): \think\response\Json { $flow_type = FlowType::where('type',4)->where('name','clys')->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 ProjectMaterialBudgetValidate())->post()->goCheck('approve'); $result = ProjectMaterialBudgetLogic::approve($params,$this->adminId); if (true === $result) { return $this->success('提交审核信息成功', [], 1, 1); } return $this->fail(ProjectMaterialBudgetLogic::getError()); } }