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