Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform-ui
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform-ui
Commits
9f7c08af
Commit
9f7c08af
authored
Nov 29, 2019
by
guoyou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
分公司统计,车辆出行记录
parent
2afb13d2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
15 deletions
+19
-15
branchCompany.vue
src/views/financial/branchCompany.vue
+1
-1
index.vue
src/views/vehicle/vehicleDepartureLog/index.vue
+18
-14
No files found.
src/views/financial/branchCompany.vue
View file @
9f7c08af
...
...
@@ -36,7 +36,7 @@
v-loading=
"loadingTab"
>
<el-table-column
prop=
"date"
prop=
"date
Str
"
label=
"时间"
align=
"center"
width=
"200"
...
...
src/views/vehicle/vehicleDepartureLog/index.vue
View file @
9f7c08af
...
...
@@ -80,7 +80,7 @@
<el-col
:span=
"5"
>
<el-form-item
label=
"用途"
>
<el-select
v-model=
"
listQuery.use
"
filterable
placeholder=
"请选择车辆用途"
@
change=
"changeUse"
>
<el-select
v-model=
"
useData
"
filterable
placeholder=
"请选择车辆用途"
@
change=
"changeUse"
>
<el-option
label=
"全部"
value
>
全部
</el-option>
<el-option
v-for=
"item in useArr"
...
...
@@ -155,25 +155,26 @@
</el-table-column>
<el-table-column
align=
"center"
label=
"预约出/收车时间"
>
<
template
scope=
"scope"
>
<p>
{{
scope
.
row
.
bookStartDate
}}
</p>
<p>
{{
scope
.
row
.
bookEndDate
}}
</p>
<p>
出:
{{
scope
.
row
.
bookStartDate
}}
</p>
<p>
收:
{{
scope
.
row
.
bookEndDate
}}
</p>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"实际出/收车时间"
>
<
template
scope=
"scope"
>
<p>
{{
scope
.
row
.
actualStartDat
e
}}
</p>
<p>
{{
scope
.
row
.
actualEndDat
e
}}
</p>
<p>
出:
{{
scope
.
row
.
departureTim
e
}}
</p>
<p>
收:
{{
scope
.
row
.
arrivalTim
e
}}
</p>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"出/收车公司"
>
<
template
scope=
"scope"
>
<p>
{{
scope
.
row
.
departureName
}}
</p>
<p>
{{
scope
.
row
.
arrivalName
}}
</p>
<p>
出:
{{
scope
.
row
.
departureName
}}
</p>
<p>
收:
{{
scope
.
row
.
arrivalName
}}
</p>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"出/收车人"
>
<el-table-column
align=
"center"
width=
"100px"
label=
"出/收车人"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
departureTime
}}
</span>
<p>
{{
scope
.
row
.
checkMan
}}
</p>
<p>
{{
scope
.
row
.
recycleMan
}}
</p>
</
template
>
</el-table-column>
<el-table-column
align=
"center"
label=
"出行天数/公里数"
>
...
...
@@ -195,7 +196,7 @@
</el-table-column>
<el-table-column
align=
"center"
label=
"备注"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
departureTime
}}
</span>
<span>
{{
scope
.
row
.
remark
}}
</span>
</
template
>
</el-table-column>
...
...
@@ -366,6 +367,7 @@ export default {
state1
:
''
,
arrivalBranchCompanyId
:
null
,
useArr
:[],
//用途
useData
:
null
,
listQuery
:
{
page
:
1
,
limit
:
20
,
...
...
@@ -374,7 +376,7 @@ export default {
numberPlate
:
undefined
,
departureId
:
undefined
,
arrivalBranchCompanyId
:
null
,
use
:
null
use
:
this
.
useData
},
dialogStatus
:
''
,
textMap
:
{
...
...
@@ -414,8 +416,6 @@ export default {
})
findReserveType
().
then
(
data
=>
{
this
.
useArr
=
JSON
.
parse
(
data
.
data
).
type
console
.
log
(
this
.
useArr
);
})
},
computed
:
{
...
...
@@ -435,7 +435,11 @@ export default {
}
},
changeUse
(
val
){
if
(
!
val
)
this
.
listQuery
.
use
=
null
if
(
!
val
){
this
.
listQuery
.
use
=
null
}
else
{
this
.
listQuery
.
use
=
val
}
},
/**
* 重置
...
...
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