Client.php
657 字节
<?php
namespace app\web\controller;
/**
* 客户管理
* Class Client
* @package app\web\controller
*/
class Client extends Controller
{
public function client_edit_center()
{
$this->view->engine->layout(false);
return $this->fetch();
}
public function client_edit_left()
{
$this->view->engine->layout(false);
return $this->fetch();
}
public function client_list_center()
{
$this->view->engine->layout(false);
return $this->fetch();
}
public function client_list_right()
{
$this->view->engine->layout(false);
return $this->fetch();
}
}