admin/app/operations/controller/plus/operations/Apply.php
@@ -10,7 +10,7 @@
use app\operations\model\plus\operations\Apply as ApplyModel;
use app\operations\model\plus\operations\Operations as OperationsModel;
/**
@@ -27,8 +27,10 @@
    public function index()
    {
        $model = new ApplyModel;
        $operationsModel = new OperationsModel;
        $operations = $operationsModel->detail(session('jjjshop_operations')['user']['user_id']);
        $apply_list = $model->getList($this->postData());
        return $this->renderSuccess('', compact('apply_list'));
        return $this->renderSuccess('', compact('apply_list', 'operations'));
    }
@@ -51,8 +53,7 @@
        }
        return $this->renderError('修改失败');
        return $this->renderError($model->getError() ?: '修改失败');
    }