Compare commits
2 Commits
0e5f07eaf7
...
b50804a911
Author | SHA1 | Date | |
---|---|---|---|
b50804a911 | |||
fbed6d682e |
@ -71,6 +71,8 @@
|
|||||||
"/src/plugin/announcement/form/info.vue": "InfoForm",
|
"/src/plugin/announcement/form/info.vue": "InfoForm",
|
||||||
"/src/plugin/announcement/view/info.vue": "Info",
|
"/src/plugin/announcement/view/info.vue": "Info",
|
||||||
"/src/plugin/email/view/index.vue": "Email",
|
"/src/plugin/email/view/index.vue": "Email",
|
||||||
"/src/view/order/idnex.vue": "OrderManage",
|
"/src/view/goods/index.vue": "Goods",
|
||||||
|
"/src/view/goods/article/index.vue": "Article",
|
||||||
|
"/src/view/order/index.vue": "OrderManage",
|
||||||
"/src/view/order/order/index.vue": "Order"
|
"/src/view/order/order/index.vue": "Order"
|
||||||
}
|
}
|
11
src/view/goods/article/index.vue
Normal file
11
src/view/goods/article/index.vue
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<template>
|
||||||
|
<div class="container">
|
||||||
|
文章管理
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
|
</style>
|
19
src/view/goods/index.vue
Normal file
19
src/view/goods/index.vue
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<router-view v-slot="{ Component }">
|
||||||
|
<transition mode="out-in" name="el-fade-in-linear">
|
||||||
|
<keep-alive :include="routerStore.keepAliveRouters">
|
||||||
|
<component :is="Component" />
|
||||||
|
</keep-alive>
|
||||||
|
</transition>
|
||||||
|
</router-view>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { useRouterStore } from '@/pinia/modules/router'
|
||||||
|
const routerStore = useRouterStore()
|
||||||
|
defineOptions({
|
||||||
|
name: 'goods'
|
||||||
|
})
|
||||||
|
</script>
|
Loading…
Reference in New Issue
Block a user