Skip to content

Commit

Permalink
Merge pull request Anankke#8 from xcxnig/master
Browse files Browse the repository at this point in the history
修复易付通订单记录显示错误
  • Loading branch information
NimaQu authored Mar 19, 2018
2 parents d0ff122 + 0adb044 commit 2d4f915
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions public/theme/material/css/project.css
Original file line number Diff line number Diff line change
Expand Up @@ -260,3 +260,7 @@ body {
.ui-tab {
margin-top: 10px;
}

.pagination {
display:none;
}
4 changes: 2 additions & 2 deletions resources/views/material/admin/yftOrder.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@
if (currentPage == 1 || currentPage == ""){
$("#pre").removeAttr('onclick');
}else {
window.location.href = "/admin/yftOrder?page=" + (currentPage - 1);
window.location.href = "/admin/yftOrder?page=" + {$currentPage -1};
}
}else if ("next" == type){
if (currentPage == countPage){
$("#pre").removeAttr('onclick');
}else {
window.location.href = "/admin/yftOrder?page=" + (currentPage + 1);
window.location.href = "/admin/yftOrder?page=" + {$currentPage -1};
}
}else if ("end" == type){
if (countPage == currentPage){
Expand Down

0 comments on commit 2d4f915

Please sign in to comment.