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
64c5479c
Commit
64c5479c
authored
Jul 22, 2019
by
clone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
4ea9b279
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
128 additions
and
103 deletions
+128
-103
Broker.php
application/api_broker/controller/Broker.php
+23
-0
route.php
application/route.php
+105
-103
No files found.
application/api_broker/controller/Broker.php
View file @
64c5479c
...
...
@@ -1179,5 +1179,27 @@ class Broker extends Basic
return
$this
->
response
(
"200"
,
"成功"
,
$data
);
}
/**
* @return \think\Response
*/
public
function
deviceList
()
{
$agent_id
=
$this
->
request
->
param
(
"agent_id"
);
if
(
!
$agent_id
)
{
return
$this
->
response
(
101
,
'经纪人id不能为空'
);
}
$aBD
=
new
ABindingDevice
();
$params
[
"agent_id"
]
=
$agent_id
;
$field
=
"id,agent_id,device_id,model,is_forbidden,is_pc,create_time,update_time"
;
$result
=
$aBD
->
getDeviceNewByAgentId
(
$params
,
$field
);
if
(
count
(
$result
)
>
0
)
{
return
$this
->
response
(
"200"
,
"success"
,
$result
);
}
else
{
return
$this
->
response
(
"101"
,
"此账号未绑定过设备"
);
}
}
}
\ No newline at end of file
application/route.php
View file @
64c5479c
...
...
@@ -13,57 +13,57 @@ use think\Route;
Route
::
rule
(
'/'
,
'index/login/login'
);
Route
::
group
(
'app'
,
[
'index'
=>
[
'app/index/index'
,
[
'method'
=>
'get'
]],
'agent_detail'
=>
[
'app/index/agent_detail'
,
[
'method'
=>
'get'
]],
'more_pingjia'
=>
[
'app/index/more_pingjia'
,
[
'method'
=>
'get'
]],
'more_chengjiao'
=>
[
'app/index/more_chengjiao'
,
[
'method'
=>
'get'
]],
'share_detail'
=>
[
'app/index/share_detail'
,
[
'method'
=>
'get'
]],
'building_detail'
=>
[
'app/index/share_detail_building'
,
[
'method'
=>
'get'
]],
//楼盘详情分享
'share_register'
=>
[
'app/index/share_register'
,
[
'method'
=>
'get'
]],
'agreement'
=>
[
'app/index/agreement'
,
[
'method'
=>
'get'
]],
'agreement_app'
=>
[
'app/index/agreement_app'
,
[
'method'
=>
'get'
]],
'download_c'
=>
[
'app/index/download_c'
,
[
'method'
=>
'get'
]],
'getShopDetails'
=>
[
'app/index/getShopDetail'
,
[
'method'
=>
'get | post'
]],
'getVersionNo'
=>
[
'app/index/getVersionNo'
,
[
'method'
=>
'get | post'
]],
'feed'
=>
[
'app/index/feed'
,
[
'method'
=>
'get'
]],
'baidu_send'
=>
[
'app/index/baidu_send'
,
[
'method'
=>
'get'
]],
'baidu_send2'
=>
[
'app/index/baidu_send2'
,
[
'method'
=>
'get'
]]
'index'
=>
[
'app/index/index'
,
[
'method'
=>
'get'
]],
'agent_detail'
=>
[
'app/index/agent_detail'
,
[
'method'
=>
'get'
]],
'more_pingjia'
=>
[
'app/index/more_pingjia'
,
[
'method'
=>
'get'
]],
'more_chengjiao'
=>
[
'app/index/more_chengjiao'
,
[
'method'
=>
'get'
]],
'share_detail'
=>
[
'app/index/share_detail'
,
[
'method'
=>
'get'
]],
'building_detail'
=>
[
'app/index/share_detail_building'
,
[
'method'
=>
'get'
]],
//楼盘详情分享
'share_register'
=>
[
'app/index/share_register'
,
[
'method'
=>
'get'
]],
'agreement'
=>
[
'app/index/agreement'
,
[
'method'
=>
'get'
]],
'agreement_app'
=>
[
'app/index/agreement_app'
,
[
'method'
=>
'get'
]],
'download_c'
=>
[
'app/index/download_c'
,
[
'method'
=>
'get'
]],
'getShopDetails'
=>
[
'app/index/getShopDetail'
,
[
'method'
=>
'get | post'
]],
'getVersionNo'
=>
[
'app/index/getVersionNo'
,
[
'method'
=>
'get | post'
]],
'feed'
=>
[
'app/index/feed'
,
[
'method'
=>
'get'
]],
'baidu_send'
=>
[
'app/index/baidu_send'
,
[
'method'
=>
'get'
]],
'baidu_send2'
=>
[
'app/index/baidu_send2'
,
[
'method'
=>
'get'
]]
]);
Route
::
group
(
'app_broker'
,
[
'index'
=>
[
'app_broker/index/index'
,
[
'method'
=>
'get'
]],
'achieve_fork'
=>
[
'app_broker/index/achieve_fork'
,
[
'method'
=>
'get'
]],
'achieve_ywy'
=>
[
'app_broker/index/achieve_ywy'
,
[
'method'
=>
'get'
]],
'achieve_region'
=>
[
'app_broker/index/achieve_region'
,
[
'method'
=>
'get'
]],
'cs_0328'
=>
[
'app_broker/index/cs_0328'
,
[
'method'
=>
'get'
]],
'weekly'
=>
[
'app_broker/index/weekly'
,
[
'method'
=>
'get'
]],
'weekly_my'
=>
[
'app_broker/index/weekly_my'
,
[
'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_image'
=>
[
'app_broker/index/weekly_image'
,
[
'method'
=>
'get'
]],
'daily'
=>
[
'app_broker/index/daily'
,
[
'method'
=>
'get'
]],
'daily_my'
=>
[
'app_broker/index/daily_my'
,
[
'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_ywy'
=>
[
'app_broker/index/daily_achieve_ywy'
,
[
'method'
=>
'get'
]],
'customerinfo_genjin'
=>
[
'app_broker/index/customerinfo_genjin'
,
[
'method'
=>
'get'
]],
'timeline_pc'
=>
[
'app_broker/index/timeline_pc'
,
[
'method'
=>
'get'
]],
'timeline_pc_office'
=>
[
'app_broker/index/timeline_pc_office'
,
[
'method'
=>
'get'
]],
'shop_detail_pc'
=>
[
'app_broker/index/shop_detail_pc'
,
[
'method'
=>
'get'
]],
'office_detail_pc'
=>
[
'app_broker/index/office_detail_pc'
,
[
'method'
=>
'get'
]],
'submit_report_pc'
=>
[
'app_broker/index/submit_report_pc'
,
[
'method'
=>
'get'
]],
'submit_report_pc_office'
=>
[
'app_broker/index/submit_report_pc_office'
,
[
'method'
=>
'get'
]],
'customer_genjin_detail_pc'
=>
[
'app_broker/index/customer_genjin_detail_pc'
,
[
'method'
=>
'get'
]],
'bargaininfo_detail_static_pc'
=>
[
'app_broker/index/bargaininfo_detail_static_pc'
,
[
'method'
=>
'get'
]],
'index'
=>
[
'app_broker/index/index'
,
[
'method'
=>
'get'
]],
'achieve_fork'
=>
[
'app_broker/index/achieve_fork'
,
[
'method'
=>
'get'
]],
'achieve_ywy'
=>
[
'app_broker/index/achieve_ywy'
,
[
'method'
=>
'get'
]],
'achieve_region'
=>
[
'app_broker/index/achieve_region'
,
[
'method'
=>
'get'
]],
'cs_0328'
=>
[
'app_broker/index/cs_0328'
,
[
'method'
=>
'get'
]],
'weekly'
=>
[
'app_broker/index/weekly'
,
[
'method'
=>
'get'
]],
'weekly_my'
=>
[
'app_broker/index/weekly_my'
,
[
'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_image'
=>
[
'app_broker/index/weekly_image'
,
[
'method'
=>
'get'
]],
'daily'
=>
[
'app_broker/index/daily'
,
[
'method'
=>
'get'
]],
'daily_my'
=>
[
'app_broker/index/daily_my'
,
[
'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_ywy'
=>
[
'app_broker/index/daily_achieve_ywy'
,
[
'method'
=>
'get'
]],
'customerinfo_genjin'
=>
[
'app_broker/index/customerinfo_genjin'
,
[
'method'
=>
'get'
]],
'timeline_pc'
=>
[
'app_broker/index/timeline_pc'
,
[
'method'
=>
'get'
]],
'timeline_pc_office'
=>
[
'app_broker/index/timeline_pc_office'
,
[
'method'
=>
'get'
]],
'shop_detail_pc'
=>
[
'app_broker/index/shop_detail_pc'
,
[
'method'
=>
'get'
]],
'office_detail_pc'
=>
[
'app_broker/index/office_detail_pc'
,
[
'method'
=>
'get'
]],
'submit_report_pc'
=>
[
'app_broker/index/submit_report_pc'
,
[
'method'
=>
'get'
]],
'submit_report_pc_office'
=>
[
'app_broker/index/submit_report_pc_office'
,
[
'method'
=>
'get'
]],
'customer_genjin_detail_pc'
=>
[
'app_broker/index/customer_genjin_detail_pc'
,
[
'method'
=>
'get'
]],
'bargaininfo_detail_static_pc'
=>
[
'app_broker/index/bargaininfo_detail_static_pc'
,
[
'method'
=>
'get'
]],
'bargaininfo_detail_static_pc_office'
=>
[
'app_broker/index/bargaininfo_detail_static_pc_office'
,
[
'method'
=>
'get'
]],
'customerinfo_customer_add'
=>
[
'app_broker/index/customerinfo_customer_add'
,
[
'method'
=>
'get'
]],
'customerinfo_details_new'
=>
[
'app_broker/index/customerinfo_details_new'
,
[
'method'
=>
'get'
]],
'agent_pingjia'
=>
[
'app_broker/index/agent_pingjia'
,
[
'method'
=>
'get'
]],
'download_b'
=>
[
'app_broker/index/download_b'
,
[
'method'
=>
'get'
]],
'imagebody'
=>
[
'app_broker/index/imagebody'
,
[
'method'
=>
'get'
]],
'edit_modal'
=>
[
'app_broker/index/edit_modal'
,
[
'method'
=>
'get'
]],
'yindao_android'
=>
[
'app/index/yindao_android'
,
[
'method'
=>
'get'
]],
//安卓引导界面 杜欣源 2018-11-12
'yindao_ios'
=>
[
'app/index/yindao_ios'
,
[
'method'
=>
'get'
]],
//ios引导界面 2018-11-12
'customerinfo_customer_add'
=>
[
'app_broker/index/customerinfo_customer_add'
,
[
'method'
=>
'get'
]],
'customerinfo_details_new'
=>
[
'app_broker/index/customerinfo_details_new'
,
[
'method'
=>
'get'
]],
'agent_pingjia'
=>
[
'app_broker/index/agent_pingjia'
,
[
'method'
=>
'get'
]],
'download_b'
=>
[
'app_broker/index/download_b'
,
[
'method'
=>
'get'
]],
'imagebody'
=>
[
'app_broker/index/imagebody'
,
[
'method'
=>
'get'
]],
'edit_modal'
=>
[
'app_broker/index/edit_modal'
,
[
'method'
=>
'get'
]],
'yindao_android'
=>
[
'app/index/yindao_android'
,
[
'method'
=>
'get'
]],
//安卓引导界面 杜欣源 2018-11-12
'yindao_ios'
=>
[
'app/index/yindao_ios'
,
[
'method'
=>
'get'
]],
//ios引导界面 2018-11-12
]);
Route
::
group
(
'index'
,
[
...
...
@@ -368,23 +368,23 @@ Route::group('index', [
'costParameters'
=>
[
'index/RealTimePerformance/costParameters'
,
[
'method'
=>
'GET'
]],
//成本参数 liu
'publicCostDetails'
=>
[
'index/RealTimePerformance/publicCostDetails'
,
[
'method'
=>
'GET'
]],
//费用报销详情 liu
'accountingTable'
=>
[
'index/RealTimePerformance/accountingTable'
,
[
'method'
=>
'GET'
]],
//成本核算表 liu
'shopinspectionLog'
=>
[
'index/ShopInspectionLog/shopinspectionLogList'
,
[
'method'
=>
'POST|GET'
]],
//商铺查看日志liu
'opensquareLog'
=>
[
'index/OpenSquareLog/opensquarelogList'
,
[
'method'
=>
'POST|GET'
]],
//开盘广场liu
'redEnvelope'
=>
[
'index/RedEnvelope/redEnvelopeList'
,
[
'method'
=>
'POST|GET'
]],
//活动列表liu
'CashBack'
=>
[
'index/CashBack/cashBackList'
,
[
'method'
=>
'POST|GET'
]],
//返现红包liu
'CashAccount'
=>
[
'index/CashAccount/cashAccountList'
,
[
'method'
=>
'POST|GET'
]],
//现金账户liu
'performancesubsidiaryList'
=>
[
'index/PerformanceSubsidiary/performancesubsidiaryList'
,
[
'method'
=>
'POST|GET'
]],
//业绩明细liu
'pkList'
=>
[
'index/PkList/pkList'
,
[
'method'
=>
'POST|GET'
]],
//pk榜 liu
'pkWeekList'
=>
[
'index/PkList/pkWeekList'
,
[
'method'
=>
'POST|GET'
]],
//pk榜 liu
'blackList'
=>
[
'index/BlackList/blackList'
,
[
'method'
=>
'POST|GET'
]],
//黑名单 liu
'myCollectionUserList'
=>
[
'index/myCollectionUser/myCollectionUserList'
,
[
'method'
=>
'POST|GET'
]],
//我收藏的客户liu
'myCollectionShopList'
=>
[
'index/myCollectionShop/myCollectionShopList'
,
[
'method'
=>
'POST|GET'
]],
//我收藏的客户liu
'dayAchievementsReport'
=>
[
'index/PerformanceReport/dayAchievementsReportList'
,
[
'method'
=>
'POST|GET'
]],
//日报liu
'weekAchievementsReport'
=>
[
'index/PerformanceReport/weekAchievementsReportList'
,
[
'method'
=>
'POST|GET'
]],
//周报liu
'officeBuildingList'
=>
[
'index/OfficeBuilding/officeBuildingList'
,
[
'method'
=>
'POST|GET'
]],
//办公楼liu
'shopinspectionLog'
=>
[
'index/ShopInspectionLog/shopinspectionLogList'
,
[
'method'
=>
'POST|GET'
]],
//商铺查看日志liu
'opensquareLog'
=>
[
'index/OpenSquareLog/opensquarelogList'
,
[
'method'
=>
'POST|GET'
]],
//开盘广场liu
'redEnvelope'
=>
[
'index/RedEnvelope/redEnvelopeList'
,
[
'method'
=>
'POST|GET'
]],
//活动列表liu
'CashBack'
=>
[
'index/CashBack/cashBackList'
,
[
'method'
=>
'POST|GET'
]],
//返现红包liu
'CashAccount'
=>
[
'index/CashAccount/cashAccountList'
,
[
'method'
=>
'POST|GET'
]],
//现金账户liu
'performancesubsidiaryList'
=>
[
'index/PerformanceSubsidiary/performancesubsidiaryList'
,
[
'method'
=>
'POST|GET'
]],
//业绩明细liu
'pkList'
=>
[
'index/PkList/pkList'
,
[
'method'
=>
'POST|GET'
]],
//pk榜 liu
'pkWeekList'
=>
[
'index/PkList/pkWeekList'
,
[
'method'
=>
'POST|GET'
]],
//pk榜 liu
'blackList'
=>
[
'index/BlackList/blackList'
,
[
'method'
=>
'POST|GET'
]],
//黑名单 liu
'myCollectionUserList'
=>
[
'index/myCollectionUser/myCollectionUserList'
,
[
'method'
=>
'POST|GET'
]],
//我收藏的客户liu
'myCollectionShopList'
=>
[
'index/myCollectionShop/myCollectionShopList'
,
[
'method'
=>
'POST|GET'
]],
//我收藏的客户liu
'dayAchievementsReport'
=>
[
'index/PerformanceReport/dayAchievementsReportList'
,
[
'method'
=>
'POST|GET'
]],
//日报liu
'weekAchievementsReport'
=>
[
'index/PerformanceReport/weekAchievementsReportList'
,
[
'method'
=>
'POST|GET'
]],
//周报liu
'officeBuildingList'
=>
[
'index/OfficeBuilding/officeBuildingList'
,
[
'method'
=>
'POST|GET'
]],
//办公楼liu
// 'officeEdit' => ['index/OfficeBuilding/officeEdit', ['method' => 'POST|GET']],//办公楼新增编辑liu
'buildingDictionary'
=>
[
'index/OfficeBuilding/buildingDictionary'
,
[
'method'
=>
'POST|GET'
]],
//楼盘字典liu
'buildingDictionary'
=>
[
'index/OfficeBuilding/buildingDictionary'
,
[
'method'
=>
'POST|GET'
]],
//楼盘字典liu
'myCollectionOfficeList'
=>
[
'index/OfficeBuilding/myCollectionOfficeList'
,
[
'method'
=>
'POST|GET'
]],
//办公楼收藏liu
...
...
@@ -519,33 +519,33 @@ Route::group('index', [
'yindaoAndroidOffice'
=>
[
'index/ShareOfficeRoom/yindaoAndroid'
,
[
'method'
=>
'POST|GET'
]],
'yindaoIosOffice'
=>
[
'index/ShareOfficeRoom/yindaoIos'
,
[
'method'
=>
'POST|GET'
]],
'addOffice'
=>
[
'index/StoreFee/addOffice'
,
[
'method'
=>
'POST|GET'
]
],
'getOfficeList'
=>
[
'index/StoreFee/getOfficeList'
,
[
'method'
=>
'POST|GET'
]
],
'getOfficeInfo'
=>
[
'index/StoreFee/getOfficeInfo'
,
[
'method'
=>
'POST|GET'
]
],
'editOffice'
=>
[
'index/StoreFee/editOffice'
,
[
'method'
=>
'POST|GET'
]
],
'getStoreList'
=>
[
'index/StoreFee/getStoreList'
,
[
'method'
=>
'POST|GET'
]
],
'bindStore'
=>
[
'index/StoreFee/bindStore'
,
[
'method'
=>
'POST|GET'
]
],
'selectStore'
=>
[
'index/StoreFee/selectStore'
,
[
'method'
=>
'POST|GET'
]
],
'getCostList'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
]],
//费用报销审核全部
'getCostListOne/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
0
]],
//费用报销未审核
'getCostListTwo/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
1
]],
//费用报销审核总监
'addOffice'
=>
[
'index/StoreFee/addOffice'
,
[
'method'
=>
'POST|GET'
]
],
'getOfficeList'
=>
[
'index/StoreFee/getOfficeList'
,
[
'method'
=>
'POST|GET'
]
],
'getOfficeInfo'
=>
[
'index/StoreFee/getOfficeInfo'
,
[
'method'
=>
'POST|GET'
]
],
'editOffice'
=>
[
'index/StoreFee/editOffice'
,
[
'method'
=>
'POST|GET'
]
],
'getStoreList'
=>
[
'index/StoreFee/getStoreList'
,
[
'method'
=>
'POST|GET'
]
],
'bindStore'
=>
[
'index/StoreFee/bindStore'
,
[
'method'
=>
'POST|GET'
]
],
'selectStore'
=>
[
'index/StoreFee/selectStore'
,
[
'method'
=>
'POST|GET'
]
],
'getCostList'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
]],
//费用报销审核全部
'getCostListOne/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
0
]],
//费用报销未审核
'getCostListTwo/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
1
]],
//费用报销审核总监
'getCostListThree/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
2
]],
//费用报销审核一审
'getCostListFour/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
3
]],
//费用报销审核二审
'getCostListFive/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
4
]],
//费用报销审核三审
'delCost'
=>
[
'index/Cost/delCost'
,
[
'method'
=>
'POST'
]],
//删除费用报销审核
'checkCostTwo/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
1
]],
//费用报销审核总监
'checkCostThree/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
2
]],
//费用报销审核一审
'checkCostFour/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
3
]],
//费用报销审核二审
'checkCostFive/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
4
]],
//费用报销审核三审
'getCostDetailList'
=>
[
'index/CostDetail/getCostDetailList'
,
[
'method'
=>
'POST|GET'
]
],
'getCostDetailListExcel'
=>
[
'index/CostDetail/getCostDetailListExcel'
,
[
'method'
=>
'POST|GET'
]
],
'getCostInfo'
=>
[
'index/CostDetail/getCostInfo'
,
[
'method'
=>
'POST|GET'
]
],
'getCostListFour/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
3
]],
//费用报销审核二审
'getCostListFive/:check_status'
=>
[
'index/Cost/getCostList'
,
[
'method'
=>
'GET'
],
[
'check_status'
=>
4
]],
//费用报销审核三审
'delCost'
=>
[
'index/Cost/delCost'
,
[
'method'
=>
'POST'
]],
//删除费用报销审核
'checkCostTwo/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
1
]],
//费用报销审核总监
'checkCostThree/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
2
]],
//费用报销审核一审
'checkCostFour/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
3
]],
//费用报销审核二审
'checkCostFive/:check_status'
=>
[
'index/Cost/checkCost'
,
[
'method'
=>
'POST'
],
[
'check_status'
=>
4
]],
//费用报销审核三审
'getCostDetailList'
=>
[
'index/CostDetail/getCostDetailList'
,
[
'method'
=>
'POST|GET'
]
],
'getCostDetailListExcel'
=>
[
'index/CostDetail/getCostDetailListExcel'
,
[
'method'
=>
'POST|GET'
]
],
'getCostInfo'
=>
[
'index/CostDetail/getCostInfo'
,
[
'method'
=>
'POST|GET'
]
],
'addApplyFor'
=>
[
'index/StoreFee/addApplyFor'
,
[
'method'
=>
'POST'
]],
//新增报销申请
'editApplyFor'
=>
[
'index/StoreFee/addApplyFor'
,
[
'method'
=>
'POST'
]],
//修改报销申请
'getApplyForFeeStore'
=>
[
'index/StoreFee/getApplyForFeeStore'
,
[
'method'
=>
'GET'
]],
//获取费用承担办公室
'getStoreCostParameterList'
=>
[
'index/CostParameter/getStoreCostParameterList'
,
[
'method'
=>
'POST|GET'
]],
'getStoreCostParameterList'
=>
[
'index/CostParameter/getStoreCostParameterList'
,
[
'method'
=>
'POST|GET'
]],
]);
...
...
@@ -715,7 +715,7 @@ Route::group('task', [
'getDownVoiceParams'
=>
[
'task/PrivacyNumber/getDownVoiceParams'
,
[
'method'
=>
'post | get'
]],
//获取下载参数
'downVoiceByParams'
=>
[
'task/PrivacyNumber/downVoiceByParams'
,
[
'method'
=>
'post | get'
]],
//下载录音
'updateDownVoiceId'
=>
[
'task/PrivacyNumber/updateDownVoiceIdV2'
,
[
'method'
=>
'post | get'
]],
//更新下载数据库
'getVoiceByCallId'
=>
[
'task/PrivacyNumber/getVoiceByCallId'
,
[
'method'
=>
'post | get'
]],
//更新下载数据库
'getVoiceByCallId'
=>
[
'task/PrivacyNumber/getVoiceByCallId'
,
[
'method'
=>
'post | get'
]],
//更新下载数据库
'updateShopTask'
=>
[
'task/JobTask/updateShopTask'
,
[
'method'
=>
'post | get'
]],
//默认跟进
'updateShopImageIdTask'
=>
[
'task/JobTask/updateShopImageIdTask'
,
[
'method'
=>
'post | get'
]],
//默认图片
'image'
=>
[
'task/JobTask/image'
,
[
'method'
=>
'post | get'
]],
//压缩图片
...
...
@@ -990,17 +990,19 @@ Route::group('broker', [
'getDistrictLable'
=>
[
'api_broker/Square/getDistrictLable'
,
[
'method'
=>
'GET|POST'
]],
'delSquare'
=>
[
'api_broker/Square/delSquare'
,
[
'method'
=>
'GET|POST'
]],
'getSquareSortList'
=>
[
'api_broker/Square/getSquareSortList'
,
[
'method'
=>
'GET|POST'
]],
'getAgentDistrictId'
=>
[
'api_broker/Broker/getAgentDistrictId'
,
[
'method'
=>
'GET|POST'
]],
'getOpenList'
=>
[
'api_broker/PayLogOpen/getOpenList'
,
[
'method'
=>
'GET|POST'
]],
'openCheck'
=>
[
'api_broker/PayLogOpen/openCheck'
,
[
'method'
=>
'GET|POST'
]],
'costList'
=>
[
'api_broker/ApplyForCost/costList'
,
[
'method'
=>
'GET'
]],
//费用申请列表
'moveHouseAgent'
=>
[
'api_broker/User/moveHouseAgent'
,
[
'method'
=>
'GET|POST'
]],
//客方同步到新表
'moveHouseSiteId'
=>
[
'api_broker/User/moveHouseSiteId'
,
[
'method'
=>
'GET|POST'
]],
//站点同步到新表
'getFindShopListIsMy'
=>
[
'api_broker/FindShop/getFindShopList'
,
[
'method'
=>
'GET'
]],
//委托找铺
'checkCost'
=>
[
'api_broker/ApplyForCost/check'
,
[
'method'
=>
'POST'
]],
//费用报销审核总监
'addApplyFor'
=>
[
'api_broker/StoreFee/addApplyFor'
,
[
'method'
=>
'GET|POST'
]],
//新增报销申请
'getApplyForFeeStore'
=>
[
'api_broker/StoreFee/getApplyForFeeStore'
,
[
'method'
=>
'GET'
]],
//新增报销申请
'getAgentDistrictId'
=>
[
'api_broker/Broker/getAgentDistrictId'
,
[
'method'
=>
'GET|POST'
]],
'getOpenList'
=>
[
'api_broker/PayLogOpen/getOpenList'
,
[
'method'
=>
'GET|POST'
]],
'openCheck'
=>
[
'api_broker/PayLogOpen/openCheck'
,
[
'method'
=>
'GET|POST'
]],
'costList'
=>
[
'api_broker/ApplyForCost/costList'
,
[
'method'
=>
'GET'
]],
//费用申请列表
'moveHouseAgent'
=>
[
'api_broker/User/moveHouseAgent'
,
[
'method'
=>
'GET|POST'
]],
//客方同步到新表
'moveHouseSiteId'
=>
[
'api_broker/User/moveHouseSiteId'
,
[
'method'
=>
'GET|POST'
]],
//站点同步到新表
'getFindShopListIsMy'
=>
[
'api_broker/FindShop/getFindShopList'
,
[
'method'
=>
'GET'
]],
//委托找铺
'checkCost'
=>
[
'api_broker/ApplyForCost/check'
,
[
'method'
=>
'POST'
]],
//费用报销审核总监
'addApplyFor'
=>
[
'api_broker/StoreFee/addApplyFor'
,
[
'method'
=>
'GET|POST'
]],
//新增报销申请
'getApplyForFeeStore'
=>
[
'api_broker/StoreFee/getApplyForFeeStore'
,
[
'method'
=>
'GET'
]],
//获取门店地址
'deviceList'
=>
[
'api_broker/Broker/deviceList'
,
[
'method'
=>
'GET'
]],
//设备列表
]);
Route
::
group
(
'search'
,
[
...
...
@@ -1188,14 +1190,14 @@ Route::group('office_index', [
]);
Route
::
group
(
'office_api'
,
[
'getBroker'
=>
[
'api/OfficeBroker/index'
,
[
'method'
=>
'get'
]],
//获取当前商铺或街铺的经纪人评论信息列表
'getBroker'
=>
[
'api/OfficeBroker/index'
,
[
'method'
=>
'get'
]],
//获取当前商铺或街铺的经纪人评论信息列表
'getBrokerCity'
=>
[
'api/OfficeBroker/indexByCity'
,
[
'method'
=>
'get'
]],
//获取当前商铺或街铺的经纪人评论信息列表
'getBrokerV2'
=>
[
'api/OfficeBroker/indexV2'
,
[
'method'
=>
'get'
]],
//获取当前商铺或街铺的经纪人评论信息列表
'getBrokerV2'
=>
[
'api/OfficeBroker/indexV2'
,
[
'method'
=>
'get'
]],
//获取当前商铺或街铺的经纪人评论信息列表
'getOfficeRoomInfo'
=>
[
'api/OfficeRoom/getOfficeRoomInfo'
,
[
'method'
=>
'GET|POST'
]],
//获取房源详情
'getBuildingRoomList'
=>
[
'api/OfficeRoom/getBuildingRoomList'
,
[
'method'
=>
'GET|POST'
]],
//获取房源列表
'filtrateConditionRoom'
=>
[
'api/OfficeRoom/filtrateConditionRoom'
,
[
'method'
=>
'GET|POST'
]],
//商圈地铁
'getOfficeBuildingInfo'
=>
[
'api/OfficeBuilding/getOfficeBuildingInfo'
,
[
'method'
=>
'GET|POST'
]],
//办公楼详情
'getOfficeRoomInfo'
=>
[
'api/OfficeRoom/getOfficeRoomInfo'
,
[
'method'
=>
'GET|POST'
]],
//获取房源详情
'getBuildingRoomList'
=>
[
'api/OfficeRoom/getBuildingRoomList'
,
[
'method'
=>
'GET|POST'
]],
//获取房源列表
'filtrateConditionRoom'
=>
[
'api/OfficeRoom/filtrateConditionRoom'
,
[
'method'
=>
'GET|POST'
]],
//商圈地铁
'getOfficeBuildingInfo'
=>
[
'api/OfficeBuilding/getOfficeBuildingInfo'
,
[
'method'
=>
'GET|POST'
]],
//办公楼详情
'getOfficeBuildingInfoShare'
=>
[
'api/OfficeBuilding/getOfficeBuildingInfo'
,
[
'method'
=>
'GET|POST'
]],
//办公楼详情
]);
...
...
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