123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace app\smartbc\controller\Manage;
- use app\smartbc\controller\Common;
- use app\smartbc\model\Bank as ModelBank;
- use app\smartbc\model\BankBill;
- use app\smartbc\model\BankCash;
- use app\smartbc\model\Card;
- use app\smartbc\model\CardUser;
- use app\smartbc\model\CardUserOrder;
- use app\smartbc\model\Coupon;
- use app\smartbc\model\CouponUser;
- use app\smartbc\model\Fund;
- use app\smartbc\model\CouponSubsidize;
- use app\smartbc\model\MchIdQueen;
- use app\smartbc\model\Store;
- use app\smartbc\model\Order;
- use app\smartbc\model\Vip;
- use app\common\model\SystemUser;
- use think\facade\Request;
- use think\helper\Time;
- class Index extends Common{
- public function initialize() {
- parent::initialize();
- $this->assign('pathMaps', [['name'=>'管理首页','url'=>'javascript:;']]);
- }
-
- public function Index(){
- $this->redirect(url('store/index'));
- }
- }
|