Commit 294bf78b by wuqian

pod-cn订单跟踪

parent c9893ce8
...@@ -10,7 +10,7 @@ import { ...@@ -10,7 +10,7 @@ import {
ExportParams, ExportParams,
IconfirmSubmit, IconfirmSubmit,
} from '@/types/api/podCnOrder' } from '@/types/api/podCnOrder'
import { InterceptStateGroupData } from '@/types/api/podUsOrder' import { InterceptStateGroupData,ProductionClient } from '@/types/api/podUsOrder'
import axios from './axios' import axios from './axios'
import { PodMakeOrderData } from '@/types/api/podMakeOrder' import { PodMakeOrderData } from '@/types/api/podMakeOrder'
export function exportPodCnInfo(data: ExportParams) { export function exportPodCnInfo(data: ExportParams) {
...@@ -134,6 +134,11 @@ export function confirmOrderApi( ...@@ -134,6 +134,11 @@ export function confirmOrderApi(
}, },
) )
} }
export function getProductionClientApi() {
return axios.get<never, BaseRespData<ProductionClient[]>>(
'factory/podJomallOrderCn/getProductionClientList',
)
}
export function updateExceptionOrderApi(data: number[]) { export function updateExceptionOrderApi(data: number[]) {
return axios.post<never, BaseRespData<never>>( return axios.post<never, BaseRespData<never>>(
'factory/podJomallOrderCn/updateExceptionOrders', 'factory/podJomallOrderCn/updateExceptionOrders',
......
...@@ -88,6 +88,13 @@ const router = createRouter({ ...@@ -88,6 +88,13 @@ const router = createRouter({
}, },
component: () => import('@/views/order/orderTracking/index.vue'), component: () => import('@/views/order/orderTracking/index.vue'),
}, },
{
path: '/pod-cn-order/orderTracking',
meta: {
title: 'POD(CN)订单跟踪',
},
component: () => import('@/views/order/orderTracking/indexcn.vue'),
},
{ {
path: '/pod-delivery-note/list', path: '/pod-delivery-note/list',
meta: { meta: {
......
...@@ -127,10 +127,14 @@ const menu: MenuItem[] = [ ...@@ -127,10 +127,14 @@ const menu: MenuItem[] = [
id: 8, id: 8,
label: 'POD订单(US)', label: 'POD订单(US)',
}, },
{ {
index: '/pod-us-order/orderTracking', index: '/pod-cn-order/orderTracking',
id: 9, id: 9,
label: 'POD(CN)订单跟踪',
},
{
index: '/pod-us-order/orderTracking',
id: 10,
label: 'POD(US)订单跟踪', label: 'POD(US)订单跟踪',
}, },
], ],
......
...@@ -4754,7 +4754,6 @@ watch( ...@@ -4754,7 +4754,6 @@ watch(
} }
}) })
}) })
console.log(tableData.value, '@@@@', newData)
}, },
{ deep: true, immediate: true }, // 添加immediate确保初始化时执行 { deep: true, immediate: true }, // 添加immediate确保初始化时执行
) )
......
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