修复:统一许愿树模块路径大小写

This commit is contained in:
xiao12feng8 2025-12-31 14:59:17 +08:00
parent 8345dca1a1
commit 077e4613bd
2 changed files with 5 additions and 5 deletions

View File

@ -37,26 +37,26 @@ const wishtreeManageRouter = {
}, },
{ {
path: 'tree', path: 'tree',
component: () => import('@/views/wishtree/tree/index'), component: () => import('@/views/wishTree/tree/index'),
name: 'WishTreeList', name: 'WishTreeList',
meta: { title: '许愿树列表' }, meta: { title: '许愿树列表' },
}, },
{ {
path: 'tree/detail/:id', path: 'tree/detail/:id',
component: () => import('@/views/wishtree/tree/detail'), component: () => import('@/views/wishTree/tree/detail'),
name: 'WishTreeDetail', name: 'WishTreeDetail',
meta: { title: '许愿树详情' }, meta: { title: '许愿树详情' },
hidden: true, hidden: true,
}, },
{ {
path: 'node', path: 'node',
component: () => import('@/views/wishtree/node/index'), component: () => import('@/views/wishTree/node/index'),
name: 'WishTreeNode', name: 'WishTreeNode',
meta: { title: '节点管理' }, meta: { title: '节点管理' },
}, },
{ {
path: 'message', path: 'message',
component: () => import('@/views/wishtree/message/index'), component: () => import('@/views/wishTree/message/index'),
name: 'WishTreeMessage', name: 'WishTreeMessage',
meta: { title: '留言管理' }, meta: { title: '留言管理' },
}, },

View File

@ -74,7 +74,7 @@
</template> </template>
<script> <script>
import { wishList, wishAudit, wishDelete, festivalList } from '@/api/wishTree'; import { wishList, wishAudit, wishDelete, festivalList } from '@/api/wishtree';
export default { export default {
name: 'WishtreeWish', name: 'WishtreeWish',