Merge pull request 'fix/suspiciousSort' (#152) from fix/suspiciousSort into test

Reviewed-on: #152
pull/157/head
raoyongjun 1 year ago
commit e9b26e8334

@ -600,7 +600,10 @@ watch(() => show.value,
watch(() => pagination.pageNo,
(newVal) => {
(newVal, oldVal) => {
if(newVal == oldVal) {
return
}
if((newVal == 1 || newVal == 2) && canloadMore) {
setTimeout(() => {
nextTick(() => {

Loading…
Cancel
Save