作者 郭盛
1 个管道 的构建 通过 耗费 4 秒

修改注释

... ... @@ -20,6 +20,6 @@ return [
'Paytime' => '支付时间',
'Expirationtime' => '到期时间',
'User.nickname' => '用户昵称',
'Teacher.name' => '真实姓名',
'Teacher.name' => '老师真实姓名',
'Teacher.thumbnail' => '头像'
];
... ...
... ... @@ -312,4 +312,23 @@ class Common extends Api
return $data ;
}
public function create()
{
$url = 'http://api-cn.ronghub.com/chatroom/create.json';
$id = 1;
$name = "聊天室";
$postData = 'id='.$id.'&name='.$name;
$row = json_decode($this->request_post_push($url, $postData),true);
print_r($row);die;
}
public function select()
{
$url = 'http://api-cn.ronghub.com/chatroom/query.json';
$id = 1;
$postData = 'chatroomId='.$id;
$row = json_decode($this->request_post_push($url, $postData),true);
print_r($row);die;
}
}
... ...
... ... @@ -100,29 +100,29 @@ class Teacher extends Api
* @ApiHeaders (name=token, type=string, required=true, description="请求的Token")
*
* @ApiReturn({
"code": 1,
"msg": "成功",
"time": "1571492001",
"data": {
"id"://老师ID
"name"://真实姓名
"sex"://性别(1男2女)
"birth"://出生日期
"idcard"://身份证号
"before"://身份证正面照
"behind"://身份证反面照
"phone"://手机号
"thumbnail"://大头照
"address"://常住地
"honor"://头衔
"content"://个人履历
"show"://展示在最前
"desc"://个人简历
"online"://在线时段
"status"://状态(0待审核1审核通过2未通过)
"territory_id"://擅长领域ID
}
})
"code": 1,
"msg": "成功",
"time": "1571492001",
"data": {
"id"://老师ID
"name"://真实姓名
"sex"://性别(1男2女
"birth"://出生日期
"idcard"://身份证号
"before"://身份证正面照
"behind"://身份证反面照
"phone"://手机号
"thumbnail"://大头照
"address"://常住地
"honor"://头衔
"content"://个人履历
"show"://展示在最前
"desc"://个人简历
"online"://在线时段
"status"://状态(0待审核1审核通过2未通过
"territory_id"://擅长领域ID
}
})
*/
public function tea_detail()
{
... ...
此 diff 太大无法显示。
... ... @@ -38,7 +38,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
{field: 'honor', title: __('Honor'), operate:false},
{field: 'online', title: __('Online'), operate:false},
{field: 'status', title: __('Status'),formatter: Table.api.formatter.status,searchList:{'0':'待审核','1': '审核通过','2':'审核未通过'}},
{field: 'is_recommend', title: __('Is_recommend'),formatter: Table.api.formatter.label,searchList:{'0': '不推荐','1':'推荐'}},
{field: 'is_recommend', title: __('Is_recommend'),formatter: Table.api.formatter.toggle,yes:'1',no:'0',searchList:{'0': '不推荐','1':'推荐'}},
{field: 'territory_id', title: __('Territory_id'), operate:false},
// {field: 'help_num', title: __('Help_num'), operate:false},
// {field: 'level', title: __('Level'), operate:false},
... ...