前端积分分页模块名称修正

feat/task1-c-wallet
Devil 2020-11-27 14:14:54 +08:00
parent 55602b34bf
commit d74f10e158
2 changed files with 6 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class UserIntegral extends Common
'total' => $total,
'where' => $this->data_request,
'page' => $this->page,
'url' => MyUrl('admin/userintegral/index'),
'url' => MyUrl('index/userintegral/index'),
];
$page = new \base\Page($page_params);

5
public/nginx.htaccess Normal file
View File

@ -0,0 +1,5 @@
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
}
}