Update fill.vue

This commit is contained in:
huxuejian 2026-09-04 16:52:36 +08:00
parent 69d1d54668
commit bdf4c4bc13

View File

@ -109,7 +109,12 @@ async function submit({ list, score }) {
})
if (res && res.success) {
await toast('提交成功');
const pages = getCurrentPages();
if (pages.length > 1) {
uni.navigateBack();
} else {
uni.switchTab({ url: '/pages/home/home' })
}
}
}