mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 07:03:53 +08:00
修复参数名不匹配导致的翻页错误
This commit is contained in:
@@ -173,8 +173,8 @@ export default {
|
||||
fetchFirmwareList() {
|
||||
this.loading = true;
|
||||
const params = {
|
||||
pageNum: this.currentPage,
|
||||
pageSize: this.pageSize,
|
||||
page: this.currentPage,
|
||||
limit: this.pageSize,
|
||||
firmwareName: this.searchName || "",
|
||||
orderField: "create_date",
|
||||
order: "desc"
|
||||
|
||||
@@ -211,8 +211,8 @@ export default {
|
||||
fetchVoiceCloneList() {
|
||||
this.loading = true;
|
||||
const params = {
|
||||
pageNum: this.currentPage,
|
||||
pageSize: this.pageSize,
|
||||
page: this.currentPage,
|
||||
limit: this.pageSize,
|
||||
name: this.searchName || "",
|
||||
orderField: "create_date",
|
||||
order: "desc"
|
||||
|
||||
@@ -159,8 +159,8 @@ export default {
|
||||
fetchVoiceCloneList() {
|
||||
this.loading = true;
|
||||
const params = {
|
||||
pageNum: this.currentPage,
|
||||
pageSize: this.pageSize,
|
||||
page: this.currentPage,
|
||||
limit: this.pageSize,
|
||||
name: this.searchName || "",
|
||||
orderField: "create_date",
|
||||
order: "desc"
|
||||
|
||||
Reference in New Issue
Block a user