18 lines
302 B
PHP
18 lines
302 B
PHP
<?php
|
|
|
|
namespace app\api\controller;
|
|
|
|
use app\common\controller\BaseCom;
|
|
use think\Db;
|
|
|
|
class UserCp extends BaseCom
|
|
{
|
|
|
|
//Cp 空间
|
|
public function cpZone()
|
|
{
|
|
$reslut = model('UserCp')->cpZone($this->uid);
|
|
return V($reslut['code'], $reslut['msg'], $reslut['data']);
|
|
}
|
|
|
|
} |