You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
615 B
PHTML
26 lines
615 B
PHTML
5 years ago
|
<?php
|
||
|
namespace Payment\Controller;
|
||
|
/**
|
||
|
* 后台首页控制器
|
||
|
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
|
||
|
*/
|
||
|
class PaymentController extends BaseController
|
||
|
{
|
||
|
public function _initialize()
|
||
|
{
|
||
|
$this->admininfo = session('payment_user');;
|
||
|
// $this->DBModel = M("CompanyStatementPool","tab_");
|
||
|
parent::_initialize();
|
||
|
}
|
||
|
public function transfer_set()
|
||
|
{
|
||
|
// dump($this->admininfo);
|
||
|
$this->meta_title = '打款设置';
|
||
|
//TODO:获取 当前账号余额
|
||
|
$money = 10000;
|
||
|
$this->assign("money",$money);
|
||
|
$this->display();
|
||
|
}
|
||
|
|
||
|
}
|