修改课程选择框分页控件

This commit is contained in:
ember 2025-04-13 03:25:20 +08:00
parent ccaa953540
commit 7fd7a5f591
9 changed files with 18 additions and 19 deletions

File diff suppressed because one or more lines are too long

2
dist/index.html vendored
View File

@ -1 +1 @@
<!doctype html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><title>NEU小站</title><script defer="defer" src="/js/chunk-vendors.2587987c.js"></script><script defer="defer" src="/js/app.299c2466.js"></script><link href="/css/app.91c3e0f8.css" rel="stylesheet"></head><body><noscript><strong>抱歉NEU小站无法在没有 JavaScript 的情况下正常工作。请启用 JavaScript 以继续。</strong></noscript><div id="app"></div></body></html> <!doctype html><html lang="zh-CN"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><title>NEU小站</title><script defer="defer" src="/js/chunk-vendors.2587987c.js"></script><script defer="defer" src="/js/app.96b20bc0.js"></script><link href="/css/app.91c3e0f8.css" rel="stylesheet"></head><body><noscript><strong>抱歉NEU小站无法在没有 JavaScript 的情况下正常工作。请启用 JavaScript 以继续。</strong></noscript><div id="app"></div></body></html>

File diff suppressed because one or more lines are too long

3
dist/js/546.be6d2c1e.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -79,15 +79,7 @@
上一页 上一页
</button> </button>
<button <span class="page-info"> {{ currentPage }} / {{ totalPages }} </span>
v-for="page in displayedPages"
:key="page"
class="page-btn"
:class="{ 'active': currentPage === page }"
@click="changePage(page)"
>
{{ page }}
</button>
<button <button
class="page-btn" class="page-btn"
@ -1574,6 +1566,7 @@ select.form-control {
justify-content: center; justify-content: center;
margin-top: 20px; margin-top: 20px;
gap: 5px; gap: 5px;
align-items: center;
} }
.page-btn { .page-btn {
@ -1613,4 +1606,10 @@ select.form-control {
gap: 12px; gap: 12px;
border-top: 1px solid #eee; border-top: 1px solid #eee;
} }
.page-info {
margin: 0 10px;
font-size: 14px;
color: #666;
}
</style> </style>