This commit is contained in:
zk
2024-05-17 16:10:51 +08:00
parent ce2b8f5837
commit 7444e6ff75
18 changed files with 125 additions and 76 deletions
+2 -1
View File
@@ -43,6 +43,7 @@
setTimeout(() => {
setSpin(false);
}, 1000);
getList();
}
onMounted(() => {
@@ -54,7 +55,7 @@
async function getList() {
setSpin(true);
try {
const { code, result } = (await getDetail({ dataType: props.setting.dataType })) || {};
const { code, result } = (await getDetail({ dataType: props.setting.dataType, condition: selectIndex.value })) || {};
setSpin(!spinning.value);
if (code != 200) {
return;