This commit is contained in:
yangduo 2024-08-19 19:31:43 +08:00
parent 03c8bf9af4
commit 52c69011dd

View File

@ -313,8 +313,10 @@ export default {
if (this.playerList === undefined || this.playerList.length <= 0) {
this.emptytext = 'No data'
}
this.cursor = response.page.next_cursor
this.remaining = response.page.remaining
if (response.page !== undefined) {
this.cursor = response.page.next_cursor
this.remaining = response.page.remaining
}
this.$message({
message: '收到回应',
type: 'success',