refactor: adjust album route and clean up imports

move album page from src/pages/goods/album to src/pages/album, update router configuration, and remove unused scss style block and import from DateSelector component
This commit is contained in:
duanshuwen
2026-05-28 07:48:32 +08:00
parent 3c177d2087
commit 2534f5e673
2 changed files with 3 additions and 7 deletions

View File

@@ -61,7 +61,3 @@ const props = defineProps({
},
});
</script>
<style scoped lang="scss">
@import "./styles/index.scss";
</style>

View File

@@ -28,9 +28,9 @@ export const routes = [
component: () => import("@/pages/goods/index.vue"),
},
{
path: "/goods/album",
name: "goods_album",
component: () => import("@/pages/goods/album/index.vue"),
path: "/album",
name: "album",
component: () => import("@/pages/album/index.vue"),
},
{
path: "/quick",