AdminShopController.php 287 B

12345678910111213141516171819
  1. <?php
  2. namespace shop\controllers;
  3. use common\components\jwt;
  4. use common\components\util;
  5. use Yii;
  6. use yii\web\Controller;
  7. class AdminShopController extends BaseController
  8. {
  9. //添加管理员 shish 2020.4.16
  10. public function actionAdd()
  11. {
  12. util::complete();
  13. }
  14. }