Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
上
上药订单生命周期升级
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sph
上药订单生命周期升级
Commits
1cb9ed90
Commit
1cb9ed90
authored
Mar 12, 2021
by
xiejb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
路由跳转刷新
parent
06c5bd12
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
6 deletions
+15
-6
src/components/SearchInClient.vue
src/components/SearchInClient.vue
+1
-1
src/router/myInvoice/index.js
src/router/myInvoice/index.js
+3
-2
src/router/myOrder/index.js
src/router/myOrder/index.js
+2
-1
src/views/myOrder/detail/orderDetail.vue
src/views/myOrder/detail/orderDetail.vue
+2
-2
src/views/myOrder/index.vue
src/views/myOrder/index.vue
+7
-0
No files found.
src/components/SearchInClient.vue
View file @
1cb9ed90
...
...
@@ -6,7 +6,7 @@
position=
"right"
get-container=
"body"
>
<div
class=
"title-layout font-bold font-16"
>
供应商
</div>
<div
class=
"title-layout font-bold font-16"
>
客户
</div>
<van-search
v-model=
"keywords"
placeholder=
"请输入编码或名称"
...
...
src/router/myInvoice/index.js
View file @
1cb9ed90
...
...
@@ -3,8 +3,9 @@ const myInvoice = [
path
:
'
/myInvoice
'
,
name
:
'
myInvoice
'
,
meta
:
{
title
:
'
我的订单
'
,
auth
:
false
title
:
'
发票
'
,
auth
:
false
,
keepAlive
:
true
},
component
:
resolve
=>
require
([
'
@/views/myInvoice
'
],
resolve
)
},
...
...
src/router/myOrder/index.js
View file @
1cb9ed90
...
...
@@ -4,7 +4,8 @@ const myOrder = [
name
:
'
myOrder
'
,
meta
:
{
title
:
'
我的订单
'
,
auth
:
false
auth
:
false
,
keepAlive
:
true
},
component
:
resolve
=>
require
([
'
@/views/myOrder
'
],
resolve
)
},
...
...
src/views/myOrder/detail/orderDetail.vue
View file @
1cb9ed90
...
...
@@ -97,8 +97,8 @@ export default {
show
:
true
,
leftArrow
:
true
,
rightIcon
:
false
,
title
:
''
,
leftText
:
'
订单详情
'
,
title
:
'
订单详情
'
,
leftText
:
''
,
leftClick
:
this
.
onBrowserBack
,
rightClick
:
null
})
...
...
src/views/myOrder/index.vue
View file @
1cb9ed90
...
...
@@ -106,6 +106,7 @@ export default {
break
case
model
.
actionType
===
'
logistics
'
:
// 查看物流
this
.
openPager
(
'
logisticsDetail
'
)
break
case
model
.
actionType
===
'
clearance
'
:
// 清货单
...
...
@@ -117,6 +118,12 @@ export default {
break
}
},
openPager
(
path
)
{
this
.
$router
.
push
({
path
:
path
,
query
:
this
.
$store
.
state
.
linkInfo
})
},
// 查看订单详情
gotoOrderDetail
(
model
)
{
this
.
$router
.
push
({
...
...
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