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
70cbba42
Commit
70cbba42
authored
Aug 24, 2018
by
zhuwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
业绩
parent
bddcdaa6
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
354 additions
and
8 deletions
+354
-8
.DS_Store
.DS_Store
+0
-0
.DS_Store
application/.DS_Store
+0
-0
Performance.php
application/api_broker/controller/Performance.php
+209
-2
Basic.php
application/api_broker/extend/Basic.php
+3
-3
CallPhoneService.php
application/api_broker/service/CallPhoneService.php
+1
-1
PerformanceService.php
application/api_broker/service/PerformanceService.php
+62
-1
VerifyService.php
application/api_broker/service/VerifyService.php
+27
-0
GOperatingRecords.php
application/model/GOperatingRecords.php
+1
-1
OMarchInModel.php
application/model/OMarchInModel.php
+24
-0
OPayLogModel.php
application/model/OPayLogModel.php
+23
-0
route.php
application/route.php
+4
-0
No files found.
.DS_Store
View file @
70cbba42
No preview for this file type
application/.DS_Store
View file @
70cbba42
No preview for this file type
application/api_broker/controller/Performance.php
View file @
70cbba42
...
@@ -292,13 +292,13 @@ class Performance extends Basic
...
@@ -292,13 +292,13 @@ class Performance extends Basic
{
{
header
(
'Access-Control-Allow-Origin:*'
);
header
(
'Access-Control-Allow-Origin:*'
);
$params
=
$this
->
params
;
$params
=
$this
->
params
;
/*
$params = array(
$params
=
array
(
"agent_id"
=>
80
,
"agent_id"
=>
80
,
"start_time"
=>
"2018-06-12"
,
"start_time"
=>
"2018-06-12"
,
"end_time"
=>
"2018-06-19"
,
"end_time"
=>
"2018-06-19"
,
"page_no"
=>
1
,
"page_no"
=>
1
,
"page_size"
=>
15
"page_size"
=>
15
);
*/
);
$checkResult
=
$this
->
validate
(
$params
,
"PerformanceValidate.verifyOther"
);
$checkResult
=
$this
->
validate
(
$params
,
"PerformanceValidate.verifyOther"
);
if
(
true
!==
$checkResult
)
{
if
(
true
!==
$checkResult
)
{
...
@@ -460,4 +460,211 @@ class Performance extends Basic
...
@@ -460,4 +460,211 @@ class Performance extends Basic
return
$this
->
response
(
"200"
,
"success"
,
$result
[
"date"
]);
return
$this
->
response
(
"200"
,
"success"
,
$result
[
"date"
]);
}
}
}
}
//TODO 收款
/**
* 获取时间段实收数据
* @return \think\Response
*/
public
function
paylogListPcInfo
()
{
header
(
'Access-Control-Allow-Origin:*'
);
$params
=
$this
->
params
;
/* $params = array(
//"id" => 80,
//"type" => 1, //1表示个人业绩排行 2门店 3区域
//"id" => 79,
//"type" => 2, //1表示个人业绩排行 2门店 3区域
"id" => 7,
"type" => 3, //1表示个人业绩排行 2门店 3区域
"start_time" => "2018-06-12",
"end_time" => "2018-06-19",
"page_no" => 1,
"page_size" => 15
);*/
// $checkResult = $this->validate($params, "PerformanceValidate.verifyOther");
// if (true !== $checkResult) {
// return $this->response("101", $checkResult);
// }
//默认排序一周
$end_day
=
!
empty
(
$params
[
"end_time"
])
?
$params
[
"end_time"
]
:
date
(
"Y-m-d"
,
strtotime
(
"-1 day"
));
$start_day
=
!
empty
(
$params
[
"start_time"
])
?
$params
[
"start_time"
]
:
date
(
"Y-m-d"
,
strtotime
(
"-7 day"
));
$page_no
=
empty
(
$params
[
'page_no'
])
?
1
:
$params
[
'page_no'
];
$page_size
=
empty
(
$params
[
'page_size'
])
?
15
:
$params
[
'page_size'
];
$result
=
$this
->
service_
->
paylogListPcInfo
(
$params
[
"id"
],
$params
[
"type"
],
$start_day
,
$end_day
,
$page_no
,
$page_size
);
if
(
$result
[
"code"
]
==
101
)
{
return
$this
->
response
(
"101"
,
$result
[
"date"
]);
}
else
{
return
$this
->
response
(
"200"
,
"success"
,
$result
[
"date"
]);
}
}
//TODO 进场
public
function
marchInListPcInfo
()
{
header
(
'Access-Control-Allow-Origin:*'
);
$params
=
$this
->
params
;
/* $params = array(
//"id" => 80,
//"type" => 1, //1表示个人业绩排行 2门店 3区域
//"id" => 79,
//"type" => 2, //1表示个人业绩排行 2门店 3区域
"id" => 7,
"type" => 3, //1表示个人业绩排行 2门店 3区域
"start_time" => "2018-06-12",
"end_time" => "2018-06-19",
"page_no" => 1,
"page_size" => 15
);*/
// $checkResult = $this->validate($params, "PerformanceValidate.verifyOther");
// if (true !== $checkResult) {
// return $this->response("101", $checkResult);
// }
//默认排序一周
$end_day
=
!
empty
(
$params
[
"end_time"
])
?
$params
[
"end_time"
]
:
date
(
"Y-m-d"
,
strtotime
(
"-1 day"
));
$start_day
=
!
empty
(
$params
[
"start_time"
])
?
$params
[
"start_time"
]
:
date
(
"Y-m-d"
,
strtotime
(
"-7 day"
));
$page_no
=
empty
(
$params
[
'page_no'
])
?
1
:
$params
[
'page_no'
];
$page_size
=
empty
(
$params
[
'page_size'
])
?
15
:
$params
[
'page_size'
];
$result
=
$this
->
service_
->
marchInListPcInfo
(
$params
[
"id"
],
$params
[
"type"
],
$start_day
,
$end_day
,
$page_no
,
$page_size
);
if
(
$result
[
"code"
]
==
101
)
{
return
$this
->
response
(
"101"
,
$result
[
"date"
]);
}
else
{
return
$this
->
response
(
"200"
,
"success"
,
$result
[
"date"
]);
}
}
//TODO 报备
// public function followListPcInfo()
// {
// header('Access-Control-Allow-Origin:*');
// $params = $this->params;
// $params = array(
// //"id" => 80,
// //"type" => 1, //1表示个人业绩排行 2门店 3区域
//
// //"id" => 79,
// //"type" => 2, //1表示个人业绩排行 2门店 3区域
//
// "id" => 7,
// "type" => 3, //1表示个人业绩排行 2门店 3区域
//
// "start_time" => "2018-06-12",
// "end_time" => "2018-06-19",
// "page_no" => 1,
// "page_size" => 15
// );
//
//// $checkResult = $this->validate($params, "PerformanceValidate.verifyOther");
//// if (true !== $checkResult) {
//// return $this->response("101", $checkResult);
//// }
// //默认排序一周
// $end_day = !empty($params["end_time"]) ? $params["end_time"] : date("Y-m-d", strtotime("-1 day"));
// $start_day = !empty($params["start_time"]) ? $params["start_time"] : date("Y-m-d", strtotime("-7 day"));
//
// $page_no = empty($params['page_no']) ? 1 : $params['page_no'];
// $page_size = empty($params['page_size']) ? 15 : $params['page_size'];
//
// $result = $this->service_->getFollowList($params["agent_id"], $start_day, $end_day, $page_no, $page_size);
// if ($result["code"] == 101) {
// return $this->response("101", $result["date"]);
// } else {
// return $this->response("200", "success", $result["date"]);
// }
// }
// //TODO 新增商铺
// public function housingResourcePcInfo()
// {
// header('Access-Control-Allow-Origin:*');
// $params = $this->params;
// $params = array(
// //"id" => 80,
// //"type" => 1, //1表示个人业绩排行 2门店 3区域
//
// //"id" => 79,
// //"type" => 2, //1表示个人业绩排行 2门店 3区域
//
// "id" => 7,
// "type" => 3, //1表示个人业绩排行 2门店 3区域
//
// "start_time" => "2018-06-12",
// "end_time" => "2018-06-19",
// "page_no" => 1,
// "page_size" => 15
// );
//
//// $checkResult = $this->validate($params, "PerformanceValidate.verify");
//// if (true !== $checkResult) {
//// return $this->response("101", $checkResult);
//// }
// //默认排序一周
// $end_day = !empty($params["end_time"]) ? $params["end_time"] : date("Y-m-d", strtotime("-1 day"));
// $start_day = !empty($params["start_time"]) ? $params["start_time"] : date("Y-m-d", strtotime("-7 day"));
//
// $page_no = empty($params['page_no']) ? 1 : $params['page_no'];
// $page_size = empty($params['page_size']) ? 15 : $params['page_size'];
//
// $result = $this->service_->getHousingResourceList($params["type"], $params["agent_id"], $start_day, $end_day, $page_no, $page_size);
// if ($result["code"] == 101) {
// return $this->response("101", $result["date"]);
// } else {
// return $this->response("200", "success", $result["date"]);
// }
// }
// //TODO 新增客户
// public function userResourcePcInfo()
// {
// header('Access-Control-Allow-Origin:*');
// $params = $this->params;
// $params = array(
// //"id" => 80,
// //"type" => 1, //1表示个人业绩排行 2门店 3区域
//
// //"id" => 79,
// //"type" => 2, //1表示个人业绩排行 2门店 3区域
//
// "id" => 7,
// "type" => 3, //1表示个人业绩排行 2门店 3区域
//
// "start_time" => "2018-06-12",
// "end_time" => "2018-06-19",
// "page_no" => 1,
// "page_size" => 15
// );
//
//// $checkResult = $this->validate($params, "PerformanceValidate.verify");
//// if (true !== $checkResult) {
//// return $this->response("101", $checkResult);
//// }
// //默认排序一周
// $end_day = !empty($params["end_time"]) ? $params["end_time"] : date("Y-m-d", strtotime("-1 day"));
// $start_day = !empty($params["start_time"]) ? $params["start_time"] : date("Y-m-d", strtotime("-7 day"));
//
// $page_no = empty($params['page_no']) ? 1 : $params['page_no'];
// $page_size = empty($params['page_size']) ? 15 : $params['page_size'];
//
// $result = $this->service_->getUserResourceList($params["type"], $params["agent_id"], $start_day, $end_day, $page_no, $page_size);
// if ($result["code"] == 101) {
// return $this->response("101", $result["date"]);
// } else {
// return $this->response("200", "success", $result["date"]);
// }
// }
//TODO 团队人数
}
}
application/api_broker/extend/Basic.php
View file @
70cbba42
...
@@ -98,12 +98,12 @@ class Basic extends Controller
...
@@ -98,12 +98,12 @@ class Basic extends Controller
$this
->
timeStamp_
=
$result
->
timeStamp_
;
$this
->
timeStamp_
=
$result
->
timeStamp_
;
}
}
//获取默认城市
//获取默认城市
$this
->
getCity
(
$this
->
agentId
);
//
$this->getCity($this->agentId);
$this
->
city
=
"上海市"
;
$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/api_broker/service/CallPhoneService.php
View file @
70cbba42
...
@@ -455,7 +455,7 @@ class CallPhoneService
...
@@ -455,7 +455,7 @@ class CallPhoneService
* @param $status
* @param $status
* @return int|string
* @return int|string
*/
*/
public
function
getBindNum
(
$phone_a
,
$phone_b
,
$status
)
{
public
function
getBindNum
(
$phone_a
,
$phone_b
,
$status
=
1
)
{
$m_bind
=
new
BindingPhone
();
$m_bind
=
new
BindingPhone
();
return
$m_bind
->
getCallNumber
(
$phone_a
,
$phone_b
,
$status
);
return
$m_bind
->
getCallNumber
(
$phone_a
,
$phone_b
,
$status
);
}
}
...
...
application/api_broker/service/PerformanceService.php
View file @
70cbba42
...
@@ -421,6 +421,11 @@ class PerformanceService
...
@@ -421,6 +421,11 @@ class PerformanceService
$agent_ids
=
$verify
->
getAgentsByAgentId
(
$agent_id
);
$agent_ids
=
$verify
->
getAgentsByAgentId
(
$agent_id
);
$params
[
"agent_id"
]
=
array
(
"in"
,
$agent_ids
);
$params
[
"agent_id"
]
=
array
(
"in"
,
$agent_ids
);
break
;
break
;
case
3
:
$verify
=
new
VerifyService
();
$agent_ids
=
$verify
->
getAgentsByAgentId
(
$agent_id
);
$params
[
"agent_id"
]
=
array
(
"in"
,
$agent_ids
);
break
;
default
:
default
:
return
null
;
return
null
;
}
}
...
@@ -429,6 +434,30 @@ class PerformanceService
...
@@ -429,6 +434,30 @@ class PerformanceService
return
$params
;
return
$params
;
}
}
private
function
getAgentIdPcInfo
(
$id
,
$type
,
$start_time
,
$end_time
)
{
switch
(
$type
)
{
case
1
:
$params
[
"agent_id"
]
=
$id
;
break
;
case
2
:
$verify
=
new
VerifyService
();
$agent_ids
=
$verify
->
getAgentsByAgentIdPcInfo
(
$id
,
$type
);
$params
[
"agent_id"
]
=
array
(
"in"
,
$agent_ids
);
break
;
case
3
:
$verify
=
new
VerifyService
();
$agent_ids
=
$verify
->
getAgentsByAgentIdPcInfo
(
$id
,
$type
);
$params
[
"agent_id"
]
=
array
(
"in"
,
$agent_ids
);
break
;
default
:
return
null
;
}
$params
[
'create_time'
]
=
array
(
'between'
,
array
(
$start_time
.
" 00:00:00"
,
$end_time
.
" 23:59:59"
)
);
return
$params
;
}
/**
/**
* 获取房源数据
* 获取房源数据
* @param $type
* @param $type
...
@@ -517,13 +546,14 @@ class PerformanceService
...
@@ -517,13 +546,14 @@ class PerformanceService
* @param $start_time
* @param $start_time
* @param $end_time
* @param $end_time
* @param $page_no
* @param $page_no
* @param $page_size
* @param $page_size
PcInfo
* @return array|false|\PDOStatement|string|\think\Collection
* @return array|false|\PDOStatement|string|\think\Collection
*/
*/
public
function
marchInList
(
$agent_id
,
$start_time
,
$end_time
,
$page_no
,
$page_size
)
public
function
marchInList
(
$agent_id
,
$start_time
,
$end_time
,
$page_no
,
$page_size
)
{
{
$params
=
$this
->
getAgentId
(
$agent_id
,
2
,
$start_time
,
$end_time
);
$params
=
$this
->
getAgentId
(
$agent_id
,
2
,
$start_time
,
$end_time
);
dump
(
$params
);
if
(
!
$params
)
if
(
!
$params
)
return
[
"code"
=>
101
,
"date"
=>
"传入的参数错误"
];
return
[
"code"
=>
101
,
"date"
=>
"传入的参数错误"
];
$field
=
"a.id,c.user_name,c.user_phone,c.predict_see_time,b.house_title"
;
$field
=
"a.id,c.user_name,c.user_phone,c.predict_see_time,b.house_title"
;
...
@@ -535,6 +565,22 @@ class PerformanceService
...
@@ -535,6 +565,22 @@ class PerformanceService
return
[
"code"
=>
200
,
"date"
=>
$addMarchInList
];
return
[
"code"
=>
200
,
"date"
=>
$addMarchInList
];
}
}
public
function
marchInListPcInfo
(
$id
,
$type
,
$start_time
,
$end_time
,
$page_no
,
$page_size
)
{
$params
=
$this
->
getAgentIdPcInfo
(
$id
,
$type
,
$start_time
,
$end_time
);
//dump($params);
if
(
!
$params
)
return
[
"code"
=>
101
,
"date"
=>
"传入的参数错误"
];
$field
=
"a.id,c.user_name,c.user_phone,c.predict_see_time,c.report_agent_name,b.house_title,e.store_name"
;
$addMarchInList
=
$this
->
marchInModel
->
getAddMarchInListPcInfo
(
$params
,
$field
,
$page_no
,
$page_size
);
//获取图片信息
foreach
(
$addMarchInList
as
$key
=>
$val
)
{
$addMarchInList
[
$key
][
"user_phone"
]
=
preg_replace
(
'/(\d{3})\d{4}(\d{4})/'
,
'$1****$2'
,
$val
[
"user_phone"
]);
}
return
[
"code"
=>
200
,
"date"
=>
$addMarchInList
];
}
/**
/**
* 获取收款数据
* 获取收款数据
* @param $agent_id
* @param $agent_id
...
@@ -559,6 +605,21 @@ class PerformanceService
...
@@ -559,6 +605,21 @@ class PerformanceService
return
[
"code"
=>
200
,
"date"
=>
$payLogList
];
return
[
"code"
=>
200
,
"date"
=>
$payLogList
];
}
}
public
function
paylogListPcInfo
(
$id
,
$type
,
$start_time
,
$end_time
,
$page_no
,
$page_size
)
{
$params
=
$this
->
getAgentIdPcInfo
(
$id
,
$type
,
$start_time
,
$end_time
);
if
(
!
$params
)
return
[
"code"
=>
101
,
"date"
=>
"传入的参数错误"
];
$field
=
"a.id,a.create_time,a.money,a.type,a.pay_type,c.user_name,c.user_phone,c.predict_see_time,b.house_title,h.landmark"
;
$payLogList
=
$this
->
payLogModel
->
getAddPayLogListPcInfo
(
$params
,
$field
,
$page_no
,
$page_size
);
//获取图片信息
foreach
(
$payLogList
as
$key
=>
$val
)
{
$payLogList
[
$key
][
"user_phone"
]
=
preg_replace
(
'/(\d{3})\d{4}(\d{4})/'
,
'$1****$2'
,
$val
[
"user_phone"
]);
}
return
[
"code"
=>
200
,
"date"
=>
$payLogList
];
}
/**
/**
* 获取业绩数据
* 获取业绩数据
* @param $type
* @param $type
...
...
application/api_broker/service/VerifyService.php
View file @
70cbba42
...
@@ -59,6 +59,33 @@ class VerifyService
...
@@ -59,6 +59,33 @@ class VerifyService
return
null
;
return
null
;
}
}
public
function
getAgentsByAgentIdPcInfo
(
$id
,
$type
)
{
$arr_list
=
[];
switch
(
$type
)
{
case
1
:
return
$id
;
case
2
:
$arr_list
=
$this
->
agentModel
->
searchAgentsByKeyword
(
"id"
,
[
"store_id"
=>
$id
]);
break
;
case
3
:
$arr_list
=
$this
->
agentModel
->
searchAgentsByKeyword
(
"id"
,
[
"district_id"
=>
$id
]);
break
;
default
:
return
$id
;
break
;
}
$ids
=
""
;
if
(
count
(
$arr_list
)
>
0
)
{
foreach
(
$arr_list
as
$item
)
{
$ids
.=
$item
[
"id"
]
.
","
;
}
}
$ids
=
rtrim
(
$ids
,
","
);
return
$ids
;
}
/**
/**
* 获取我的案场权限人
* 获取我的案场权限人
* @param $agent_id
* @param $agent_id
...
...
application/model/GOperatingRecords.php
View file @
70cbba42
...
@@ -62,7 +62,7 @@ class GOperatingRecords extends BaseModel
...
@@ -62,7 +62,7 @@ class GOperatingRecords extends BaseModel
}
}
try
{
try
{
$data
=
$this
->
field
(
'name,remark,create_time'
)
$data
=
$this
->
field
(
'name,remark,create_time
,user_id
'
)
->
where
(
$param
)
->
where
(
$param
)
->
order
(
'create_time'
,
'desc'
)
->
order
(
'create_time'
,
'desc'
)
->
select
();
->
select
();
...
...
application/model/OMarchInModel.php
View file @
70cbba42
...
@@ -250,6 +250,30 @@ class OMarchInModel extends Model
...
@@ -250,6 +250,30 @@ class OMarchInModel extends Model
->
select
();
->
select
();
}
}
public
function
getAddMarchInListPcInfo
(
$params
,
$field
,
$page_no
,
$page_size
)
{
$where_
=
[];
if
(
isset
(
$params
[
"agent_id"
]))
{
$where_
[
"a.reception_id"
]
=
$params
[
"agent_id"
];
}
if
(
isset
(
$params
[
"create_time"
]))
{
$where_
[
"a.create_time"
]
=
$params
[
"create_time"
];
}
if
(
isset
(
$params
[
"house_ids"
]))
{
$where_
[
"b.house_id"
]
=
array
(
"in"
,
$params
[
"house_ids"
]
);
}
return
Db
::
table
(
$this
->
table
)
->
field
(
$field
)
->
alias
(
"a"
)
->
join
(
"o_order b"
,
"a.order_id = b.id"
,
"left"
)
->
join
(
"o_report c"
,
"b.f_id = c.id"
,
"left"
)
->
join
(
'a_store e'
,
'c.report_store_id = e.id'
,
'left'
)
->
where
(
$where_
)
->
limit
(
$page_size
)
->
page
(
$page_no
)
->
select
();
}
public
function
getAddMarchInOrderList
(
$field
,
$params
)
public
function
getAddMarchInOrderList
(
$field
,
$params
)
{
{
$where_
=
[];
$where_
=
[];
...
...
application/model/OPayLogModel.php
View file @
70cbba42
...
@@ -238,6 +238,29 @@ class OPayLogModel extends Model
...
@@ -238,6 +238,29 @@ class OPayLogModel extends Model
->
select
();
->
select
();
}
}
public
function
getAddPayLogListPcInfo
(
$params
,
$field
,
$page_no
,
$page_size
){
$where_
=
[];
if
(
isset
(
$params
[
"agent_id"
])){
$where_
[
"a.agent_id"
]
=
$params
[
"agent_id"
];
}
if
(
isset
(
$params
[
"create_time"
])){
$where_
[
"a.create_time"
]
=
$params
[
"create_time"
];
}
if
(
isset
(
$params
[
"house_ids"
])){
$where_
[
"b.house_id"
]
=
array
(
"in"
,
$params
[
"house_ids"
]);
}
return
Db
::
table
(
$this
->
table
)
->
field
(
$field
)
->
alias
(
"a"
)
->
join
(
"o_order b"
,
"a.order_id = b.id"
,
"left"
)
->
join
(
"g_houses h"
,
"b.house_id = h.id"
,
"left"
)
->
join
(
"o_report c"
,
"b.f_id = c.id"
,
"left"
)
->
where
(
$where_
)
->
limit
(
$page_size
)
->
page
(
$page_no
)
->
select
();
}
/**
/**
* @param $field
* @param $field
...
...
application/route.php
View file @
70cbba42
...
@@ -544,6 +544,10 @@ Route::group('broker', [
...
@@ -544,6 +544,10 @@ Route::group('broker', [
'superviseList'
=>
[
'api_broker/Performance/superviseList'
,
[
'method'
=>
'POST|GET'
]
],
//监督执行list
'superviseList'
=>
[
'api_broker/Performance/superviseList'
,
[
'method'
=>
'POST|GET'
]
],
//监督执行list
'officialReceiptsList'
=>
[
'api_broker/Performance/officialReceiptsList'
,
[
'method'
=>
'POST|GET'
]
],
//实收list
'officialReceiptsList'
=>
[
'api_broker/Performance/officialReceiptsList'
,
[
'method'
=>
'POST|GET'
]
],
//实收list
'paylogListPcInfo'
=>
[
'api_broker/Performance/paylogListPcInfo'
,
[
'method'
=>
'POST|GET'
]
],
//进场list
'marchInListPcInfo'
=>
[
'api_broker/Performance/marchInListPcInfo'
,
[
'method'
=>
'POST|GET'
]
],
//进场list
//user
//user
'returnSearchCondition'
=>
[
'api_broker/User/returnSearchCondition'
,
[
'method'
=>
'get'
]
],
//客户搜索条件
'returnSearchCondition'
=>
[
'api_broker/User/returnSearchCondition'
,
[
'method'
=>
'get'
]
],
//客户搜索条件
'searchUser'
=>
[
'api_broker/User/searchUser'
,
[
'method'
=>
'get|post'
]
],
//客户搜索
'searchUser'
=>
[
'api_broker/User/searchUser'
,
[
'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