| 123456789101112131415161718192021 |
- <?php
- namespace open\controllers;
- use biz\saas\services\ApplyService;
- use common\components\util;
- use Yii;
- class ApplyController extends BaseController
- {
- //申请 shish 2019.12.23
- public function actionAdd()
- {
- $post = Yii::$app->request->post();
- $post['userId'] = $this->userId;
- ApplyService::addApply($post);
- util::ok('提交成功');
- }
- }
|