/**
     * 编辑
     */
    public function edit($ids = null)
    {
        $row = $this->model->get($ids);
        //原数据
        $rowdata = $this->model->get($ids)->toArray();

        if ($this->request->isPost()) {
            //表单提交的数据
            $data = $this->request->post();
            $model = new WithdrawModel;
            $model->allowField(true)->save($data, ['id' => $rowdata['id']]);
            
            $this->success();

        }else{
             return parent::edit($ids);
        }

    }

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部