Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Q
qk_admin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
quanku
qk_admin
Commits
629b75b6
Commit
629b75b6
authored
May 21, 2024
by
yaya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:添加中转单详情
parent
bd186301
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
346 additions
and
3 deletions
+346
-3
src/api/business/order.js
src/api/business/order.js
+7
-0
src/router/index.js
src/router/index.js
+12
-0
src/views/order/components/ReturnLogisticIdentifyDialog.vue
src/views/order/components/ReturnLogisticIdentifyDialog.vue
+1
-2
src/views/order/transferOrderDetail.vue
src/views/order/transferOrderDetail.vue
+325
-0
src/views/order/transferOrderView.vue
src/views/order/transferOrderView.vue
+1
-1
No files found.
src/api/business/order.js
View file @
629b75b6
...
...
@@ -59,4 +59,11 @@ export function requestIdentifySendBack(data) {
data
})
}
export
function
requestTransferDetail
(
data
)
{
return
request
({
url
:
'
/identifyOrder/findDetail
'
,
method
:
'
post
'
,
data
})
}
src/router/index.js
View file @
629b75b6
...
...
@@ -535,6 +535,18 @@ export const asyncRouterMap = [
noCache
:
true
,
keepAlive
:
true
}
},
{
path
:
'
transferOrderDetail
'
,
component
:
()
=>
import
(
'
@/views/order/transferOrderDetail
'
),
name
:
'
transferOrderDetail
'
,
meta
:
{
perms
:
[],
title
:
'
订单详情
'
,
icon
:
'
list
'
,
noCache
:
true
,
keepAlive
:
true
},
hidden
:
true
}
]
},
...
...
src/views/order/components/ReturnLogisticIdentifyDialog.vue
View file @
629b75b6
...
...
@@ -8,7 +8,7 @@
title=
"寄出快递"
>
<el-form
ref=
"imageValue"
:model=
"logisticForm"
:rules=
"logisticRules"
>
<el-form-item
label=
"物流公司"
label-width=
"100px"
prop=
"outLogisticsCode"
>
<el-select
v-model=
"logisticForm.outLogisticsCode"
placeholder=
"请选择物流公司"
>
<el-select
v-model=
"logisticForm.outLogisticsCode"
placeholder=
"请选择物流公司"
style=
"width: 240px;margin-right: 10px;margin-bottom: 10px"
>
<el-option
v-for=
"item in logisticList"
:key=
"item.code"
...
...
@@ -20,7 +20,6 @@
<el-input
v-model=
"logisticForm.outWaybill"
clearable
size=
"mini"
class=
"filter-item"
style=
"width: 240px;margin-right: 10px"
placeholder=
"请输入快递单号"
/>
...
...
src/views/order/transferOrderDetail.vue
0 → 100644
View file @
629b75b6
This diff is collapsed.
Click to expand it.
src/views/order/transferOrderView.vue
View file @
629b75b6
...
...
@@ -213,7 +213,7 @@ export default {
* @param item
*/
handleToDetail
(
item
)
{
this
.
$router
.
push
({
path
:
'
/order/transferOrderDetail
'
,
query
:
{
distributionOrderId
:
item
.
distributionOrderId
}}
)
}
,
/**
* 收货
...
...
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