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
0
Merge Requests
0
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
e6f432ad
Commit
e6f432ad
authored
Dec 18, 2024
by
qinjianhui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 发货单明细加分页
parent
782d121a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
10 deletions
+28
-10
src/api/order.ts
+14
-8
src/styles/common.scss
+5
-2
src/types/api/billOrder.ts
+1
-0
src/types/api/deliveryNote.ts
+8
-0
src/views/AccountStatementNote.vue
+0
-0
No files found.
src/api/order.ts
View file @
e6f432ad
...
...
@@ -14,6 +14,7 @@ import {
import
{
DeliveryNoteData
,
DeliveryNoteSearchForm
,
DetailForm
,
ProductionOrder
,
ShipmentOrderDetailData
,
}
from
'@/types/api/deliveryNote'
...
...
@@ -23,6 +24,7 @@ import {
BillOrderDetailData
,
ConfirmOrderForm
,
CountStatus
,
LogList
,
}
from
'@/types/api/billOrder'
export
function
getOrderList
(
...
...
@@ -330,13 +332,17 @@ export function updateReconciliation(data: AccountStatementNote) {
)
}
export
function
getShipmentDetailsById
(
shipmentId
?:
number
)
{
return
axios
.
get
<
never
,
BaseRespData
<
BillOrderDetailData
>>
(
'reconciliation/getById'
,
export
function
getShipmentDetailsById
(
data
:
DetailForm
)
{
return
axios
.
post
<
never
,
BasePaginationData
<
BillOrderDetailData
>>
(
'reconciliation/getItemList'
,
data
,
)
}
export
function
getLogListApi
(
id
?:
number
)
{
return
axios
.
get
<
never
,
BaseRespData
<
LogList
[]
>>
(
'reconciliation/getLog'
,
{
params
:
{
id
:
shipmentId
,
},
params
:
{
id
},
},
)
}
...
...
@@ -364,7 +370,7 @@ export function confirmOrderApi(data: ConfirmOrderForm) {
export
function
rejectOrderApi
({
ids
,
description
,
pass
pass
,
}:
{
ids
:
string
pass
:
number
...
...
@@ -373,6 +379,6 @@ export function rejectOrderApi({
return
axios
.
post
<
never
,
BaseRespData
<
never
>>
(
'reconciliation/confirm'
,
{
ids
,
description
,
pass
pass
,
})
}
src/styles/common.scss
View file @
e6f432ad
...
...
@@ -106,4 +106,8 @@ img {
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
\ No newline at end of file
}
.table-wrap
{
flex
:
1
;
overflow
:
hidden
;
}
src/types/api/billOrder.ts
View file @
e6f432ad
...
...
@@ -15,6 +15,7 @@ export interface AccountStatementNoteSearchForm {
erp_status
?:
string
start_time
?:
string
end_time
?:
string
order_number
?:
string
}
export
interface
AccountStatementNote
{
create_time
?:
string
...
...
src/types/api/deliveryNote.ts
View file @
e6f432ad
...
...
@@ -182,3 +182,11 @@ export interface DbFactory {
authorize_number
?:
number
status
?:
number
}
export
interface
DetailForm
{
billNumber
?:
string
orderNumber
?:
string
subOrderNumber
?:
string
rows
?:
number
page
?:
number
infoId
?:
number
}
src/views/AccountStatementNote.vue
View file @
e6f432ad
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