Commit f123bc31 authored by clone's avatar clone

1

parent b708a226
This diff is collapsed.
...@@ -55,4 +55,14 @@ class TLookShopUser extends Model ...@@ -55,4 +55,14 @@ class TLookShopUser extends Model
->where($condition) ->where($condition)
->count(); ->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
...@@ -640,9 +640,9 @@ Route::group('api', [ ...@@ -640,9 +640,9 @@ Route::group('api', [
'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']],
'attentionOfficeList' => [ 'api/AttentionShop/attentionOfficeList', [ 'method' => 'post | get' ] ],//关注的办公楼 'attentionOfficeList' => ['api/AttentionShop/attentionOfficeList', ['method' => 'post | get']],//关注的办公楼
'addSublet' => ['api/Sublet/addSublet', ['method' => 'post|get']], 'addSublet' => ['api/Sublet/addSublet', ['method' => 'post|get']],
...@@ -1054,6 +1054,7 @@ Route::group('broker', [ ...@@ -1054,6 +1054,7 @@ Route::group('broker', [
'getWorkLearningList' => ['api_broker/UploadWorkLearning/getWorkLearningList', ['method' => 'GET']],//保存0素质测评 1方法分析 2价值观考核图片 'getWorkLearningList' => ['api_broker/UploadWorkLearning/getWorkLearningList', ['method' => 'GET']],//保存0素质测评 1方法分析 2价值观考核图片
'subletList' => ['api_broker/Sublet/subletList', ['method' => 'GET']],//委托转铺列表 '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