| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace backend\controllers;
- use Yii;
- use yii\web\Controller;
- use yii\filters\AccessControl;
- use yii\data\Pagination;
- class PlatformController extends BackendController
- {
- /**
- * 资金流水
- * @return string
- */
- public function actionCapital()
- {
- return $this->render('capital');
- }
-
- /**
- * 消息管理
- */
- public function actionInform()
- {
- return $this->render('inform');
- }
- }
|