2025-04-14 02:33:18 +01:00
|
|
|
<template>
|
2025-05-29 18:02:16 +08:00
|
|
|
<section>
|
|
|
|
<common>
|
|
|
|
<template #main>
|
|
|
|
<el-card shadow="none" style="border-radius: 14px">
|
|
|
|
<div class="title">仓储 · <span style="color: rgba(37, 191, 130, 1)">查看详情</span></div>
|
|
|
|
</el-card>
|
|
|
|
</template>
|
|
|
|
</common>
|
|
|
|
</section>
|
2025-04-14 02:33:18 +01:00
|
|
|
</template>
|
2025-05-29 18:02:16 +08:00
|
|
|
<script setup>
|
2025-04-14 02:33:18 +01:00
|
|
|
import { ref, reactive, watch } from 'vue';
|
|
|
|
import { getAssetsFile } from '@/utils';
|
|
|
|
import { useRoute, useRouter } from 'vue-router';
|
2025-05-29 18:02:16 +08:00
|
|
|
import Common from '../components/common.vue';
|
2025-04-14 02:33:18 +01:00
|
|
|
|
|
|
|
const route = useRoute();
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const state = reactive({
|
|
|
|
query: {},
|
|
|
|
data: {},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|