Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
aa246b19
Commit
aa246b19
authored
May 23, 2018
by
clone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
3d1e3239
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
329 additions
and
329 deletions
+329
-329
HomePageLog.php
application/api_broker/controller/HomePageLog.php
+6
-2
Basic.php
application/api_broker/extend/Basic.php
+1
-1
route.php
application/route.php
+322
-326
No files found.
application/api_broker/controller/HomePageLog.php
View file @
aa246b19
...
@@ -59,7 +59,9 @@ class HomePageLog extends Basic
...
@@ -59,7 +59,9 @@ class HomePageLog extends Basic
$where_
[
"f.content"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
'search_content'
])
.
"%"
);
$where_
[
"f.content"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
'search_content'
])
.
"%"
);
}
}
if
(
!
empty
(
$params
[
"start_time"
])
&&
!
empty
(
$params
[
"end_time"
]))
{
if
(
!
empty
(
$params
[
"start_time"
])
&&
!
empty
(
$params
[
"end_time"
]))
{
$where_
[
"f.create_time"
]
=
array
(
'between'
,
array
(
$params
[
"start_time"
],
$params
[
"end_time"
]
)
);
$start_time
=
date
(
"Y-m-d H:i:s"
,
$params
[
"start_time"
]);
$end_time
=
date
(
"Y-m-d H:i:s"
,
$params
[
"end_time"
]);
$where_
[
"f.create_time"
]
=
array
(
'between'
,
array
(
$start_time
,
$end_time
)
);
}
}
if
(
!
empty
(
$params
[
"name_or_phone"
]))
{
if
(
!
empty
(
$params
[
"name_or_phone"
]))
{
$where_
[
"u.user_phone|u.user_name"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
"name_or_phone"
])
.
"%"
);
$where_
[
"u.user_phone|u.user_name"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
"name_or_phone"
])
.
"%"
);
...
@@ -116,7 +118,9 @@ class HomePageLog extends Basic
...
@@ -116,7 +118,9 @@ class HomePageLog extends Basic
$where_
[
"f.follow_up_info"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
'search_content'
])
.
"%"
);
$where_
[
"f.follow_up_info"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
'search_content'
])
.
"%"
);
}
}
if
(
!
empty
(
$params
[
"start_time"
])
&&
!
empty
(
$params
[
"end_time"
]))
{
if
(
!
empty
(
$params
[
"start_time"
])
&&
!
empty
(
$params
[
"end_time"
]))
{
$where_
[
"f.create_time"
]
=
array
(
'between'
,
array
(
$params
[
"start_time"
],
$params
[
"end_time"
]
)
);
$start_time
=
date
(
"Y-m-d H:i:s"
,
$params
[
"start_time"
]);
$end_time
=
date
(
"Y-m-d H:i:s"
,
$params
[
"end_time"
]);
$where_
[
"f.create_time"
]
=
array
(
'between'
,
array
(
$start_time
,
$end_time
)
);
}
}
if
(
!
empty
(
$params
[
"name_or_phone"
]))
{
if
(
!
empty
(
$params
[
"name_or_phone"
]))
{
$where_
[
"a.phone|a.name"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
"name_or_phone"
])
.
"%"
);
$where_
[
"a.phone|a.name"
]
=
array
(
"like"
,
"%"
.
trim
(
$params
[
"name_or_phone"
])
.
"%"
);
...
...
application/api_broker/extend/Basic.php
View file @
aa246b19
...
@@ -96,7 +96,7 @@ class Basic extends Controller
...
@@ -96,7 +96,7 @@ class Basic extends Controller
$requestPath
=
$this
->
request
->
routeInfo
()[
"rule"
][
0
]
.
"/"
.
$this
->
request
->
routeInfo
()[
"rule"
][
1
];
$requestPath
=
$this
->
request
->
routeInfo
()[
"rule"
][
0
]
.
"/"
.
$this
->
request
->
routeInfo
()[
"rule"
][
1
];
//过滤掉不需要验证token的接口
//过滤掉不需要验证token的接口
if
(
!
in_array
(
trim
(
$requestPath
),
$this
->
filterVerify
))
{
if
(
!
in_array
(
trim
(
$requestPath
),
$this
->
filterVerify
))
{
$this
->
tokenVerify
();
//
$this->tokenVerify();
// $this->userAuth(trim($requestPath));
// $this->userAuth(trim($requestPath));
}
}
unset
(
$this
->
params
[
"AuthToken"
]);
unset
(
$this
->
params
[
"AuthToken"
]);
...
...
application/route.php
View file @
aa246b19
...
@@ -10,284 +10,282 @@
...
@@ -10,284 +10,282 @@
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
use
think\Route
;
use
think\Route
;
Route
::
rule
(
'/'
,
'index/login/login'
);
Route
::
rule
(
'/'
,
'index/login/login'
);
Route
::
group
(
'app'
,
[
Route
::
group
(
'app'
,
[
'index'
=>
[
'app/index/index'
,
[
'method'
=>
'get'
]
],
'index'
=>
[
'app/index/index'
,
[
'method'
=>
'get'
]
],
'agent_detail'
=>
[
'app/index/agent_detail'
,
[
'method'
=>
'get'
]
],
'agent_detail'
=>
[
'app/index/agent_detail'
,
[
'method'
=>
'get'
]
],
'more_pingjia'
=>
[
'app/index/more_pingjia'
,
[
'method'
=>
'get'
]
],
'more_pingjia'
=>
[
'app/index/more_pingjia'
,
[
'method'
=>
'get'
]
],
'more_chengjiao'
=>
[
'app/index/more_chengjiao'
,
[
'method'
=>
'get'
]
],
'more_chengjiao'
=>
[
'app/index/more_chengjiao'
,
[
'method'
=>
'get'
]
],
'share_detail'
=>
[
'app/index/share_detail'
,
[
'method'
=>
'get'
]
],
'share_detail'
=>
[
'app/index/share_detail'
,
[
'method'
=>
'get'
]
],
'share_register'
=>
[
'app/index/share_register'
,
[
'method'
=>
'get'
]
],
'share_register'
=>
[
'app/index/share_register'
,
[
'method'
=>
'get'
]
],
'agreement'
=>
[
'app/index/agreement'
,
[
'method'
=>
'get'
]
],
'agreement'
=>
[
'app/index/agreement'
,
[
'method'
=>
'get'
]
],
'agreement_app'
=>
[
'app/index/agreement_app'
,
[
'method'
=>
'get'
]
],
'agreement_app'
=>
[
'app/index/agreement_app'
,
[
'method'
=>
'get'
]
],
'download'
=>
[
'app/index/download'
,
[
'method'
=>
'get'
]
],
'download'
=>
[
'app/index/download'
,
[
'method'
=>
'get'
]
],
'getShopDetails'
=>
[
'app/index/getShopDetail'
,
[
'method'
=>
'get | post'
]
],
'getShopDetails'
=>
[
'app/index/getShopDetail'
,
[
'method'
=>
'get | post'
]
],
'getVersionNo'
=>
[
'app/index/getVersionNo'
,
[
'method'
=>
'get | post'
]
],
'getVersionNo'
=>
[
'app/index/getVersionNo'
,
[
'method'
=>
'get | post'
]
],
'feed'
=>
[
'app/index/feed'
,
[
'method'
=>
'get'
]
]
'feed'
=>
[
'app/index/feed'
,
[
'method'
=>
'get'
]
]
]);
]);
Route
::
group
(
'app_broker'
,[
Route
::
group
(
'app_broker'
,
[
'index'
=>
[
'app_broker/index/index'
,
[
'method'
=>
'get'
]
],
'index'
=>
[
'app_broker/index/index'
,
[
'method'
=>
'get'
]
],
'achieve_fork'
=>
[
'app_broker/index/achieve_fork'
,
[
'method'
=>
'get'
]
],
'achieve_fork'
=>
[
'app_broker/index/achieve_fork'
,
[
'method'
=>
'get'
]
],
'achieve_ywy'
=>
[
'app_broker/index/achieve_ywy'
,
[
'method'
=>
'get'
]
],
'achieve_ywy'
=>
[
'app_broker/index/achieve_ywy'
,
[
'method'
=>
'get'
]
],
'achieve_region'
=>
[
'app_broker/index/achieve_region'
,
[
'method'
=>
'get'
]
],
'achieve_region'
=>
[
'app_broker/index/achieve_region'
,
[
'method'
=>
'get'
]
],
'cs_0328'
=>
[
'app_broker/index/cs_0328'
,
[
'method'
=>
'get'
]
],
'cs_0328'
=>
[
'app_broker/index/cs_0328'
,
[
'method'
=>
'get'
]
],
'weekly'
=>
[
'app_broker/index/weekly'
,
[
'method'
=>
'get'
]
],
'weekly'
=>
[
'app_broker/index/weekly'
,
[
'method'
=>
'get'
]
],
'weekly_my'
=>
[
'app_broker/index/weekly_my'
,
[
'method'
=>
'get'
]
],
'weekly_my'
=>
[
'app_broker/index/weekly_my'
,
[
'method'
=>
'get'
]
],
'weekly_achieve_dz'
=>
[
'app_broker/index/weekly_achieve_dz'
,
[
'method'
=>
'get'
]
],
'weekly_achieve_dz'
=>
[
'app_broker/index/weekly_achieve_dz'
,
[
'method'
=>
'get'
]
],
'weekly_achieve_mdzj'
=>
[
'app_broker/index/weekly_achieve_mdzj'
,
[
'method'
=>
'get'
]
],
'weekly_achieve_mdzj'
=>
[
'app_broker/index/weekly_achieve_mdzj'
,
[
'method'
=>
'get'
]
],
'weekly_image'
=>
[
'app_broker/index/weekly_image'
,
[
'method'
=>
'get'
]
],
'weekly_image'
=>
[
'app_broker/index/weekly_image'
,
[
'method'
=>
'get'
]
],
'daily'
=>
[
'app_broker/index/daily'
,
[
'method'
=>
'get'
]
],
'daily'
=>
[
'app_broker/index/daily'
,
[
'method'
=>
'get'
]
],
'daily_my'
=>
[
'app_broker/index/daily_my'
,
[
'method'
=>
'get'
]
],
'daily_my'
=>
[
'app_broker/index/daily_my'
,
[
'method'
=>
'get'
]
],
'daily_achieve_dz'
=>
[
'app_broker/index/daily_achieve_dz'
,
[
'method'
=>
'get'
]
],
'daily_achieve_dz'
=>
[
'app_broker/index/daily_achieve_dz'
,
[
'method'
=>
'get'
]
],
'daily_achieve_mdzj'
=>
[
'app_broker/index/daily_achieve_mdzj'
,
[
'method'
=>
'get'
]
],
'daily_achieve_mdzj'
=>
[
'app_broker/index/daily_achieve_mdzj'
,
[
'method'
=>
'get'
]
],
'daily_achieve_ywy'
=>
[
'app_broker/index/daily_achieve_ywy'
,
[
'method'
=>
'get'
]
],
'daily_achieve_ywy'
=>
[
'app_broker/index/daily_achieve_ywy'
,
[
'method'
=>
'get'
]
],
'customerinfo_genjin'
=>
[
'app_broker/index/customerinfo_genjin'
,
[
'method'
=>
'get'
]
],
'customerinfo_genjin'
=>
[
'app_broker/index/customerinfo_genjin'
,
[
'method'
=>
'get'
]
],
'timeline_pc'
=>
[
'app_broker/index/timeline_pc'
,
[
'method'
=>
'get'
]
],
'timeline_pc'
=>
[
'app_broker/index/timeline_pc'
,
[
'method'
=>
'get'
]
],
'customerinfo_customer_add'
=>
[
'app_broker/index/customerinfo_customer_add'
,
[
'method'
=>
'get'
]
],
'customerinfo_customer_add'
=>
[
'app_broker/index/customerinfo_customer_add'
,
[
'method'
=>
'get'
]
],
'customerinfo_details_new'
=>
[
'app_broker/index/customerinfo_details_new'
,
[
'method'
=>
'get'
]
],
'customerinfo_details_new'
=>
[
'app_broker/index/customerinfo_details_new'
,
[
'method'
=>
'get'
]
],
'xiazai'
=>
[
'app_broker/index/xiazai'
,
[
'method'
=>
'get'
]
],
'xiazai'
=>
[
'app_broker/index/xiazai'
,
[
'method'
=>
'get'
]
],
]);
]);
Route
::
group
(
'index'
,
[
Route
::
group
(
'index'
,
[
'member'
=>
[
'index/member.index/member'
,
[
'method'
=>
'get'
]
],
'member'
=>
[
'index/member.index/member'
,
[
'method'
=>
'get'
]
],
'preview_list'
=>
[
'index/member.index/preview_list'
,
[
'method'
=>
'get'
]
],
'preview_list'
=>
[
'index/member.index/preview_list'
,
[
'method'
=>
'get'
]
],
'consumer_list'
=>
[
'index/member.index/consumer_list'
,
[
'method'
=>
'get'
]
],
'consumer_list'
=>
[
'index/member.index/consumer_list'
,
[
'method'
=>
'get'
]
],
'diagram_list'
=>
[
'index/member.index/diagram_list'
,
[
'method'
=>
'get'
]
],
'diagram_list'
=>
[
'index/member.index/diagram_list'
,
[
'method'
=>
'get'
]
],
'entrust_list'
=>
[
'index/member.index/entrust_list'
,
[
'method'
=>
'get'
]
],
'entrust_list'
=>
[
'index/member.index/entrust_list'
,
[
'method'
=>
'get'
]
],
'redis_index'
=>
[
'api/RedisController/index'
,
[
'method'
=>
'get'
]
],
//redis测试
'redis_index'
=>
[
'api/RedisController/index'
,
[
'method'
=>
'get'
]
],
//redis测试
//banner模块
//banner模块
'banner'
=>
[
'index/banner/index'
,
[
'method'
=>
'get'
]
],
'banner'
=>
[
'index/banner/index'
,
[
'method'
=>
'get'
]
],
'advertising'
=>
[
'index/banner/advertising'
,
[
'method'
=>
'get'
]
],
'advertising'
=>
[
'index/banner/advertising'
,
[
'method'
=>
'get'
]
],
'bannerList'
=>
[
'index/banner/getBannerList'
,
[
'method'
=>
'post'
]
],
'bannerList'
=>
[
'index/banner/getBannerList'
,
[
'method'
=>
'post'
]
],
'getPopList'
=>
[
'index/banner/getPopList'
,
[
'method'
=>
'post'
]
],
'getPopList'
=>
[
'index/banner/getPopList'
,
[
'method'
=>
'post'
]
],
'addOrSave'
=>
[
'index/banner/addOrSave'
,
[
'method'
=>
'post'
]
],
'addOrSave'
=>
[
'index/banner/addOrSave'
,
[
'method'
=>
'post'
]
],
'upIsShow'
=>
[
'index/banner/upIsShow'
,
[
'method'
=>
'post'
]
],
'upIsShow'
=>
[
'index/banner/upIsShow'
,
[
'method'
=>
'post'
]
],
//user列表
//user列表
'users_list'
=>
[
'index/member/getUserList'
,[
'method'
=>
'get'
]
],
'users_list'
=>
[
'index/member/getUserList'
,
[
'method'
=>
'get'
]
],
'user_add'
=>
[
'index/member/user_add'
,[
'method'
=>
'post'
]
],
'user_add'
=>
[
'index/member/user_add'
,
[
'method'
=>
'post'
]
],
'del_user'
=>
[
'index/member/delUser'
,[
'method'
=>
'post'
]
],
'del_user'
=>
[
'index/member/delUser'
,
[
'method'
=>
'post'
]
],
'pcAddFollow'
=>
[
'index/member/pcAddFollow'
,[
'method'
=>
'post'
]
],
'pcAddFollow'
=>
[
'index/member/pcAddFollow'
,
[
'method'
=>
'post'
]
],
'pcEditClient'
=>
[
'index/member/pcEditClient'
,[
'method'
=>
'post | get'
]
],
'pcEditClient'
=>
[
'index/member/pcEditClient'
,
[
'method'
=>
'post | get'
]
],
'batchEditCustomer'
=>
[
'index/member/batchEditCustomer'
,[
'method'
=>
'post'
]
],
//批量修改客方
'batchEditCustomer'
=>
[
'index/member/batchEditCustomer'
,
[
'method'
=>
'post'
]
],
//批量修改客方
//transfer转铺列表
//transfer转铺列表
'transfer_list'
=>
[
'index/transfer/index'
,
[
'method'
=>
'get'
]
],
'transfer_list'
=>
[
'index/transfer/index'
,
[
'method'
=>
'get'
]
],
'get_transfer'
=>
[
'index/transfer/getlist'
,
[
'method'
=>
'get'
]
],
'get_transfer'
=>
[
'index/transfer/getlist'
,
[
'method'
=>
'get'
]
],
'putAway'
=>
[
'index/transfer/putAway'
,
[
'method'
=>
'post'
]
],
//上下架转租商铺
'putAway'
=>
[
'index/transfer/putAway'
,
[
'method'
=>
'post'
]
],
//上下架转租商铺
'addFollow'
=>
[
'index/transfer/addFollow'
,[
'method'
=>
'post'
]
],
//添加跟进
'addFollow'
=>
[
'index/transfer/addFollow'
,
[
'method'
=>
'post'
]
],
//添加跟进
'followList'
=>
[
'index/transfer/followList'
,[
'method'
=>
'get'
]
],
//跟进记录
'followList'
=>
[
'index/transfer/followList'
,
[
'method'
=>
'get'
]
],
//跟进记录
//login
//login
'login'
=>
[
'index/login/login'
,[
'method'
=>
'get'
]
],
'login'
=>
[
'index/login/login'
,
[
'method'
=>
'get'
]
],
'loginVerify'
=>
[
'index/login/loginVerify'
,[
'method'
=>
'post|get'
]
],
'loginVerify'
=>
[
'index/login/loginVerify'
,
[
'method'
=>
'post|get'
]
],
'logout'
=>
[
'index/login/logout'
,[
'method'
=>
'get'
]
],
//退出
'logout'
=>
[
'index/login/logout'
,
[
'method'
=>
'get'
]
],
//退出
//watchshop 预约看铺
//watchshop 预约看铺
'watch_shop'
=>
[
'index/WatchShop/index'
,[
'method'
=>
'get'
]
],
'watch_shop'
=>
[
'index/WatchShop/index'
,
[
'method'
=>
'get'
]
],
'get_watch'
=>
[
'index/WatchShop/getList'
,[
'method'
=>
'get'
]
],
'get_watch'
=>
[
'index/WatchShop/getList'
,
[
'method'
=>
'get'
]
],
'add_applies'
=>
[
'index/WatchShop/addApplies'
,[
'method'
=>
'post'
]
],
'add_applies'
=>
[
'index/WatchShop/addApplies'
,
[
'method'
=>
'post'
]
],
//查询经纪人
//查询经纪人
'getBroker'
=>
[
'index/broker/getBroker'
,[
'method'
=>
'get'
]
],
'getBroker'
=>
[
'index/broker/getBroker'
,
[
'method'
=>
'get'
]
],
'getBroker_new'
=>
[
'index/broker/getBroker_new'
,[
'method'
=>
'get'
]
],
'getBroker_new'
=>
[
'index/broker/getBroker_new'
,
[
'method'
=>
'get'
]
],
'getBrokerList'
=>
[
'index/broker/getBrokerList'
,[
'method'
=>
'get'
]
],
//门店列表的经纪人
'getBrokerList'
=>
[
'index/broker/getBrokerList'
,
[
'method'
=>
'get'
]
],
//门店列表的经纪人
'addHousesAgents'
=>
[
'index/broker/AddHousesAgents'
,
[
'method'
=>
'POST'
]
],
//新增楼盘与经纪人关系(案场权限人)
'addHousesAgents'
=>
[
'index/broker/AddHousesAgents'
,
[
'method'
=>
'POST'
]
],
//新增楼盘与经纪人关系(案场权限人)
'addHousesAgentsDish'
=>
[
'index/broker/AddHousesAgents'
,
[
'method'
=>
'POST'
]
],
//新增楼盘与经纪人关系(盘方)
'addHousesAgentsDish'
=>
[
'index/broker/AddHousesAgents'
,
[
'method'
=>
'POST'
]
],
//新增楼盘与经纪人关系(盘方)
'delTohouses'
=>
[
'index/broker/delTohouses'
,
[
'method'
=>
'POST'
]
],
//解除经纪人和楼盘关系
'delTohouses'
=>
[
'index/broker/delTohouses'
,
[
'method'
=>
'POST'
]
],
//解除经纪人和楼盘关系
'getAgentsTohouses'
=>
[
'index/broker/getAgentsTohouses'
,
[
'method'
=>
'GET'
]
],
//获取经纪人和楼盘关系信息
'getAgentsTohouses'
=>
[
'index/broker/getAgentsTohouses'
,
[
'method'
=>
'GET'
]
],
//获取经纪人和楼盘关系信息
'getAgentDistrictStore'
=>
[
'index/broker/getAgentDistrictStore'
,
[
'method'
=>
'GET'
]
],
//获取经纪人id获取部门门店名称
'getAgentDistrictStore'
=>
[
'index/broker/getAgentDistrictStore'
,
[
'method'
=>
'GET'
]
],
//获取经纪人id获取部门门店名称
'batchChangDish'
=>
[
'index/houses/batchChangDish'
,
[
'method'
=>
'post'
]
],
//批量修改盘方
'batchChangDish'
=>
[
'index/houses/batchChangDish'
,
[
'method'
=>
'post'
]
],
//批量修改盘方
//版本管理
//版本管理
'version'
=>
[
'index/version/index'
,[
'method'
=>
'get'
]
],
'version'
=>
[
'index/version/index'
,
[
'method'
=>
'get'
]
],
'getVersionNo'
=>
[
'index/version/getVersionNo'
,[
'method'
=>
'post'
]
],
'getVersionNo'
=>
[
'index/version/getVersionNo'
,
[
'method'
=>
'post'
]
],
'getVersionList'
=>
[
'index/version/getVersionList'
,[
'method'
=>
'post'
]
],
'getVersionList'
=>
[
'index/version/getVersionList'
,
[
'method'
=>
'post'
]
],
'addVersion'
=>
[
'index/version/addVersion'
,[
'method'
=>
'post'
]
],
'addVersion'
=>
[
'index/version/addVersion'
,
[
'method'
=>
'post'
]
],
//权限管理
//权限管理
'classList'
=>
[
'index/auth/classList'
,[
'method'
=>
'get'
]
],
//分类列表
'classList'
=>
[
'index/auth/classList'
,
[
'method'
=>
'get'
]
],
//分类列表
'Auth'
=>
[
'index/auth/index'
,
[
'method'
=>
'get'
]
],
//角色列表界面
'Auth'
=>
[
'index/auth/index'
,
[
'method'
=>
'get'
]
],
//角色列表界面
'getAuth'
=>
[
'index/auth/getAuth'
,
[
'method'
=>
'get'
]
],
//角色列表接口
'getAuth'
=>
[
'index/auth/getAuth'
,
[
'method'
=>
'get'
]
],
//角色列表接口
'getAuth2'
=>
[
'index/auth/getAuth2'
,
[
'method'
=>
'get'
]
],
//角色列表2无分页接口
'getAuth2'
=>
[
'index/auth/getAuth2'
,
[
'method'
=>
'get'
]
],
//角色列表2无分页接口
'roleedit'
=>
[
'index/auth/roleEdit'
,
[
'method'
=>
'get'
]
],
//--编辑角色页面
'roleedit'
=>
[
'index/auth/roleEdit'
,
[
'method'
=>
'get'
]
],
//--编辑角色页面
'access'
=>
[
'index/auth/access'
,
[
'method'
=>
'get'
]
],
//--权限分配角色页面
'access'
=>
[
'index/auth/access'
,
[
'method'
=>
'get'
]
],
//--权限分配角色页面
'updateAccess'
=>
[
'index/auth/updateAccess'
,
[
'method'
=>
'post'
]
],
//--编辑角色权限【接口】
'updateAccess'
=>
[
'index/auth/updateAccess'
,
[
'method'
=>
'post'
]
],
//--编辑角色权限【接口】
'addAuth'
=>
[
'index/auth/addAuth'
,
[
'method'
=>
'get|post'
]
],
//--添加角色【接口】
'addAuth'
=>
[
'index/auth/addAuth'
,
[
'method'
=>
'get|post'
]
],
//--添加角色【接口】
'accessLook'
=>
[
'index/auth/accessLook'
,
[
'method'
=>
'get|post'
]
],
//--查看编辑角色权限【接口】
'accessLook'
=>
[
'index/auth/accessLook'
,
[
'method'
=>
'get|post'
]
],
//--查看编辑角色权限【接口】
'updateGroup'
=>
[
'index/auth/updateGroup'
,
[
'method'
=>
'post'
]
],
//--设置角色的状态【接口】
'updateGroup'
=>
[
'index/auth/updateGroup'
,
[
'method'
=>
'post'
]
],
//--设置角色的状态【接口】
'accessUser'
=>
[
'index/auth/accessUser'
,
[
'method'
=>
'get'
]
],
//成员授权
'accessUser'
=>
[
'index/auth/accessUser'
,
[
'method'
=>
'get'
]
],
//成员授权
'authRuleIndex'
=>
[
'index/auth/authRuleIndex'
,
[
'method'
=>
'get'
]
],
//权限列表界面
'authRuleIndex'
=>
[
'index/auth/authRuleIndex'
,
[
'method'
=>
'get'
]
],
//权限列表界面
'authRuleList'
=>
[
'index/auth/authRuleList'
,
[
'method'
=>
'get'
]
],
//--规则列表
'authRuleList'
=>
[
'index/auth/authRuleList'
,
[
'method'
=>
'get'
]
],
//--规则列表
'authRuleBox'
=>
[
'index/auth/authRuleBox'
,
[
'method'
=>
'get'
]
],
//--编辑规则
'authRuleBox'
=>
[
'index/auth/authRuleBox'
,
[
'method'
=>
'get'
]
],
//--编辑规则
'updateAuthRule'
=>
[
'index/auth/updateAuthRule'
,
[
'method'
=>
'get|post'
]
],
//--编辑规则接口
'updateAuthRule'
=>
[
'index/auth/updateAuthRule'
,
[
'method'
=>
'get|post'
]
],
//--编辑规则接口
'authClass'
=>
[
'index/auth/authClass'
,
[
'method'
=>
'get'
]
],
//--规则分类列表
'authClass'
=>
[
'index/auth/authClass'
,
[
'method'
=>
'get'
]
],
//--规则分类列表
'navigation'
=>
[
'index/Basic/navigation'
,
[
'method'
=>
'get'
]
],
//--规则分类列表
'navigation'
=>
[
'index/Basic/navigation'
,
[
'method'
=>
'get'
]
],
//--规则分类列表
'updateRoleStatus'
=>
[
'index/auth/updateRoleStatus'
,
[
'method'
=>
'post'
]
],
//--规则编辑【接口】
'updateRoleStatus'
=>
[
'index/auth/updateRoleStatus'
,
[
'method'
=>
'post'
]
],
//--规则编辑【接口】
'agent'
=>
[
'index/agent/agent'
,
[
'method'
=>
'get'
]
],
//首页列表界面
'agent'
=>
[
'index/agent/agent'
,
[
'method'
=>
'get'
]
],
//首页列表界面
'saveAgentIndex'
=>
[
'index/agent/saveAgentIndex'
,
[
'method'
=>
'get'
]
],
//编辑列表列表界面
'saveAgentIndex'
=>
[
'index/agent/saveAgentIndex'
,
[
'method'
=>
'get'
]
],
//编辑列表列表界面
'AgentList'
=>
[
'index/agent/AgentList'
,
[
'method'
=>
'get'
]
],
//首页列表【接口】
'AgentList'
=>
[
'index/agent/AgentList'
,
[
'method'
=>
'get'
]
],
//首页列表【接口】
'saveAgent'
=>
[
'index/agent/saveAgent'
,
[
'method'
=>
'get|post'
]
],
//修改经纪人【接口】
'saveAgent'
=>
[
'index/agent/saveAgent'
,
[
'method'
=>
'get|post'
]
],
//修改经纪人【接口】
'updateStatus'
=>
[
'index/agent/updateStatus'
,
[
'method'
=>
'post'
]
],
//状态修改【接口】
'updateStatus'
=>
[
'index/agent/updateStatus'
,
[
'method'
=>
'post'
]
],
//状态修改【接口】
'updateRole'
=>
[
'index/agent/updateRole'
,
[
'method'
=>
'post'
]
],
//经纪人角色修改【接口】
'updateRole'
=>
[
'index/agent/updateRole'
,
[
'method'
=>
'post'
]
],
//经纪人角色修改【接口】
//客户标签
//客户标签
'getULabelsList'
=>
[
'index/label/getULabelsList'
,[
'method'
=>
'get'
]
],
//客户标签列表接口/界面
'getULabelsList'
=>
[
'index/label/getULabelsList'
,
[
'method'
=>
'get'
]
],
//客户标签列表接口/界面
'updateULabel'
=>
[
'index/label/updateULabel'
,[
'method'
=>
'post|get'
]
],
//编辑添加客户标签
'updateULabel'
=>
[
'index/label/updateULabel'
,
[
'method'
=>
'post|get'
]
],
//编辑添加客户标签
'getUserLabel'
=>
[
'index/label/getUserLabel'
,[
'method'
=>
'get'
]
],
//获取客户状态
'getUserLabel'
=>
[
'index/label/getUserLabel'
,
[
'method'
=>
'get'
]
],
//获取客户状态
//商圈
//商圈
'editBusinessDistrict'
=>
[
'index/BusinessDistrict/edit'
,
[
'method'
=>
'get | post'
]
],
//编辑商圈
'editBusinessDistrict'
=>
[
'index/BusinessDistrict/edit'
,
[
'method'
=>
'get | post'
]
],
//编辑商圈
'delBusinessDistrict'
=>
[
'index/BusinessDistrict/del'
,
[
'method'
=>
'post'
]
],
//删除商圈列表
'delBusinessDistrict'
=>
[
'index/BusinessDistrict/del'
,
[
'method'
=>
'post'
]
],
//删除商圈列表
//商铺
//商铺
'BusinessList'
=>
[
'index/BusinessDistrict/getBusiness'
,
[
'method'
=>
'get'
]
],
//获取商铺列表数据
'BusinessList'
=>
[
'index/BusinessDistrict/getBusiness'
,
[
'method'
=>
'get'
]
],
//获取商铺列表数据
'houseEdit'
=>
[
'index/Houses/edit'
,
[
'method'
=>
'get|post'
]
],
//编辑商铺
'houseEdit'
=>
[
'index/Houses/edit'
,
[
'method'
=>
'get|post'
]
],
//编辑商铺
'houseAdd'
=>
[
'index/Houses/edit'
,
[
'method'
=>
'get'
]
],
//新增商铺
'houseAdd'
=>
[
'index/Houses/edit'
,
[
'method'
=>
'get'
]
],
//新增商铺
'houseDel'
=>
[
'index/Houses/del'
,
[
'method'
=>
'post'
]
],
//删除商铺
'houseDel'
=>
[
'index/Houses/del'
,
[
'method'
=>
'post'
]
],
//删除商铺
'regions'
=>
[
'index/BusinessDistrict/regions'
,
[
'method'
=>
'get'
]
],
//获取省市区数据
'regions'
=>
[
'index/BusinessDistrict/regions'
,
[
'method'
=>
'get'
]
],
//获取省市区数据
'getCity'
=>
[
'index/BusinessDistrict/getCity'
,
[
'method'
=>
'get'
]
],
//获取所有的城市
'getCity'
=>
[
'index/BusinessDistrict/getCity'
,
[
'method'
=>
'get'
]
],
//获取所有的城市
'getHouseList'
=>
[
'index/houses/getHouseList'
,
[
'method'
=>
'get'
]
],
//楼盘列表
'getHouseList'
=>
[
'index/houses/getHouseList'
,
[
'method'
=>
'get'
]
],
//楼盘列表
'carefullyChosen'
=>
[
'index/houses/carefullyChosen'
,
[
'method'
=>
'post'
]
],
//设置精选楼盘
'carefullyChosen'
=>
[
'index/houses/carefullyChosen'
,
[
'method'
=>
'post'
]
],
//设置精选楼盘
'editExclusive'
=>
[
'index/houses/editExclusive'
,
[
'method'
=>
'post'
]
],
//添加和编辑楼盘独家
'editExclusive'
=>
[
'index/houses/editExclusive'
,
[
'method'
=>
'post'
]
],
//添加和编辑楼盘独家
'getExclusive'
=>
[
'index/houses/getExclusive'
,
[
'method'
=>
'get'
]
],
//获取楼盘独家
'getExclusive'
=>
[
'index/houses/getExclusive'
,
[
'method'
=>
'get'
]
],
//获取楼盘独家
'getRecords'
=>
[
'index/houses/getRecords'
,[
'method'
=>
'get'
]
],
//操作记录
'getRecords'
=>
[
'index/houses/getRecords'
,
[
'method'
=>
'get'
]
],
//操作记录
'getDistrictList'
=>
[
'index/district/getDistrictList'
,[
'method'
=>
'get'
]
],
//总监列表
'getDistrictList'
=>
[
'index/district/getDistrictList'
,
[
'method'
=>
'get'
]
],
//总监列表
'adddistrict'
=>
[
'index/district/addDistrict'
,[
'method'
=>
'get|post'
]
],
//添加部门,绑定总监关系
'adddistrict'
=>
[
'index/district/addDistrict'
,
[
'method'
=>
'get|post'
]
],
//添加部门,绑定总监关系
'getDistrictListByName'
=>
[
'index/district/getDistrictListByName'
,[
'method'
=>
'get'
]
],
//查询部门
'getDistrictListByName'
=>
[
'index/district/getDistrictListByName'
,
[
'method'
=>
'get'
]
],
//查询部门
'storeList'
=>
[
'index/Store/index'
,[
'method'
=>
'get'
]
],
//门店列表
'storeList'
=>
[
'index/Store/index'
,
[
'method'
=>
'get'
]
],
//门店列表
'addStore'
=>
[
'index/Store/addStore'
,[
'method'
=>
'get|post'
]
],
//添加门店
'addStore'
=>
[
'index/Store/addStore'
,
[
'method'
=>
'get|post'
]
],
//添加门店
'getStoreById'
=>
[
'index/Store/getStoreById'
,[
'method'
=>
'get'
]
],
//通过id获得门店信息
'getStoreById'
=>
[
'index/Store/getStoreById'
,
[
'method'
=>
'get'
]
],
//通过id获得门店信息
'getDistrictStoreList'
=>
[
'index/Store/getStoreByDistrictId'
,[
'method'
=>
'get'
]
],
//通过部门id获得门店列表
'getDistrictStoreList'
=>
[
'index/Store/getStoreByDistrictId'
,
[
'method'
=>
'get'
]
],
//通过部门id获得门店列表
'labelEdit'
=>
[
'index/label/index'
,[
'method'
=>
'get|post'
]
],
//编辑标签
'labelEdit'
=>
[
'index/label/index'
,
[
'method'
=>
'get|post'
]
],
//编辑标签
'getLabelsList'
=>
[
'index/label/getLabelsList'
,[
'method'
=>
'get'
]
],
//标签列表
'getLabelsList'
=>
[
'index/label/getLabelsList'
,
[
'method'
=>
'get'
]
],
//标签列表
'lable'
=>
[
'index/label/index'
,[
'method'
=>
'get'
]
],
//标签列表
'lable'
=>
[
'index/label/index'
,
[
'method'
=>
'get'
]
],
//标签列表
'getDistrict'
=>
[
'index/District/getList'
,
[
'method'
=>
'get'
]
],
//获取部门列表
'getDistrict'
=>
[
'index/District/getList'
,
[
'method'
=>
'get'
]
],
//获取部门列表
//数据统计
//数据统计
'RemarkFollowList'
=>
[
'index/remark/followUpList'
,[
'method'
=>
'get'
]
],
//跟进列表
'RemarkFollowList'
=>
[
'index/remark/followUpList'
,
[
'method'
=>
'get'
]
],
//跟进列表
'phone_list'
=>
[
'index/Phone/index'
,[
'method'
=>
'get'
]
],
//隐私号码列表
'phone_list'
=>
[
'index/Phone/index'
,
[
'method'
=>
'get'
]
],
//隐私号码列表
'bindPhoneList'
=>
[
'index/Phone/bindPhoneList'
,[
'method'
=>
'get'
]
],
//绑定的隐私号码列表
'bindPhoneList'
=>
[
'index/Phone/bindPhoneList'
,
[
'method'
=>
'get'
]
],
//绑定的隐私号码列表
'edit_aliYunPhone'
=>
[
'index/Phone/edit_aliYunPhone'
,[
'method'
=>
'get|post'
]
],
//新增或编辑中间号
'edit_aliYunPhone'
=>
[
'index/Phone/edit_aliYunPhone'
,
[
'method'
=>
'get|post'
]
],
//新增或编辑中间号
'callLog'
=>
[
'index/CellPhone/callLog'
,
[
'method'
=>
'get'
]
],
//通话记录
'callLog'
=>
[
'index/CellPhone/callLog'
,
[
'method'
=>
'get'
]
],
//通话记录
'callCollectList'
=>
[
'index/CellPhone/callCollectList'
,
[
'method'
=>
'get'
]
],
//经纪人通话汇总
'callCollectList'
=>
[
'index/CellPhone/callCollectList'
,
[
'method'
=>
'get'
]
],
//经纪人通话汇总
'bindAXB'
=>
[
'index/CellPhone/bindAXB'
,
[
'method'
=>
'post'
]
],
//隐私号码
'bindAXB'
=>
[
'index/CellPhone/bindAXB'
,
[
'method'
=>
'post'
]
],
//隐私号码
'agentsUnBind'
=>
[
'index/CellPhone/agentsUnBind'
,
[
'method'
=>
'post'
]
],
//解除绑定关系
'agentsUnBind'
=>
[
'index/CellPhone/agentsUnBind'
,
[
'method'
=>
'post'
]
],
//解除绑定关系
'updateBindAXB'
=>
[
'api_broker/CellPhone/updateBindAXB'
,
[
'method'
=>
'post'
]
],
//更新绑定关系隐私号码
'updateBindAXB'
=>
[
'api_broker/CellPhone/updateBindAXB'
,
[
'method'
=>
'post'
]
],
//更新绑定关系隐私号码
'phoneList'
=>
[
'index/Phone/phoneList'
,
[
'method'
=>
'get'
]
],
//号码池
'phoneList'
=>
[
'index/Phone/phoneList'
,
[
'method'
=>
'get'
]
],
//号码池
'bindPhoneListIndex'
=>
[
'index/Phone/bindPhoneListIndex'
,
[
'method'
=>
'get'
]
],
//号码绑定列表
'bindPhoneListIndex'
=>
[
'index/Phone/bindPhoneListIndex'
,
[
'method'
=>
'get'
]
],
//号码绑定列表
'useraction_search'
=>
[
'index/remark/useraction_search'
,
[
'method'
=>
'get|post'
]
],
//后台客户详情
'useraction_search'
=>
[
'index/remark/useraction_search'
,
[
'method'
=>
'get|post'
]
],
//后台客户详情
'select_by_phone'
=>
[
'index/remark/select_by_phone'
,
[
'method'
=>
'get|post'
]
],
//后台客户详情--客方搜索
'select_by_phone'
=>
[
'index/remark/select_by_phone'
,
[
'method'
=>
'get|post'
]
],
//后台客户详情--客方搜索
'getSetting'
=>
[
'index/Setting/getSetting'
,
[
'method'
=>
'get|post'
]
],
//新增和修改全局参数设置
'getSetting'
=>
[
'index/Setting/getSetting'
,
[
'method'
=>
'get|post'
]
],
//新增和修改全局参数设置
'getMenu'
=>
[
'index/Auth/getMenu'
,
[
'method'
=>
'get|post'
]
],
//新增和修改全局参数设置
'getMenu'
=>
[
'index/Auth/getMenu'
,
[
'method'
=>
'get|post'
]
],
//新增和修改全局参数设置
'reportListOne/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
]
,[
'check_status'
=>
1
]
],
//财务 成交报告-未结单-第一级审核
'reportListOne/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
],
[
'check_status'
=>
1
]
],
//财务 成交报告-未结单-第一级审核
'reportListTwo/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
]
,[
'check_status'
=>
2
]
],
//财务 成交报告-未结单-第二级审核
'reportListTwo/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
],
[
'check_status'
=>
2
]
],
//财务 成交报告-未结单-第二级审核
'reportListThree/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
]
,[
'check_status'
=>
3
]
],
//财务 成交报告-未结单-第三级审核
'reportListThree/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
],
[
'check_status'
=>
3
]
],
//财务 成交报告-未结单-第三级审核
'reportListStatement/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
]
,[
'check_status'
=>
4
]
],
//财务 成交报告-已结单
'reportListStatement/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
],
[
'check_status'
=>
4
]
],
//财务 成交报告-已结单
'reportListBackout/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
]
,[
'check_status'
=>
5
]
],
//财务 成交报告-待撤销
'reportListBackout/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
],
[
'check_status'
=>
5
]
],
//财务 成交报告-待撤销
'reportListUndone/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
]
,[
'check_status'
=>
6
]
],
//财务 成交报告-已撤销
'reportListUndone/:check_status'
=>
[
'index/Finance/reportList'
,
[
'method'
=>
'get'
],
[
'check_status'
=>
6
]
],
//财务 成交报告-已撤销
'refundListAttache/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
0
]
],
//退款列表-专员审核
'refundListAttache/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
0
]
],
//退款列表-专员审核
'refundListManager/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
1
]
],
//退款列表-财务经理
'refundListManager/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
1
]
],
//退款列表-财务经理
'refundListMajordomo/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
2
]
],
//退款列表-总监审核
'refundListMajordomo/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
2
]
],
//退款列表-总监审核
'refundListCashier/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
3
]
],
//退款列表-出纳审核
'refundListCashier/:check_status'
=>
[
'index/Finance/refundList'
,
[
'method'
=>
'get|post'
],
[
'check_status'
=>
3
]
],
//退款列表-出纳审核
'refundOrderList'
=>
[
'index/Finance/refundOrderList'
,
[
'method'
=>
'get'
]
],
//财务 已退款
'refundOrderList'
=>
[
'index/Finance/refundOrderList'
,
[
'method'
=>
'get'
]
],
//财务 已退款
'checkReportAttache/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
0
]
],
//审核成交报告-专员审核
'checkReportAttache/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
0
]
],
//审核成交报告-专员审核
'checkReportManager/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//审核成交报告-经理审核
'checkReportManager/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//审核成交报告-经理审核
'checkReportMajordomo/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//审核成交报告-总监审核
'checkReportMajordomo/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//审核成交报告-总监审核
'checkReportCashier/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
3
]
],
//审核成交报告-出纳审核
'checkReportCashier/:check_status'
=>
[
'index/Finance/checkReport'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
3
]
],
//审核成交报告-出纳审核
'overRuleAttache/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
0
]
],
//退款审核-驳回-专员审核
'overRuleAttache/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
0
]
],
//退款审核-驳回-专员审核
'overRuleManager/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//退款审核-驳回-经理审核
'overRuleManager/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
1
]
],
//退款审核-驳回-经理审核
'overRuleMajordomo/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//退款审核-驳回-总监审核
'overRuleMajordomo/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
2
]
],
//退款审核-驳回-总监审核
'overRuleCashier/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
3
]
],
//退款审核-驳回-出纳审核
'overRuleCashier/:check_status'
=>
[
'index/Finance/overRule'
,
[
'method'
=>
'post'
],
[
'check_status'
=>
3
]
],
//退款审核-驳回-出纳审核
'exportExcel'
=>
[
'index/Finance/exportExcel'
,
[
'method'
=>
'get'
]
],
//导出分佣
'exportExcel'
=>
[
'index/Finance/exportExcel'
,
[
'method'
=>
'get'
]
],
//导出分佣
'bargainInfo'
=>
[
'index/Finance/bargainInfo'
,
[
'method'
=>
'get'
]
],
//获取成交报告详情
'bargainInfo'
=>
[
'index/Finance/bargainInfo'
,
[
'method'
=>
'get'
]
],
//获取成交报告详情
'editBargainInfo'
=>
[
'index/Finance/editBargainInfo'
,
[
'method'
=>
'post'
]
],
//修改成交报告佣金
'editBargainInfo'
=>
[
'index/Finance/editBargainInfo'
,
[
'method'
=>
'post'
]
],
//修改成交报告佣金
'addBargain'
=>
[
'index/Finance/addBargain'
,
[
'method'
=>
'post'
]
],
//新增成交报告佣金(分佣提成)
'addBargain'
=>
[
'index/Finance/addBargain'
,
[
'method'
=>
'post'
]
],
//新增成交报告佣金(分佣提成)
'commissionList'
=>
[
'index/Finance/commissionList'
,
[
'method'
=>
'get'
]
],
//成交报告详情-分佣提成
'commissionList'
=>
[
'index/Finance/commissionList'
,
[
'method'
=>
'get'
]
],
//成交报告详情-分佣提成
'payLogList'
=>
[
'index/Finance/payLogList'
,
[
'method'
=>
'get'
]
],
//收款记录
'payLogList'
=>
[
'index/Finance/payLogList'
,
[
'method'
=>
'get'
]
],
//收款记录
'phone_up_list'
=>
[
'index/remark/phone_up_list'
,
[
'method'
=>
'get|post'
]
],
//电话跟进列表
'phone_up_list'
=>
[
'index/remark/phone_up_list'
,
[
'method'
=>
'get|post'
]
],
//电话跟进列表
'selectReportAll'
=>
[
'index/Finance/selectReportAll'
,
[
'method'
=>
'get|post'
]
],
//时间轴
'selectReportAll'
=>
[
'index/Finance/selectReportAll'
,
[
'method'
=>
'get|post'
]
],
//时间轴
'partialCommissionList'
=>
[
'index/Finance/partialCommissionList'
,
[
'method'
=>
'get'
]
],
//分佣提成明细表
'partialCommissionList'
=>
[
'index/Finance/partialCommissionList'
,
[
'method'
=>
'get'
]
],
//分佣提成明细表
'addRealIncome'
=>
[
'index/Finance/addRealIncome'
,
[
'method'
=>
'POST'
]
],
//增加和编辑实收佣金
'addRealIncome'
=>
[
'index/Finance/addRealIncome'
,
[
'method'
=>
'POST'
]
],
//增加和编辑实收佣金
'getTallAge'
=>
[
'index/Finance/getTallAge'
,
[
'method'
=>
'GET'
]
],
//开票税费查询
'getTallAge'
=>
[
'index/Finance/getTallAge'
,
[
'method'
=>
'GET'
]
],
//开票税费查询
'addTallAge'
=>
[
'index/Finance/addTallAge'
,
[
'method'
=>
'POST'
]
],
//新增和编辑开票税费
'addTallAge'
=>
[
'index/Finance/addTallAge'
,
[
'method'
=>
'POST'
]
],
//新增和编辑开票税费
'searchBargainAgents'
=>
[
'index/Finance/searchBargainAgents'
,
[
'method'
=>
'GET'
]
],
//获取盘方,客方,反签,独家,合作方
'searchBargainAgents'
=>
[
'index/Finance/searchBargainAgents'
,
[
'method'
=>
'GET'
]
],
//获取盘方,客方,反签,独家,合作方
'getTallAgeList'
=>
[
'index/Finance/getTallAgeList'
,
[
'method'
=>
'GET'
]
],
//税费承担明细表
'getTallAgeList'
=>
[
'index/Finance/getTallAgeList'
,
[
'method'
=>
'GET'
]
],
//税费承担明细表
'getCommissionTotalList'
=>
[
'index/Finance/getCommissionTotalList'
,
[
'method'
=>
'GET'
]
],
//分佣提成汇总表
'getCommissionTotalList'
=>
[
'index/Finance/getCommissionTotalList'
,
[
'method'
=>
'GET'
]
],
//分佣提成汇总表
'test123'
=>
[
'index/WatchShop/test123'
,
[
'method'
=>
'get|post'
]
],
//时间轴
'test123'
=>
[
'index/WatchShop/test123'
,
[
'method'
=>
'get|post'
]
],
//时间轴
'agent_zhuan_aagent'
=>
[
'index/agent/agent_zhuan_aagent'
,
[
'method'
=>
'post|get'
]
],
//经纪人
'agent_zhuan_aagent'
=>
[
'index/agent/agent_zhuan_aagent'
,
[
'method'
=>
'post|get'
]
],
//经纪人
'shop_a_store'
=>
[
'index/agent/shop_a_store'
,
[
'method'
=>
'post|get'
]
],
//经纪人
'shop_a_store'
=>
[
'index/agent/shop_a_store'
,
[
'method'
=>
'post|get'
]
],
//经纪人
'getCollection'
=>
[
'index/Collection/getCollection'
,
[
'method'
=>
'post|get'
]
],
//收款记录
'getCollection'
=>
[
'index/Collection/getCollection'
,
[
'method'
=>
'post|get'
]
],
//收款记录
'visitShop'
=>
[
'index/Supervise/visitShop'
,
[
'method'
=>
'get'
]
],
//门店拜访
'visitShop'
=>
[
'index/Supervise/visitShop'
,
[
'method'
=>
'get'
]
],
//门店拜访
'carryOut'
=>
[
'index/Supervise/carryOut'
,
[
'method'
=>
'get'
]
],
//监督执行
'carryOut'
=>
[
'index/Supervise/carryOut'
,
[
'method'
=>
'get'
]
],
//监督执行
]);
]);
Route
::
group
(
'api'
,
[
Route
::
group
(
'api'
,
[
//get
//get
'sendSms/:phone'
=>
[
'api/member/sendSms'
,
[
'method'
=>
'get'
]
],
//发送短信
'sendSms/:phone'
=>
[
'api/member/sendSms'
,
[
'method'
=>
'get'
]
],
//发送短信
'sendSms'
=>
[
'api/member/sendSms'
,
[
'method'
=>
'get'
]
],
//发送短信
'sendSms'
=>
[
'api/member/sendSms'
,
[
'method'
=>
'get'
]
],
//发送短信
'check_code'
=>
[
'api/member/check_code'
,
[
'method'
=>
'get'
]
],
//检测短信
'check_code'
=>
[
'api/member/check_code'
,
[
'method'
=>
'get'
]
],
//检测短信
'index'
=>
[
'api/member/index'
,
[
'method'
=>
'get'
]
],
'index'
=>
[
'api/member/index'
,
[
'method'
=>
'get'
]
],
//get broker
//get broker
'getBroker'
=>
[
'api/broker/index'
,
[
'method'
=>
'get'
]
],
//获取当前商铺或街铺的经纪人评论信息列表
'getBroker'
=>
[
'api/broker/index'
,
[
'method'
=>
'get'
]
],
//获取当前商铺或街铺的经纪人评论信息列表
'test'
=>
[
'api/broker/testtest'
,
[
'method'
=>
'get'
]
],
//获取当前商铺或街铺的经纪人评论信息列表
'test'
=>
[
'api/broker/testtest'
,
[
'method'
=>
'get'
]
],
//获取当前商铺或街铺的经纪人评论信息列表
'commentAndDeal'
=>
[
'api/broker/commentAndDeal'
,
[
'method'
=>
'get'
]
],
//获取当前经纪人的评价和交易列表
'commentAndDeal'
=>
[
'api/broker/commentAndDeal'
,
[
'method'
=>
'get'
]
],
//获取当前经纪人的评价和交易列表
'brokerDetail'
=>
[
'api/broker/brokerDetail'
,
[
'method'
=>
'get'
]
],
//经纪人详情
'brokerDetail'
=>
[
'api/broker/brokerDetail'
,
[
'method'
=>
'get'
]
],
//经纪人详情
//post broker
//post broker
'appraiser'
=>
[
'api/broker/appraiser'
,
[
'method'
=>
'post'
]
],
//评价经纪人
'appraiser'
=>
[
'api/broker/appraiser'
,
[
'method'
=>
'post'
]
],
//评价经纪人
//get member
//get member
'logout'
=>
[
'api/member/logout'
,
[
'method'
=>
'get'
]
],
'logout'
=>
[
'api/member/logout'
,
[
'method'
=>
'get'
]
],
'inviteList/:id'
=>
[
'api/member/inviteList'
,
[
'method'
=>
'get'
]
],
//邀请记录
'inviteList/:id'
=>
[
'api/member/inviteList'
,
[
'method'
=>
'get'
]
],
//邀请记录
'inviteList'
=>
[
'api/member/inviteList'
,
[
'method'
=>
'get'
]
],
//邀请记录
'inviteList'
=>
[
'api/member/inviteList'
,
[
'method'
=>
'get'
]
],
//邀请记录
'qrCode'
=>
[
'api/member/qrCode'
,
[
'method'
=>
'get'
]
],
//邀请二维码
'qrCode'
=>
[
'api/member/qrCode'
,
[
'method'
=>
'get'
]
],
//邀请二维码
'getUserInfo'
=>
[
'api/member/getUserInfo'
,[
'method'
=>
'get'
]
],
//通过AuthToken获取用户信息编辑用
'getUserInfo'
=>
[
'api/member/getUserInfo'
,
[
'method'
=>
'get'
]
],
//通过AuthToken获取用户信息编辑用
//post member
//post member
'login'
=>
[
'api/member/login'
,
[
'method'
=>
'post'
]
],
//c端登陆
'login'
=>
[
'api/member/login'
,
[
'method'
=>
'post'
]
],
//c端登陆
'register'
=>
[
'api/member/register'
,
[
'method'
=>
'post'
]
],
//注册|邀请注册|编辑
'register'
=>
[
'api/member/register'
,
[
'method'
=>
'post'
]
],
//注册|邀请注册|编辑
'uploadHeadImg'
=>
[
'api/member/uploadHeadImg'
,[
'method'
=>
'post'
]
],
//头像上传
'uploadHeadImg'
=>
[
'api/member/uploadHeadImg'
,
[
'method'
=>
'post'
]
],
//头像上传
// shop
// shop
'shopList'
=>
[
'api/shop/getShopList'
,
[
'method'
=>
'post'
]
],
'shopList'
=>
[
'api/shop/getShopList'
,
[
'method'
=>
'post'
]
],
'filtrateCondition'
=>
[
'api/shop/filtrateCondition'
,
[
'method'
=>
'get | post'
]
],
'filtrateCondition'
=>
[
'api/shop/filtrateCondition'
,
[
'method'
=>
'get | post'
]
],
'shopDetail'
=>
[
'api/shop/getShopDetail'
,
[
'method'
=>
'get'
]
],
'shopDetail'
=>
[
'api/shop/getShopDetail'
,
[
'method'
=>
'get'
]
],
//get banner
//get banner
'bannerList'
=>
[
'api/banner/getBannerList'
,
[
'method'
=>
'get'
]
],
'bannerList'
=>
[
'api/banner/getBannerList'
,
[
'method'
=>
'get'
]
],
//get index
//get index
'averagePriceAndTurnover'
=>
[
'api/index/averagePriceAndTurnover'
,
[
'method'
=>
'get'
]
],
'averagePriceAndTurnover'
=>
[
'api/index/averagePriceAndTurnover'
,
[
'method'
=>
'get'
]
],
//post AppointmentTime
//post AppointmentTime
'getAppointmentSeeShopList'
=>
[
'api/appointmentTime/getAppointmentSeeShopList'
,
[
'method'
=>
'post|get'
]
],
'getAppointmentSeeShopList'
=>
[
'api/appointmentTime/getAppointmentSeeShopList'
,
[
'method'
=>
'post|get'
]
],
'addAppointmentSeeShop'
=>
[
'api/appointmentTime/addAppointmentSeeShop'
,
[
'method'
=>
'post|get'
]
],
'addAppointmentSeeShop'
=>
[
'api/appointmentTime/addAppointmentSeeShop'
,
[
'method'
=>
'post|get'
]
],
//tradeLog
//tradeLog
'getTradeList'
=>
[
'api/TradeLog/getTradeList'
,
[
'method'
=>
'post|get'
]
],
'getTradeList'
=>
[
'api/TradeLog/getTradeList'
,
[
'method'
=>
'post|get'
]
],
//AttentionShop
//AttentionShop
'addOrUpdateAttention'
=>
[
'api/AttentionShop/addOrUpdateAttention'
,
[
'method'
=>
'post|get'
]
],
'addOrUpdateAttention'
=>
[
'api/AttentionShop/addOrUpdateAttention'
,
[
'method'
=>
'post|get'
]
],
'attentionList'
=>
[
'api/AttentionShop/attentionList'
,
[
'method'
=>
'post | get'
]
],
'attentionList'
=>
[
'api/AttentionShop/attentionList'
,
[
'method'
=>
'post | get'
]
],
'addSublet'
=>
[
'api/Sublet/addSublet'
,
[
'method'
=>
'post|get'
]
],
'addSublet'
=>
[
'api/Sublet/addSublet'
,
[
'method'
=>
'post|get'
]
],
//Version
//Version
...
@@ -299,49 +297,48 @@ Route::group('api', [
...
@@ -299,49 +297,48 @@ Route::group('api', [
// 'all_user' => [ 'api_broker/Client/all_user', [ 'method' => 'post|get' ] ],//全部客户 朱伟
// 'all_user' => [ 'api_broker/Client/all_user', [ 'method' => 'post|get' ] ],//全部客户 朱伟
'convertOrderByTime'
=>
[
'api/ConvertOrder/convertOrderByTime'
,
[
'method'
=>
'post|get'
]
],
'convertOrderByTime'
=>
[
'api/ConvertOrder/convertOrderByTime'
,
[
'method'
=>
'post|get'
]
],
'convertMarchIn'
=>
[
'api/ConvertOrder/convertMarchIn'
,
[
'method'
=>
'post|get'
]
],
'convertMarchIn'
=>
[
'api/ConvertOrder/convertMarchIn'
,
[
'method'
=>
'post|get'
]
],
'convertCollectingBill'
=>
[
'api/ConvertOrder/convertCollectingBill'
,
[
'method'
=>
'post|get'
]
],
'convertCollectingBill'
=>
[
'api/ConvertOrder/convertCollectingBill'
,
[
'method'
=>
'post|get'
]
],
'houseTable'
=>
[
'api/TransferHouseInfo/table'
,
[
'method'
=>
'post|get'
]
],
//转商铺表
'houseTable'
=>
[
'api/TransferHouseInfo/table'
,
[
'method'
=>
'post|get'
]
],
//转商铺表
'houseImgTable'
=>
[
'api/TransferHouseInfo/houseImg'
,
[
'method'
=>
'post|get'
]
],
//转楼盘表
'houseImgTable'
=>
[
'api/TransferHouseInfo/houseImg'
,
[
'method'
=>
'post|get'
]
],
//转楼盘表
'agentHouse'
=>
[
'api/TransferHouseInfo/agentHouse'
,
[
'method'
=>
'post|get'
]
],
//转楼盘表
'agentHouse'
=>
[
'api/TransferHouseInfo/agentHouse'
,
[
'method'
=>
'post|get'
]
],
//转楼盘表
]);
]);
Route
::
group
(
'chat'
,
[
Route
::
group
(
'chat'
,
[
'index'
=>
[
'chat/AppChat/index'
,
[
'method'
=>
'get'
]
],
'index'
=>
[
'chat/AppChat/index'
,
[
'method'
=>
'get'
]
],
'userChat'
=>
[
'chat/AppChat/userChat'
,
[
'method'
=>
'post|get'
]
],
'userChat'
=>
[
'chat/AppChat/userChat'
,
[
'method'
=>
'post|get'
]
],
'pushMsg'
=>
[
'chat/AppChat/pushMsg'
,
[
'method'
=>
'post|get'
]
],
'pushMsg'
=>
[
'chat/AppChat/pushMsg'
,
[
'method'
=>
'post|get'
]
],
'getChatHistory'
=>
[
'chat/AppChat/getChatHistory'
,
[
'method'
=>
'post|get'
]
],
'getChatHistory'
=>
[
'chat/AppChat/getChatHistory'
,
[
'method'
=>
'post|get'
]
],
'getUserOrAgentInfo'
=>
[
'chat/AppChat/getUserOrAgentInfo'
,
[
'method'
=>
'post|get'
]
],
'getUserOrAgentInfo'
=>
[
'chat/AppChat/getUserOrAgentInfo'
,
[
'method'
=>
'post|get'
]
],
'uploadImg'
=>
[
'chat/AppChat/uploadImg'
,
[
'method'
=>
'post|get'
]
],
'uploadImg'
=>
[
'chat/AppChat/uploadImg'
,
[
'method'
=>
'post|get'
]
],
'createGroupByOnlyId'
=>
[
'chat/Group/createGroupByOnlyId'
,
[
'method'
=>
'post|get'
]
],
'createGroupByOnlyId'
=>
[
'chat/Group/createGroupByOnlyId'
,
[
'method'
=>
'post|get'
]
],
'delGroup'
=>
[
'chat/Group/delGroup'
,
[
'method'
=>
'post|get'
]
],
'delGroup'
=>
[
'chat/Group/delGroup'
,
[
'method'
=>
'post|get'
]
],
'getGroupUser'
=>
[
'chat/Group/getGroupUser'
,
[
'method'
=>
'post|get'
]
],
'getGroupUser'
=>
[
'chat/Group/getGroupUser'
,
[
'method'
=>
'post|get'
]
],
'addGroupUserByIds'
=>
[
'chat/Group/addGroupUserByIds'
,
[
'method'
=>
'post|get'
]
],
'addGroupUserByIds'
=>
[
'chat/Group/addGroupUserByIds'
,
[
'method'
=>
'post|get'
]
],
'delGroupUserByIds'
=>
[
'chat/Group/delGroupUserByIds'
,
[
'method'
=>
'post|get'
]
],
'delGroupUserByIds'
=>
[
'chat/Group/delGroupUserByIds'
,
[
'method'
=>
'post|get'
]
],
'addGroupManage'
=>
[
'chat/Group/addGroupManage'
,
[
'method'
=>
'post|get'
]
],
'addGroupManage'
=>
[
'chat/Group/addGroupManage'
,
[
'method'
=>
'post|get'
]
],
'delGroupManage'
=>
[
'chat/Group/delGroupManage'
,
[
'method'
=>
'post|get'
]
],
'delGroupManage'
=>
[
'chat/Group/delGroupManage'
,
[
'method'
=>
'post|get'
]
],
'pushMsg_gethouseinfo'
=>
[
'chat/AppChat/getHouseInfoByFrom'
,
[
'method'
=>
'post|get'
]
],
'pushMsg_gethouseinfo'
=>
[
'chat/AppChat/getHouseInfoByFrom'
,
[
'method'
=>
'post|get'
]
],
]);
]);
Route
::
group
(
'task'
,[
Route
::
group
(
'task'
,
[
'exclusiveExpirationTime'
=>
[
'task/exclusive/exclusiveExpirationTime'
,
[
'method'
=>
'get'
]
],
//独家过期时间
'exclusiveExpirationTime'
=>
[
'task/exclusive/exclusiveExpirationTime'
,
[
'method'
=>
'get'
]
],
//独家过期时间
'addReport'
=>
[
'task/PrivacyNumber/addReport'
,
[
'method'
=>
'get|post'
]
],
//阿里大于隐私号码回调
'addReport'
=>
[
'task/PrivacyNumber/addReport'
,
[
'method'
=>
'get|post'
]
],
//阿里大于隐私号码回调
'queryRecordFile'
=>
[
'task/PrivacyNumber/queryRecordFile'
,
[
'method'
=>
'get'
]
],
//下载录音
'queryRecordFile'
=>
[
'task/PrivacyNumber/queryRecordFile'
,
[
'method'
=>
'get'
]
],
//下载录音
'releaseNumber'
=>
[
'task/PrivacyNumber/releaseNumber'
,
[
'method'
=>
'get'
]
],
//释放号码
'releaseNumber'
=>
[
'task/PrivacyNumber/releaseNumber'
,
[
'method'
=>
'get'
]
],
//释放号码
'updateStatusByTime'
=>
[
'task/updateShopStatusTask/updateStatusByTime'
,
[
'method'
=>
'get'
]
],
//修改上下架
'updateStatusByTime'
=>
[
'task/updateShopStatusTask/updateStatusByTime'
,
[
'method'
=>
'get'
]
],
//修改上下架
'updateStatusByNum'
=>
[
'task/updateShopStatusTask/updateStatusByNum'
,
[
'method'
=>
'get'
]
],
//修改下架根据数量
'updateStatusByNum'
=>
[
'task/updateShopStatusTask/updateStatusByNum'
,
[
'method'
=>
'get'
]
],
//修改下架根据数量
'totalAgentResults'
=>
[
'task/ResultsSummaryTask/totalAgentResults'
,
[
'method'
=>
'get'
]
],
//业绩统计
'totalAgentResults'
=>
[
'task/ResultsSummaryTask/totalAgentResults'
,
[
'method'
=>
'get'
]
],
//业绩统计
'rongBilledInformUrl'
=>
[
'task/PrivacyNumber/rongBilledInformUrl'
,
[
'method'
=>
'post | get'
]
],
//隐私号码回调[话单通知]
'rongBilledInformUrl'
=>
[
'task/PrivacyNumber/rongBilledInformUrl'
,
[
'method'
=>
'post | get'
]
],
//隐私号码回调[话单通知]
'rongRecordingInformUrl'
=>
[
'task/PrivacyNumber/rongRecordingInformUrl'
,
[
'method'
=>
'post | get'
]
],
//隐私号码回调[录音通知]
'rongRecordingInformUrl'
=>
[
'task/PrivacyNumber/rongRecordingInformUrl'
,
[
'method'
=>
'post | get'
]
],
//隐私号码回调[录音通知]
'rongStatusInformUrl'
=>
[
'task/PrivacyNumber/rongStatusInformUrl'
,
[
'method'
=>
'post | get'
]
],
//隐私号码回调[状态通知]
'rongStatusInformUrl'
=>
[
'task/PrivacyNumber/rongStatusInformUrl'
,
[
'method'
=>
'post | get'
]
],
//隐私号码回调[状态通知]
]);
]);
Route
::
group
(
'broker'
,
[
Route
::
group
(
'broker'
,
[
...
@@ -357,95 +354,94 @@ Route::group('broker', [
...
@@ -357,95 +354,94 @@ Route::group('broker', [
'statusBargain'
=>
[
'api_broker/OrderLog/statusBargain'
,
[
'method'
=>
'get|post'
]
],
'statusBargain'
=>
[
'api_broker/OrderLog/statusBargain'
,
[
'method'
=>
'get|post'
]
],
'getIsAccountStatement'
=>
[
'api_broker/OrderLog/getIsAccountStatement'
,
[
'method'
=>
'get|post'
]
],
'getIsAccountStatement'
=>
[
'api_broker/OrderLog/getIsAccountStatement'
,
[
'method'
=>
'get|post'
]
],
'login'
=>
[
'api_broker/Broker/login'
,
[
'method'
=>
'post'
]
],
//经纪人登陆
'login'
=>
[
'api_broker/Broker/login'
,
[
'method'
=>
'post'
]
],
//经纪人登陆
'editAgent'
=>
[
'api_broker/Broker/editAgent'
,
[
'method'
=>
'post'
]
],
//经纪人修改密码
'editAgent'
=>
[
'api_broker/Broker/editAgent'
,
[
'method'
=>
'post'
]
],
//经纪人修改密码
'forgetPwd'
=>
[
'api_broker/Broker/forgetPwd'
,
[
'method'
=>
'post'
]
],
//经纪人忘记密码
'forgetPwd'
=>
[
'api_broker/Broker/forgetPwd'
,
[
'method'
=>
'post'
]
],
//经纪人忘记密码
'uploadHeadImg'
=>
[
'api_broker/Broker/uploadHeadImg'
,
[
'method'
=>
'post'
]
],
//经纪人上传头像
'uploadHeadImg'
=>
[
'api_broker/Broker/uploadHeadImg'
,
[
'method'
=>
'post'
]
],
//经纪人上传头像
'editClient'
=>
[
'api_broker/Client/editClient'
,
[
'method'
=>
'get|post'
]
],
//添加和编辑客户
'editClient'
=>
[
'api_broker/Client/editClient'
,
[
'method'
=>
'get|post'
]
],
//添加和编辑客户
'getBroker'
=>
[
'api_broker/broker/getBroker'
,[
'method'
=>
'get'
]
],
//获取经纪人列表
'getBroker'
=>
[
'api_broker/broker/getBroker'
,
[
'method'
=>
'get'
]
],
//获取经纪人列表
'labelEdit'
=>
[
'api_broker/label/index'
,[
'method'
=>
'get|post'
]
],
//编辑标签
'labelEdit'
=>
[
'api_broker/label/index'
,
[
'method'
=>
'get|post'
]
],
//编辑标签
'getLabelsList'
=>
[
'api_broker/label/getLabelsList'
,[
'method'
=>
'get'
]
],
//标签列表
'getLabelsList'
=>
[
'api_broker/label/getLabelsList'
,
[
'method'
=>
'get'
]
],
//标签列表
'add_phone_follow_up'
=>
[
'api_broker/broker/add_phone_follow_up'
,[
'method'
=>
'get|post'
]
],
//新增-客户电话跟进
'add_phone_follow_up'
=>
[
'api_broker/broker/add_phone_follow_up'
,
[
'method'
=>
'get|post'
]
],
//新增-客户电话跟进
'useraction_search'
=>
[
'api_broker/broker/useraction_search'
,[
'method'
=>
'get|post'
]
],
//新增-客户电话跟进
'useraction_search'
=>
[
'api_broker/broker/useraction_search'
,
[
'method'
=>
'get|post'
]
],
//新增-客户电话跟进
'userStateSearch'
=>
[
'api_broker/broker/userStateSearch'
,
[
'method'
=>
'get|post'
]
],
//新增-客户电话跟进
'userStateSearch'
=>
[
'api_broker/broker/userStateSearch'
,
[
'method'
=>
'get|post'
]
],
//新增-客户电话跟进
'user_search'
=>
[
'api_broker/broker/user_search'
,[
'method'
=>
'get|post'
]
],
//客户搜索
'user_search'
=>
[
'api_broker/broker/user_search'
,
[
'method'
=>
'get|post'
]
],
//客户搜索
'bindAXB'
=>
[
'api_broker/CellPhone/bindAXB'
,
[
'method'
=>
'post'
]
],
//隐私号码
'bindAXB'
=>
[
'api_broker/CellPhone/bindAXB'
,
[
'method'
=>
'post'
]
],
//隐私号码
'agentsUnBind'
=>
[
'api_broker/CellPhone/agentsUnBind'
,
[
'method'
=>
'post'
]
],
//解除绑定关系
'agentsUnBind'
=>
[
'api_broker/CellPhone/agentsUnBind'
,
[
'method'
=>
'post'
]
],
//解除绑定关系
'updateBindAXB'
=>
[
'api_broker/CellPhone/updateBindAXB'
,
[
'method'
=>
'post'
]
],
//更新绑定关系隐私号码
'updateBindAXB'
=>
[
'api_broker/CellPhone/updateBindAXB'
,
[
'method'
=>
'post'
]
],
//更新绑定关系隐私号码
'agentUserTb'
=>
[
'api_broker/Client/agentUserTb'
,
[
'method'
=>
'get'
]
],
//客户列表
'agentUserTb'
=>
[
'api_broker/Client/agentUserTb'
,
[
'method'
=>
'get'
]
],
//客户列表
'agentUserFollow'
=>
[
'api_broker/Client/agentUserFollow'
,
[
'method'
=>
'get'
]
],
//客户列表
'agentUserFollow'
=>
[
'api_broker/Client/agentUserFollow'
,
[
'method'
=>
'get'
]
],
//客户列表
'agentSearch'
=>
[
'api_broker/Client/agentSearch'
,
[
'method'
=>
'get'
]
],
//经纪人搜索
'agentSearch'
=>
[
'api_broker/Client/agentSearch'
,
[
'method'
=>
'get'
]
],
//经纪人搜索
'getULabelsListApp'
=>
[
'api_broker/Client/getULabelsListApp'
,
[
'method'
=>
'get'
]
],
//客户标签
'getULabelsListApp'
=>
[
'api_broker/Client/getULabelsListApp'
,
[
'method'
=>
'get'
]
],
//客户标签
'all_user'
=>
[
'api_broker/Client/all_user'
,
[
'method'
=>
'post|get'
]
],
//全部客户 朱伟
'all_user'
=>
[
'api_broker/Client/all_user'
,
[
'method'
=>
'post|get'
]
],
//全部客户 朱伟
'inviteList'
=>
[
'api_broker/Client/inviteList'
,
[
'method'
=>
'get'
]
],
//邀请记录
'inviteList'
=>
[
'api_broker/Client/inviteList'
,
[
'method'
=>
'get'
]
],
//邀请记录
//商铺
//商铺
'getShopList'
=>
[
'api_broker/Shop/getShopList'
,
[
'method'
=>
'get|post'
]
],
'getShopList'
=>
[
'api_broker/Shop/getShopList'
,
[
'method'
=>
'get|post'
]
],
'getShopDetail'
=>
[
'api_broker/Shop/getShopDetail'
,
[
'method'
=>
'get'
]
],
'getShopDetail'
=>
[
'api_broker/Shop/getShopDetail'
,
[
'method'
=>
'get'
]
],
'addShopFollowUp'
=>
[
'api_broker/Shop/addShopFollowUp'
,
[
'method'
=>
'post'
]
],
//新增商铺跟进记录
'addShopFollowUp'
=>
[
'api_broker/Shop/addShopFollowUp'
,
[
'method'
=>
'post'
]
],
//新增商铺跟进记录
'reportList'
=>
[
'api_broker/Report/reportList'
,
[
'method'
=>
'get'
]
],
'reportList'
=>
[
'api_broker/Report/reportList'
,
[
'method'
=>
'get'
]
],
'orderDetail'
=>
[
'api_broker/OrderLog/orderDetail'
,
[
'method'
=>
'get|post'
]
],
'orderDetail'
=>
[
'api_broker/OrderLog/orderDetail'
,
[
'method'
=>
'get|post'
]
],
'token'
=>
[
'api_broker/broker/token'
,
[
'method'
=>
'get'
]
],
'token'
=>
[
'api_broker/broker/token'
,
[
'method'
=>
'get'
]
],
'getAgentsByPhone'
=>
[
'api_broker/broker/getAgentsByPhone'
,
[
'method'
=>
'get'
]
],
'getAgentsByPhone'
=>
[
'api_broker/broker/getAgentsByPhone'
,
[
'method'
=>
'get'
]
],
'agentsPhone'
=>
[
'api_broker/CellPhone/agentsPhone'
,
[
'method'
=>
'get|post'
]
],
//获取经纪人拨打界面手机号
'agentsPhone'
=>
[
'api_broker/CellPhone/agentsPhone'
,
[
'method'
=>
'get|post'
]
],
//获取经纪人拨打界面手机号
'dayStatement'
=>
[
'api_broker/Statement/dayStatement'
,
[
'method'
=>
'get|post'
]
],
'dayStatement'
=>
[
'api_broker/Statement/dayStatement'
,
[
'method'
=>
'get|post'
]
],
'selectReportAll'
=>
[
'api_broker/OrderLog/selectReportAll'
,
[
'method'
=>
'get|post'
]
],
'selectReportAll'
=>
[
'api_broker/OrderLog/selectReportAll'
,
[
'method'
=>
'get|post'
]
],
'searchOrder'
=>
[
'api_broker/OrderLog/searchOrder'
,
[
'method'
=>
'get|post'
]
],
'searchOrder'
=>
[
'api_broker/OrderLog/searchOrder'
,
[
'method'
=>
'get|post'
]
],
'bargainList'
=>
[
'api_broker/OrderLog/bargainList'
,
[
'method'
=>
'get|post'
]
],
'bargainList'
=>
[
'api_broker/OrderLog/bargainList'
,
[
'method'
=>
'get|post'
]
],
'bargainDetail'
=>
[
'api_broker/OrderLog/bargainDetail'
,
[
'method'
=>
'get|post'
]
],
'bargainDetail'
=>
[
'api_broker/OrderLog/bargainDetail'
,
[
'method'
=>
'get|post'
]
],
'searchAgents'
=>
[
'api_broker/OrderLog/searchAgents'
,
[
'method'
=>
'get'
]
],
'searchAgents'
=>
[
'api_broker/OrderLog/searchAgents'
,
[
'method'
=>
'get'
]
],
'searchBargainList'
=>
[
'api_broker/OrderLog/searchBargainList'
,
[
'method'
=>
'get'
]
],
'searchBargainList'
=>
[
'api_broker/OrderLog/searchBargainList'
,
[
'method'
=>
'get'
]
],
'getListByHouseId'
=>
[
'api_broker/OrderLog/getListByHouseId'
,
[
'method'
=>
'get'
]
],
'getListByHouseId'
=>
[
'api_broker/OrderLog/getListByHouseId'
,
[
'method'
=>
'get'
]
],
'searchBargainAgents'
=>
[
'api_broker/OrderLog/searchBargainAgents'
,
[
'method'
=>
'get'
]
],
'searchBargainAgents'
=>
[
'api_broker/OrderLog/searchBargainAgents'
,
[
'method'
=>
'get'
]
],
'isBargainEnd'
=>
[
'api_broker/OrderLog/isBargainEnd'
,
[
'method'
=>
'get'
]
],
'isBargainEnd'
=>
[
'api_broker/OrderLog/isBargainEnd'
,
[
'method'
=>
'get'
]
],
'appAgentAuth'
=>
[
'api_broker/Report/appAgentAuth'
,
[
'method'
=>
'get'
]
],
'appAgentAuth'
=>
[
'api_broker/Report/appAgentAuth'
,
[
'method'
=>
'get'
]
],
'center'
=>
[
'api_broker/MyCenter/center'
,
[
'method'
=>
'get|post'
]
],
'center'
=>
[
'api_broker/MyCenter/center'
,
[
'method'
=>
'get|post'
]
],
'houseEdit'
=>
[
'api_broker/shop/edit'
,
[
'method'
=>
'get|post'
]
],
//编辑商铺
'houseEdit'
=>
[
'api_broker/shop/edit'
,
[
'method'
=>
'get|post'
]
],
//编辑商铺
'getLabelsShopList'
=>
[
'api_broker/label/getLabelsShopList'
,
[
'method'
=>
'get'
]
],
//编辑商铺
'getLabelsShopList'
=>
[
'api_broker/label/getLabelsShopList'
,
[
'method'
=>
'get'
]
],
//编辑商铺
'uploadHouseFile'
=>
[
'api_broker/shop/uploadHouseFile'
,
[
'method'
=>
'post'
]
],
//商铺上传文件
'uploadHouseFile'
=>
[
'api_broker/shop/uploadHouseFile'
,
[
'method'
=>
'post'
]
],
//商铺上传文件
'delHouseFile'
=>
[
'api_broker/shop/delHouseFile'
,
[
'method'
=>
'post'
]
],
//商铺文件删除
'delHouseFile'
=>
[
'api_broker/shop/delHouseFile'
,
[
'method'
=>
'post'
]
],
//商铺文件删除
'getAddress'
=>
[
'api_broker/shop/getAddress'
,
[
'method'
=>
'get'
]
],
//获取江浙沪城市
'getAddress'
=>
[
'api_broker/shop/getAddress'
,
[
'method'
=>
'get'
]
],
//获取江浙沪城市
'getRegions'
=>
[
'api_broker/shop/getRegions'
,
[
'method'
=>
'get'
]
],
//获取省市区
'getRegions'
=>
[
'api_broker/shop/getRegions'
,
[
'method'
=>
'get'
]
],
//获取省市区
'selectPerformanceByTime'
=>
[
'api_broker/Performance/selectPerformanceByTime'
,
[
'method'
=>
'get'
]
],
'selectPerformanceByTime'
=>
[
'api_broker/Performance/selectPerformanceByTime'
,
[
'method'
=>
'get'
]
],
'agentPerformanceBySearch'
=>
[
'api_broker/Performance/agentPerformanceBySearch'
,
[
'method'
=>
'get'
]
],
'agentPerformanceBySearch'
=>
[
'api_broker/Performance/agentPerformanceBySearch'
,
[
'method'
=>
'get'
]
],
'orderNoList'
=>
[
'api_broker/Performance/orderNoList'
,
[
'method'
=>
'get'
]
],
'orderNoList'
=>
[
'api_broker/Performance/orderNoList'
,
[
'method'
=>
'get'
]
],
'storePerformanceBySearch'
=>
[
'api_broker/Performance/storePerformanceBySearch'
,
[
'method'
=>
'get'
]
],
'storePerformanceBySearch'
=>
[
'api_broker/Performance/storePerformanceBySearch'
,
[
'method'
=>
'get'
]
],
'storeOrAgentSort'
=>
[
'api_broker/Performance/storeOrAgentSort'
,
[
'method'
=>
'get'
]
],
'storeOrAgentSort'
=>
[
'api_broker/Performance/storeOrAgentSort'
,
[
'method'
=>
'get'
]
],
'weekWorkImg'
=>
[
'api_broker/Statement/weekWorkImg'
,
[
'method'
=>
'post'
]
],
//生成周报和日报图片
'weekWorkImg'
=>
[
'api_broker/Statement/weekWorkImg'
,
[
'method'
=>
'post'
]
],
//生成周报和日报图片
'setReportContent'
=>
[
'api_broker/Statement/setReportContent'
,
[
'method'
=>
'get|post'
]
],
//保存日报周报四个字段
'setReportContent'
=>
[
'api_broker/Statement/setReportContent'
,
[
'method'
=>
'get|post'
]
],
//保存日报周报四个字段
'getWeekOrDay'
=>
[
'api_broker/Statement/getWeekOrDay'
,
[
'method'
=>
'get'
]
],
//获取日报或者周报
'getWeekOrDay'
=>
[
'api_broker/Statement/getWeekOrDay'
,
[
'method'
=>
'get'
]
],
//获取日报或者周报
'uploadSuperviseFile'
=>
[
'api_broker/Supervise/uploadSuperviseFile'
,
[
'method'
=>
'post'
]
],
//监督执行和门店拜访上传图片
'uploadSuperviseFile'
=>
[
'api_broker/Supervise/uploadSuperviseFile'
,
[
'method'
=>
'post'
]
],
//监督执行和门店拜访上传图片
'searchAgentShop'
=>
[
'api_broker/Supervise/searchInfo'
,
[
'method'
=>
'get'
]
],
//拜访门店查询
'searchAgentShop'
=>
[
'api_broker/Supervise/searchInfo'
,
[
'method'
=>
'get'
]
],
//拜访门店查询
'add_supervise'
=>
[
'api_broker/Supervise/add'
,
[
'method'
=>
'post'
]
],
//添加监督执行和门店拜访
'add_supervise'
=>
[
'api_broker/Supervise/add'
,
[
'method'
=>
'post'
]
],
//添加监督执行和门店拜访
'addBargain'
=>
[
'api_broker/OrderLog/addBargain'
,
[
'method'
=>
'post'
]
],
//新增成交报告佣金(分佣提成)
'addBargain'
=>
[
'api_broker/OrderLog/addBargain'
,
[
'method'
=>
'post'
]
],
//新增成交报告佣金(分佣提成)
'getSupervise'
=>
[
'api_broker/Supervise/getSupervise'
,
[
'method'
=>
'get'
]
],
//监督执行列表
'getSupervise'
=>
[
'api_broker/Supervise/getSupervise'
,
[
'method'
=>
'get'
]
],
//监督执行列表
'sendSms'
=>
[
'api_broker/broker/sendSms'
,
[
'method'
=>
'get'
]
],
//发送短信
'sendSms'
=>
[
'api_broker/broker/sendSms'
,
[
'method'
=>
'get'
]
],
//发送短信
'qrCode'
=>
[
'api_broker/broker/qrCode'
,
[
'method'
=>
'get|post'
]
],
//生成二维码
'qrCode'
=>
[
'api_broker/broker/qrCode'
,
[
'method'
=>
'get|post'
]
],
//生成二维码
'feedList'
=>
[
'api_broker/Feed/feedList'
,
[
'method'
=>
'get'
]
],
//首页feed喜报
'feedList'
=>
[
'api_broker/Feed/feedList'
,
[
'method'
=>
'get'
]
],
//首页feed喜报
'editFeedClick'
=>
[
'api_broker/Feed/editFeedClick'
,
[
'method'
=>
'post'
]
],
//feed流喜报点赞和页面浏览数量
'editFeedClick'
=>
[
'api_broker/Feed/editFeedClick'
,
[
'method'
=>
'post'
]
],
//feed流喜报点赞和页面浏览数量
'getFeedInfo'
=>
[
'api_broker/Feed/getFeedInfo'
,
[
'method'
=>
'get'
]
],
//feed流喜报详情
'getFeedInfo'
=>
[
'api_broker/Feed/getFeedInfo'
,
[
'method'
=>
'get'
]
],
//feed流喜报详情
'editDecFeedClick'
=>
[
'api_broker/Feed/editDecFeedClick'
,
[
'method'
=>
'post'
]
],
//feed流喜报详情
'editDecFeedClick'
=>
[
'api_broker/Feed/editDecFeedClick'
,
[
'method'
=>
'post'
]
],
//feed流喜报详情
'getAgentsResidueNumList'
=>
[
'api_broker/LookShop/getAgentsResidueNumList'
,
[
'method'
=>
'get'
]
],
//剩余铺数列表
'getAgentsResidueNumList'
=>
[
'api_broker/LookShop/getAgentsResidueNumList'
,
[
'method'
=>
'get'
]
],
//剩余铺数列表
'setAgentLookNum'
=>
[
'api_broker/LookShop/setAgentLookNum'
,
[
'method'
=>
'post'
]
],
//设置经纪人的看铺数量
'setAgentLookNum'
=>
[
'api_broker/LookShop/setAgentLookNum'
,
[
'method'
=>
'post'
]
],
//设置经纪人的看铺数量
//首页跟进记录
//首页跟进记录
'userFollowUpList'
=>
[
'api_broker/HomePageLog/userFollowUpList'
,
[
'method'
=>
'get'
]
],
'userFollowUpList'
=>
[
'api_broker/HomePageLog/userFollowUpList'
,
[
'method'
=>
'get'
]
],
'houseFollowUpList'
=>
[
'api_broker/HomePageLog/houseFollowUpList'
,
[
'method'
=>
'get'
]
],
'houseFollowUpList'
=>
[
'api_broker/HomePageLog/houseFollowUpList'
,
[
'method'
=>
'get'
]
],
]);
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment