This commit is contained in:
A1300399510
2023-08-02 18:07:37 +08:00
parent 37e359b6d9
commit 966ed02546
3 changed files with 15 additions and 7 deletions

View File

@@ -126,9 +126,16 @@ const handleTransfer = (data) => {
for (const key in data.value) {
if (data.value[key] != pitchValue[key]) {
pitchValue = { ...data.value }
page = 1
list.value = []
getData()
for (const key in pitchValue) {
if (pitchValue[key]) {
page = 1
list.value = []
getData()
break
}
}
}
}
}