Bug fix
This commit is contained in:
parent
fc27201109
commit
c0f95a0485
5
package-lock.json
generated
5
package-lock.json
generated
@ -24,7 +24,6 @@
|
|||||||
"bootswatch": "4.6.2",
|
"bootswatch": "4.6.2",
|
||||||
"dayjs": "1.11.13",
|
"dayjs": "1.11.13",
|
||||||
"deepmerge": "4.3.1",
|
"deepmerge": "4.3.1",
|
||||||
"jewpms": "file:",
|
|
||||||
"pinia": "2.3.1",
|
"pinia": "2.3.1",
|
||||||
"print-js": "^1.6.0",
|
"print-js": "^1.6.0",
|
||||||
"qrcode.vue": "^3.6.0",
|
"qrcode.vue": "^3.6.0",
|
||||||
@ -8274,10 +8273,6 @@
|
|||||||
"lodash": "4.17.21"
|
"lodash": "4.17.21"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/jewpms": {
|
|
||||||
"resolved": "",
|
|
||||||
"link": true
|
|
||||||
},
|
|
||||||
"node_modules/joi": {
|
"node_modules/joi": {
|
||||||
"version": "17.13.3",
|
"version": "17.13.3",
|
||||||
"resolved": "https://registry.npmmirror.com/joi/-/joi-17.13.3.tgz",
|
"resolved": "https://registry.npmmirror.com/joi/-/joi-17.13.3.tgz",
|
||||||
|
|||||||
@ -80,8 +80,10 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const handleFilter = () => {
|
const handleFilter = (toggleFilter = true) => {
|
||||||
showFilter.value = !showFilter.value;
|
if (toggleFilter) {
|
||||||
|
showFilter.value = !showFilter.value;
|
||||||
|
}
|
||||||
page.value = 1; // 重置页码
|
page.value = 1; // 重置页码
|
||||||
handleSyncList();
|
handleSyncList();
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user