1234567891011121314151617181920212223 |
- <?php
- namespace app\index\controller;
- use app\common\controller\Frontend;
- use app\common\model\UserOrder;
- use app\service\UserOrderService;
- use think\helper\Str;
- class Index extends Frontend
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- protected $layout = '';
- public function index()
- {
- return $this->view->fetch();
- }
- public function test(UserOrderService $orderService){
- }
- }
|