Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
jd-vx-app
Project
Project
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
Administrator
jd-vx-app
Commits
939975ef
Commit
939975ef
authored
May 12, 2022
by
fwz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
挪车记录品牌和车型为空设置空字符串,不然会展示null
parent
9999d200
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
4 deletions
+20
-4
callDetail.vue
pagesB/pages/move-car/callDetail.vue
+10
-2
recordDetail.vue
pagesB/pages/move-car/recordDetail.vue
+10
-2
No files found.
pagesB/pages/move-car/callDetail.vue
View file @
939975ef
...
...
@@ -78,8 +78,16 @@ export default {
this
.
moveLog
=
res
.
data
.
data
let
moveLogInfo
=
[]
moveLogInfo
.
push
({
title
:
"车主车牌号:"
,
value
:
this
.
moveLog
.
carNo
})
moveLogInfo
.
push
({
title
:
"品牌:"
,
value
:
this
.
moveLog
.
brand
})
moveLogInfo
.
push
({
title
:
"车型:"
,
value
:
this
.
moveLog
.
carModel
})
if
(
this
.
moveLog
.
brand
){
moveLogInfo
.
push
({
title
:
"品牌:"
,
value
:
this
.
moveLog
.
brand
})
}
else
{
moveLogInfo
.
push
({
title
:
"品牌:"
,
value
:
""
})
}
if
(
this
.
moveLog
.
carModel
){
moveLogInfo
.
push
({
title
:
"车型:"
,
value
:
this
.
moveLog
.
carModel
})
}
else
{
moveLogInfo
.
push
({
title
:
"车型:"
,
value
:
""
})
}
moveLogInfo
.
push
({
title
:
"车主手机号:"
,
value
:
this
.
moveLog
.
userMobile
})
moveLogInfo
.
push
({
title
:
"时间:"
,
value
:
this
.
moveLog
.
applyDate
})
moveLogInfo
.
push
({
title
:
"地点:"
,
value
:
this
.
moveLog
.
detailInfo
})
...
...
pagesB/pages/move-car/recordDetail.vue
View file @
939975ef
...
...
@@ -45,8 +45,16 @@ export default {
this
.
moveLog
=
res
.
data
.
data
let
moveLogInfo
=
[]
moveLogInfo
.
push
({
title
:
"车主车牌号:"
,
value
:
this
.
moveLog
.
carNo
})
moveLogInfo
.
push
({
title
:
"品牌:"
,
value
:
this
.
moveLog
.
brand
})
moveLogInfo
.
push
({
title
:
"车型:"
,
value
:
this
.
moveLog
.
carModel
})
if
(
this
.
moveLog
.
brand
){
moveLogInfo
.
push
({
title
:
"品牌:"
,
value
:
this
.
moveLog
.
brand
})
}
else
{
moveLogInfo
.
push
({
title
:
"品牌:"
,
value
:
""
})
}
if
(
this
.
moveLog
.
carModel
){
moveLogInfo
.
push
({
title
:
"车型:"
,
value
:
this
.
moveLog
.
carModel
})
}
else
{
moveLogInfo
.
push
({
title
:
"车型:"
,
value
:
""
})
}
moveLogInfo
.
push
({
title
:
"车主手机号:"
,
value
:
this
.
moveLog
.
userMobile
})
moveLogInfo
.
push
({
title
:
"时间:"
,
value
:
this
.
moveLog
.
applyDate
})
moveLogInfo
.
push
({
title
:
"地点:"
,
value
:
this
.
moveLog
.
detailInfo
})
...
...
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