Commit 0f60ccb1 authored by agping's avatar agping

日报修改

parent dae21763
...@@ -77,6 +77,19 @@ class PerformanceReport extends Basic ...@@ -77,6 +77,19 @@ class PerformanceReport extends Basic
$data['total'] = $res_total; $data['total'] = $res_total;
return $this->response("200", "成功",$data); return $this->response("200", "成功",$data);
} }
public function weekAchievementsReportList()
{
if (!$this->request->isAjax()) {
return view('achievements_report/week-achievements-report');
}
}
public function dayAchievementsReportList()
{
if (!$this->request->isAjax()) {
return view('achievements_report/day-achievements-report');//执行view方法 找view文件件夹下 相对应的html文件
}
}
......
...@@ -296,8 +296,8 @@ Route::group('index', [ ...@@ -296,8 +296,8 @@ Route::group('index', [
'performancesubsidiaryList' => [ 'index/PerformanceSubsidiary/performancesubsidiaryList', [ 'method' => 'POST|GET' ] ],//业绩明细liu 'performancesubsidiaryList' => [ 'index/PerformanceSubsidiary/performancesubsidiaryList', [ 'method' => 'POST|GET' ] ],//业绩明细liu
'myCollectionUserList' => [ 'index/myCollectionUser/myCollectionUserList', [ 'method' => 'POST|GET' ] ],//我收藏的客户liu 'myCollectionUserList' => [ 'index/myCollectionUser/myCollectionUserList', [ 'method' => 'POST|GET' ] ],//我收藏的客户liu
'myCollectionShopList' => [ 'index/myCollectionShop/myCollectionShopList', [ 'method' => 'POST|GET' ] ],//我收藏的客户liu 'myCollectionShopList' => [ 'index/myCollectionShop/myCollectionShopList', [ 'method' => 'POST|GET' ] ],//我收藏的客户liu
'dayAchievementsReport' => [ 'index/dayAchievementsReport/dayAchievementsReportList', [ 'method' => 'POST|GET' ] ],//日报liu 'dayAchievementsReport' => [ 'index/PerformanceReport/dayAchievementsReportList', [ 'method' => 'POST|GET' ] ],//日报liu
'weekAchievementsReport' => [ 'index/weekAchievementsReport/weekAchievementsReportList', [ 'method' => 'POST|GET' ] ],//周报liu 'weekAchievementsReport' => [ 'index/PerformanceReport/weekAchievementsReportList', [ 'method' => 'POST|GET' ] ],//周报liu
//‘页面的地址’ =》 index/控制器名称/使用的方法 //‘页面的地址’ =》 index/控制器名称/使用的方法
'inviteStatistics' => [ 'index/InviteStatistics/inviteStatisticsList', [ 'method' => 'POST|GET' ] ],//邀请注册liu 'inviteStatistics' => [ 'index/InviteStatistics/inviteStatisticsList', [ 'method' => 'POST|GET' ] ],//邀请注册liu
'operationalData' => [ 'index/OperationalData/operationalDataList', [ 'method' => 'POST|GET' ] ],//运营数据统计liu 'operationalData' => [ 'index/OperationalData/operationalDataList', [ 'method' => 'POST|GET' ] ],//运营数据统计liu
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment