Commit 9a50b196 by zhuzhequan

podcn 流程修改

parent 786c61ea
......@@ -287,6 +287,14 @@ export function getSuperPodBoxListApi(factoryNo: number | string) {
)
}
// 超级播种墙配货 获取pod订单拣货箱子详情
export function printNormalPdf(ids: string) {
return axios.get<never, BaseRespData<string>>(
'factory/podJomallOrderCn/printPickPdf',
{ params: { ids } },
)
}
// 播种墙配货 打单完成
export function submitInspectionApi(
data: { id: number; version?: number }[],
......
<template>
<template v-if="col.subs?.length">
<ElTableColumn
show-overflow-tooltip
header-align="center"
:label="col.label"
:align="col.align"
......@@ -31,7 +32,7 @@
</template>
</ElTableColumn>
</template>
<ElTableColumn v-else header-align="center" v-bind="col">
<ElTableColumn show-overflow-tooltip v-else header-align="center" v-bind="col">
<template #header="{ column, $index }">
<component
:is="() => col.headerRender(column, $index)"
......
......@@ -32,6 +32,7 @@
></ElTableColumn>
<template v-for="column in columns" :key="column.key">
<ElTableColumn
show-overflow-tooltip
v-if="column.type === 'expand'"
v-bind="column"
header-align="center"
......
......@@ -15,6 +15,7 @@ export interface ExportParams extends SearchForm {
export interface SearchForm {
timeType?: number | null
shopNumber?: string
productMark?: string
shipmentType?: string | number
replaceShipment?: string | number
userMark?: string
......@@ -97,6 +98,7 @@ export interface PodCnOrderListData {
export interface ProductList {
id: number
podJomallOrderCnId: number
productMark?: string
thirdSubOrderNumber?: string
thirdStockSku?: string
factorySubOrderNumber?: string
......
......@@ -50,7 +50,7 @@ export interface ProductList {
variantImage?: string
podJomallUsNo?: string
podJomallCnNo?: string
previewImgs?: { sort: string | number; title: string; url: string }[]
previewImgs?: { sort?: string | number; title?: string; url: string }[]
}
export interface LogisticBill {
......
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