39 lines
982 B
PHP
39 lines
982 B
PHP
<?php
|
||
// +------------------------------------------------+
|
||
// |http://www.cjango.com |
|
||
// +------------------------------------------------+
|
||
// | 修复BUG不是一朝一夕的事情,等我喝醉了再说吧! |
|
||
// +------------------------------------------------+
|
||
// | Author: 小陈叔叔 <Jason.Chen> |
|
||
// +------------------------------------------------+
|
||
namespace app\mobile\controller;
|
||
|
||
use app\common\model\Member as MemberModel;
|
||
|
||
class Agent extends _Init
|
||
{
|
||
|
||
public function _initialize()
|
||
{
|
||
parent::_initialize();
|
||
$this->nav = 4;
|
||
}
|
||
|
||
public function index()
|
||
{
|
||
return $this->fetch();
|
||
}
|
||
|
||
//我的推广
|
||
public function child()
|
||
{
|
||
if(empty($this->user->info->is_agent)){
|
||
$this->redirect('finance/agent');
|
||
}
|
||
$this->list = MemberModel::where('pid', UID)->order('create_time desc')->select();
|
||
return $this->fetch('');
|
||
}
|
||
|
||
|
||
}
|