Commit 731d8d3c by qinjianhui

feat: 添加 new 工厂订单菜单

parent 652bd4a8
...@@ -99,6 +99,14 @@ const router = createRouter({ ...@@ -99,6 +99,14 @@ const router = createRouter({
import('@/views/order/podUsSchedulingRules/index.vue'), import('@/views/order/podUsSchedulingRules/index.vue'),
}, },
{ {
path: '/order/factory-order-new',
meta: {
title: '工厂订单(NEW)',
},
component: () =>
import('@/views/order/factoryOrderNew/index.vue'),
},
{
path: '/pod-cn-order/orderTracking', path: '/pod-cn-order/orderTracking',
meta: { meta: {
title: 'POD(CN)订单跟踪', title: 'POD(CN)订单跟踪',
......
...@@ -146,6 +146,11 @@ const menu: MenuItem[] = [ ...@@ -146,6 +146,11 @@ const menu: MenuItem[] = [
id: 11, id: 11,
label: 'POD(US)排单规则', label: 'POD(US)排单规则',
}, },
{
index: '/order/factory-order-new',
id: 12,
label: '工厂订单(NEW)',
},
], ],
}, },
{ {
......
<template>
<div class="card flex-column h-100 overflow-hidden">
</div>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
.header-title {
font-size: 16px;
font-weight: 600;
padding: 12px 16px;
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment