Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qinjianhui
factory_front
Commits
e90edaec
Commit
e90edaec
authored
Aug 29, 2025
by
zhuzhequan
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
2c0cf812
01458b31
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
75 additions
and
8 deletions
+75
-8
src/api/podUsOrder.ts
+17
-5
src/types/api/podCnOrder.ts
+2
-1
src/types/api/podUsOrder.ts
+1
-0
src/views/order/orderTracking/index.vue
+11
-1
src/views/order/podCN/index.vue
+44
-1
src/views/order/podUs/index.vue
+0
-0
No files found.
src/api/podUsOrder.ts
View file @
e90edaec
...
...
@@ -370,9 +370,13 @@ export function updateSelfLogistics(params: {
}
// 更改物流
export
function
composingDesignImages
(
data
:
number
[],
type
:
string
)
{
export
function
composingDesignImages
(
data
:
number
[],
type
?:
string
,
templateWidth
?:
number
,
)
{
return
axios
.
post
<
never
,
BaseRespData
<
never
>>
(
`factory/podJomallOrderUs/composingDesignImages?type=
${
type
}
`
,
`factory/podJomallOrderUs/composingDesignImages?type=
${
type
}
&templateWidth=
${
templateWidth
}
`
,
data
,
)
}
...
...
@@ -436,10 +440,14 @@ export function toOutOfStockApi(ids: number[]) {
}
// 排单完成
export
function
arrangeFinishApi
(
ids
:
number
[])
{
export
function
arrangeFinishApi
(
params
:
{
productIdList
:
number
[]
templateWidth
?:
number
type
?:
string
})
{
return
axios
.
post
<
never
,
BaseRespData
<
never
>>
(
`factory/podJomallOrderProductUs/arrangeFinish`
,
id
s
,
param
s
,
)
}
...
...
@@ -482,7 +490,11 @@ export function batchDownloadDeleteApi(params: { ids?: string }) {
}
// 批量下载 重新排版
export
function
batchDownloadRecomposingApi
(
params
:
{
id
:
number
})
{
export
function
batchDownloadRecomposingApi
(
params
:
{
id
:
number
type
?:
string
templateWidth
?:
number
})
{
return
axios
.
get
<
never
,
BaseRespData
<
never
>>
(
`factory/podBatchDownload/reComposingDesignImages`
,
{
...
...
src/types/api/podCnOrder.ts
View file @
e90edaec
...
...
@@ -15,7 +15,8 @@ export interface ExportParams extends SearchForm {
export
interface
SearchForm
{
timeType
?:
number
|
null
shopNumber
?:
string
shipmentType
?:
string
shipmentType
?:
string
|
number
replaceShipment
?:
string
|
number
userMark
?:
string
processNumber
?:
string
trackingNumber
?:
string
...
...
src/types/api/podUsOrder.ts
View file @
e90edaec
...
...
@@ -33,6 +33,7 @@ export interface SearchForm {
supplierProductNo
?:
string
batchArrangeNumber
?:
string
craftCode
?:
string
craftCodeArr
?:
string
[]
thirdStockSku
?:
string
interceptStatus
?:
number
|
string
trackRegisterSelect
?:
string
|
number
...
...
src/views/order/orderTracking/index.vue
View file @
e90edaec
...
...
@@ -493,7 +493,17 @@ const getOrderListFn = async () => {
const
{
currentPage
,
pageSize
}
=
pagination
.
value
try
{
const
{
data
}
=
await
getOrderList
(
{
...
searchForm
.
value
},
{
...
searchForm
.
value
,
startTime
:
timeRange
.
value
&&
timeRange
.
value
.
length
>
0
?
timeRange
.
value
[
0
]
:
null
,
endTime
:
timeRange
.
value
&&
timeRange
.
value
.
length
>
0
?
timeRange
.
value
[
1
]
:
null
,
},
currentPage
,
pageSize
,
)
...
...
src/views/order/podCN/index.vue
View file @
e90edaec
...
...
@@ -221,7 +221,46 @@
style=
"width: 150px"
></ElInput>
</ElFormItem>
<ElFormItem
label=
"物流类型"
>
<ElFormItem
label=
"是否代发"
>
<ElSelect
v-model=
"searchForm.replaceShipment"
placeholder=
"是否代发"
clearable
:teleported=
"false"
style=
"width: 150px"
@
change=
"changeReplaceShipment"
>
<ElOption
v-for=
"(item, index) in ['不代发', '代发']"
:key=
"index"
:value=
"index"
:label=
"item"
></ElOption>
</ElSelect>
</ElFormItem>
<ElFormItem
v-if=
"searchForm.replaceShipment === 0"
label=
"物流类型"
>
<ElSelect
v-model=
"searchForm.shipmentType"
placeholder=
"物流类型"
clearable
:teleported=
"false"
style=
"width: 150px"
>
<ElOption
v-for=
"(item, index) in ['自提', '快递']"
:key=
"index"
:value=
"index"
:label=
"item"
></ElOption>
</ElSelect>
</ElFormItem>
<ElFormItem
v-if=
"searchForm.replaceShipment === 1"
label=
"物流类型"
>
<ElSelect
v-model=
"searchForm.shipmentType"
placeholder=
"物流类型"
...
...
@@ -2299,6 +2338,7 @@ const detailData = ref({})
const
[
searchForm
,
resetSearchForm
]
=
useValue
<
SearchForm
>
({
timeType
:
1
,
shopNumber
:
''
,
replaceShipment
:
''
,
shipmentType
:
''
,
userMark
:
''
,
processNumber
:
''
,
...
...
@@ -2579,6 +2619,9 @@ const updateOrder = async () => {
loading
.
close
()
}
}
const
changeReplaceShipment
=
()
=>
{
searchForm
.
value
.
shipmentType
=
''
}
const
assignOrder
=
async
()
=>
{
if
(
selection
.
value
.
length
===
0
)
{
return
ElMessage
.
warning
(
'请选择数据'
)
...
...
src/views/order/podUs/index.vue
View file @
e90edaec
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment