1234567891011121314151617181920 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 管理首页
- */
- namespace app\bestbao\controller\Manage;
- use app\bestbao\controller\Common;
- class Index extends Common{
- /**
- * 商家关联
- * @return void
- */
- public function index(){
- $this->redirect(url('bestbao/order/index'));
- }
- }
|