cf-platform/Application/Mobile/Controller/RechargeController.class.php

16 lines
233 B
PHTML

<?php
namespace Mobile\Controller;
use Think\Controller;
/**
* 首页
*/
class RechargeController extends BaseController {
public function index(){
$this->assign('mate_tile','用户充值');
$this->display();
}
}