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
0962340d
Commit
0962340d
authored
Jul 09, 2025
by
linjinhong
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev'
parents
98ccf145
5d1559bf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
14 deletions
+23
-14
public/files/logisticsZoning.xlsx
+0
-0
src/types/api/podOrder.ts
+1
-0
src/views/order/pod/index.vue
+22
-13
src/views/order/podUs/index.vue
+0
-1
No files found.
public/files/logisticsZoning.xlsx
View file @
0962340d
No preview for this file type
src/types/api/podOrder.ts
View file @
0962340d
...
...
@@ -21,6 +21,7 @@ export interface SearchForm {
endTime
?:
string
|
null
internalMemo
?:
string
productionFileId
?:
string
interceptedStatus
?:
boolean
}
export
interface
CardOrderData
{
id
:
number
...
...
src/views/order/pod/index.vue
View file @
0962340d
...
...
@@ -249,6 +249,7 @@
'WAIT_SHIPMENT',
'TO_BE_REPLENISHMENT',
'INVALID',
'INTERCEPTED',
].includes(status)
"
>
...
...
@@ -1460,20 +1461,27 @@ const CardOrderList = ref<(PodProductList | CardOrderData)[]>([])
const
loadCardList
=
async
()
=>
{
loading
.
value
=
true
try
{
const
params
=
{
...
searchForm
.
value
,
timeType
:
searchForm
.
value
.
timeType
,
startTime
:
timeRange
.
value
&&
timeRange
.
value
.
length
>
0
?
timeRange
.
value
[
0
]
:
null
,
endTime
:
timeRange
.
value
&&
timeRange
.
value
.
length
>
0
?
timeRange
.
value
[
1
]
:
null
,
}
if
(
status
.
value
===
'INTERCEPTED'
)
{
params
.
interceptedStatus
=
true
}
else
{
params
.
status
=
status
.
value
}
const
res
=
await
getCardOrderList
(
{
...
searchForm
.
value
,
status
:
status
.
value
,
timeType
:
searchForm
.
value
.
timeType
,
startTime
:
timeRange
.
value
&&
timeRange
.
value
.
length
>
0
?
timeRange
.
value
[
0
]
:
null
,
endTime
:
timeRange
.
value
&&
timeRange
.
value
.
length
>
0
?
timeRange
.
value
[
1
]
:
null
,
}
,
params
,
currentPage
.
value
,
pageSize
.
value
,
)
...
...
@@ -1641,6 +1649,7 @@ const loadDiffList = async () => {
'TO_BE_REPLENISHMENT'
,
'TO_BE_CONFIRMED'
,
'INVALID'
,
'INTERCEPTED'
,
].
includes
(
status
.
value
)
)
{
await
loadCardList
()
...
...
src/views/order/podUs/index.vue
View file @
0962340d
...
...
@@ -1944,7 +1944,6 @@ const resultRefs = ref<InstanceType<typeof ResultInfo> | null>(null)
const
confirmDialogShow
=
ref
(
false
)
const
tifDownloadLoading
=
ref
(
false
)
const
pngDownloadLoading
=
ref
(
false
)
// const reComposingLoading = ref(false)
const
isChangeWay
=
ref
(
false
)
const
confirmData
=
ref
([])
const
logisticsWayData
=
ref
([])
...
...
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