Commit f123bc31 authored by clone's avatar clone

1

parent b708a226
This diff is collapsed.
......@@ -55,4 +55,14 @@ class TLookShopUser extends Model
->where($condition)
->count();
}
public function getLogList($condition, $field, $pageNo, $pageSize)
{
return $this->db_
->field($field)
->where($condition)
->page($pageNo)
->limit($pageSize)
->order("id desc")
->select();
}
}
\ No newline at end of file
......@@ -571,9 +571,9 @@ Route::group('index', [
'DailyUncommittedList' => ['index/DailyUncommitted/DailyUncommittedList', ['method' => 'POST|GET']],
'selectDailyUncommitted' => ['index/DailyUncommitted/selectDailyUncommitted', ['method' => 'POST|GET']],
'methodOfAnalysis' => ['index/WorkLearning/methodOfAnalysis', ['method' => 'GET']], //方法分析
'qualityAssessment' => ['index/WorkLearning/qualityAssessment', ['method' => 'GET']], //素质测评
'valueAssessment' => ['index/WorkLearning/valueAssessment', ['method' => 'GET']], //价值观考核
'methodOfAnalysis' => ['index/WorkLearning/methodOfAnalysis', ['method' => 'GET']], //方法分析
'qualityAssessment' => ['index/WorkLearning/qualityAssessment', ['method' => 'GET']], //素质测评
'valueAssessment' => ['index/WorkLearning/valueAssessment', ['method' => 'GET']], //价值观考核
'readExcelTest' => ['index/ReadExcel/readExcelTest', ['method' => 'POST']],
......@@ -640,9 +640,9 @@ Route::group('api', [
'getTradeList' => ['api/TradeLog/getTradeList', ['method' => 'post|get']],
//AttentionShop
'addOrUpdateAttention' => [ 'api/AttentionShop/addOrUpdateAttention', [ 'method' => 'post|get' ] ],
'attentionList' => [ 'api/AttentionShop/attentionList', [ 'method' => 'post | get' ] ],
'attentionOfficeList' => [ 'api/AttentionShop/attentionOfficeList', [ 'method' => 'post | get' ] ],//关注的办公楼
'addOrUpdateAttention' => ['api/AttentionShop/addOrUpdateAttention', ['method' => 'post|get']],
'attentionList' => ['api/AttentionShop/attentionList', ['method' => 'post | get']],
'attentionOfficeList' => ['api/AttentionShop/attentionOfficeList', ['method' => 'post | get']],//关注的办公楼
'addSublet' => ['api/Sublet/addSublet', ['method' => 'post|get']],
......@@ -680,7 +680,7 @@ Route::group('api', [
'getFindShop' => ['api/FindShop/getFindShopByParams', ['method' => 'get|post']],
'getRecommendShopList' => ['api/FindShop/getRecommendShopList', ['method' => 'get|post']],
'uploadImg' => ['api/UploadImg/uploadImg', ['method' => 'POST|GET']], //图片上传
'uploadImg' => ['api/UploadImg/uploadImg', ['method' => 'POST|GET']], //图片上传
]);
......@@ -1054,6 +1054,7 @@ Route::group('broker', [
'getWorkLearningList' => ['api_broker/UploadWorkLearning/getWorkLearningList', ['method' => 'GET']],//保存0素质测评 1方法分析 2价值观考核图片
'subletList' => ['api_broker/Sublet/subletList', ['method' => 'GET']],//委托转铺列表
'getUserLookShopList' => ['api_broker/Shop/getUserLookShopList', ['method' => 'GET']],//委托转铺列表
]);
......
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