Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xoadoPlatform
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yaohui
xoadoPlatform
Commits
37ac2e2c
Commit
37ac2e2c
authored
Apr 29, 2024
by
吕海涛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
高速优先
parent
68590815
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
6 deletions
+10
-6
judgeType.js
src/mixins/judgeType.js
+1
-1
index.vue
src/views/business/orderManagement/index.vue
+4
-2
index.vue
src/views/business/waybillManagement/index.vue
+5
-3
No files found.
src/mixins/judgeType.js
View file @
37ac2e2c
...
...
@@ -148,7 +148,7 @@ export default {
return
'航旅纵横'
case
4
:
return
'
自营司机(面对面下单)
'
return
'
司机录单
'
case
5
:
return
'滴滴出行'
...
...
src/views/business/orderManagement/index.vue
View file @
37ac2e2c
...
...
@@ -761,7 +761,7 @@ export default {
{
prop
:
"orderSource"
,
name
:
"订单来源"
,
attrs
:
{
width
:
18
0
,
showOverflowTooltip
:
true
},
attrs
:
{
width
:
22
0
,
showOverflowTooltip
:
true
},
id
:
18
,
disabled
:
true
,
type
:
"copyAndMore"
,
...
...
@@ -1622,7 +1622,9 @@ export default {
sourcefun
({
data
})
{
let
code
=
""
;
let
orderSourcesText
=
this
.
orderSourcesNew
(
data
.
orderSource
);
code
=
`<div>
${
orderSourcesText
}
</div> `
;
let
routePlanningTypeText
=
!!
data
.
routePlanningType
?
'<el-tag effect="dark" class="el-tag el-tag--danger el-tag--mini el-tag--dark" style="margin-left: 0.5em">高速优先</el-tag>'
:
''
code
=
`<div>
${
orderSourcesText
}
${
routePlanningTypeText
}
</div> `
;
return
code
;
},
passengerInfo
({
data
})
{
...
...
src/views/business/waybillManagement/index.vue
View file @
37ac2e2c
...
...
@@ -1598,7 +1598,8 @@ export default {
sourcefun
({
data
})
{
let
code
=
''
let
orderSourcesText
=
this
.
orderSourcesNew
(
data
.
orderSource
)
code
=
`<div>
${
orderSourcesText
}
</div>`
let
routePlanningTypeText
=
!!
data
.
routePlanningType
?
'<el-tag effect="dark" class="el-tag el-tag--danger el-tag--mini el-tag--dark" style="margin-left: 0.5em">高速优先</el-tag>'
:
''
code
=
`<div>
${
orderSourcesText
}
${
routePlanningTypeText
}
</div> `
;
return
code
},
passengerInfo
({
data
})
{
...
...
@@ -1667,11 +1668,12 @@ export default {
return
code
},
orderSourcefun
({
data
})
{
// return data.detail.orderSource
let
code
=
''
let
orderSourcesText
=
this
.
orderSourcesNew
(
data
.
detail
.
orderSource
)
code
=
`<div>
${
orderSourcesText
}
</div>`
let
routePlanningTypeText
=
!
data
.
detail
.
routePlanningType
?
'<el-tag effect="dark" class="el-tag el-tag--danger el-tag--mini el-tag--dark" style="margin-left: 0.5em">高速优先</el-tag>'
:
''
code
=
`<div>
${
orderSourcesText
}
${
routePlanningTypeText
}
</div> `
;
return
code
},
orderPassengerInfo
({
data
})
{
return
`<div>
${
data
.
orderMemo
}
</div>`
...
...
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