作者 董瑞恩
1 个管道 的构建 通过 耗费 0 秒

interface

... ... @@ -123,7 +123,7 @@ class UsersController extends HomeBaseController{
* @url /portal/users/directions
* @method GET
* @return directions:计费规则
* @return directions:使用须知
*/
public function directions(){
$data=Db::name('set_up')->field('directions')->where('id',1)->find();
... ... @@ -132,6 +132,20 @@ class UsersController extends HomeBaseController{
}
/**
* @title 获取客服电话
* @description 获取客服电话
* @author 董瑞恩
* @url /portal/users/service_phone
* @method GET
* @return service_phone:客服电话
*/
public function service_phone(){
$data=Db::name('set_up')->field('service_phone')->where('id',1)->find();
$this->apiResponse(200,'success',$data);
}
/**
* @title 用户查询订单列表
* @description 用户查询订单列表
* @author 董瑞恩
... ...