ApplyController.php 356 B

123456789101112131415161718192021
  1. <?php
  2. namespace open\controllers;
  3. use biz\saas\services\ApplyService;
  4. use common\components\util;
  5. use Yii;
  6. class ApplyController extends BaseController
  7. {
  8. //申请 shish 2019.12.23
  9. public function actionAdd()
  10. {
  11. $post = Yii::$app->request->post();
  12. $post['userId'] = $this->userId;
  13. ApplyService::addApply($post);
  14. util::ok('提交成功');
  15. }
  16. }