ApplyController.php 322 B

12345678910111213141516171819202122
  1. <?php
  2. namespace saas\controllers;
  3. use biz\saas\services\ApplyService;
  4. use common\components\util;
  5. use Yii;
  6. use yii\web\Controller;
  7. class ApplyController extends BaseController
  8. {
  9. //申请列表
  10. public function actionList()
  11. {
  12. $where = [];
  13. $list = ApplyService::getApplyList($where);
  14. util::success($list);
  15. }
  16. }