PlatformController.php 456 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace backend\controllers;
  3. use Yii;
  4. use yii\web\Controller;
  5. use yii\filters\AccessControl;
  6. use yii\data\Pagination;
  7. class PlatformController extends BackendController
  8. {
  9. /**
  10. * 资金流水
  11. * @return string
  12. */
  13. public function actionCapital()
  14. {
  15. return $this->render('capital');
  16. }
  17. /**
  18. * 消息管理
  19. */
  20. public function actionInform()
  21. {
  22. return $this->render('inform');
  23. }
  24. }