feat: 同步数据loading

This commit is contained in:
rd
2025-07-14 17:30:59 +08:00
parent ac7a8abfe3
commit aa176fd2b4
6 changed files with 42 additions and 10 deletions

View File

@ -122,7 +122,8 @@ import icon4 from '@/assets/img/media-account/icon-success.png';
const route = useRoute();
const id = route.params.id;
const dateType = route.query.type;
const dateType = route.query.type ?? 'week';
const detailData = ref({});
const showMore = ref(false);

View File

@ -21,7 +21,7 @@ import { useRouter } from 'vue-router';
const router = useRouter();
const handleBack = () => {
router.push('/media-account/dashboard');
router.go(-1);
};
</script>