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
56661c8c
Commit
56661c8c
authored
Aug 05, 2019
by
denghr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
押金记录
parent
967a4fba
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
175 additions
and
15 deletions
+175
-15
App.vue
src/App.vue
+2
-2
rentVehicle.js
src/api/order/rentVehicle.js
+11
-0
active.png
src/assets/images/active.png
+0
-0
doing.png
src/assets/images/doing.png
+0
-0
Navbar.vue
src/views/layout/Navbar.vue
+6
-1
index.vue
src/views/order/rentVehicleInfo/index.vue
+154
-10
index.vue
src/views/vehicle/vehicleInfo/index.vue
+2
-2
No files found.
src/App.vue
View file @
56661c8c
...
...
@@ -25,8 +25,8 @@
border-bottom
:
1px
solid
#ccc
;
}
.main-container
{
padding
:
0
10px
;
margin-top
:
61
px
;
//
padding: 0 10px;
// margin-top: 10
px;
}
.header-title
{
margin
:
0
88px
;
...
...
src/api/order/rentVehicle.js
View file @
56661c8c
...
...
@@ -60,3 +60,14 @@ export function saveOrderViolation(params) {
data
:
params
});
}
/**
* 获取押金退款进度
* @param query
*/
export
function
getStep
(
orderNo
)
{
return
fetch
({
url
:
'api/order/orderVehicle/getByOrderId?orderNo='
+
orderNo
,
method
:
'get'
});
}
src/assets/images/active.png
0 → 100644
View file @
56661c8c
800 Bytes
src/assets/images/doing.png
0 → 100644
View file @
56661c8c
813 Bytes
src/views/layout/Navbar.vue
View file @
56661c8c
<
template
>
<el-menu
class=
"navbar"
mode=
"horizontal"
>
<hamburger
class=
"hamburger-container"
:toggleClick=
"toggleSideBar"
:isActive=
"sidebar.opened"
></hamburger>
<levelbar></levelbar>
<tabs-view></tabs-view>
...
...
@@ -66,6 +65,12 @@ export default {
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
.el-menu
{
background-color
:
#fff
;
height
:
70px
;
line-height
:
70px
;
-moz-box-shadow
:
1px
1px
3px
#ccc
;
-webkit-box-shadow
:
1px
1px
3px
#ccc
;
box-shadow
:
1px
1px
3px
#ccc
;
}
.navbar
{
height
:
50px
;
line-height
:
50px
;
...
...
src/views/order/rentVehicleInfo/index.vue
View file @
56661c8c
This diff is collapsed.
Click to expand it.
src/views/vehicle/vehicleInfo/index.vue
View file @
56661c8c
...
...
@@ -1238,12 +1238,12 @@
},
set
:
function
([
startDate
,
endDate
])
{
if
(
this
.
$utils
.
isDate
(
startDate
))
{
this
.
form4Apply
.
bookStartDate
=
formatDate
(
startDate
,
'yyyy-MM-dd'
);
this
.
form4Apply
.
bookStartDate
=
formatDate
(
startDate
,
'yyyy-MM-dd
hh:mm:ss
'
);
}
else
{
this
.
form4Apply
.
bookStartDate
=
undefined
;
}
if
(
this
.
$utils
.
isDate
(
endDate
))
{
this
.
form4Apply
.
bookEndDate
=
formatDate
(
endDate
,
'yyyy-MM-dd'
);
this
.
form4Apply
.
bookEndDate
=
formatDate
(
endDate
,
'yyyy-MM-dd
hh:mm:ss
'
);
}
else
{
this
.
form4Apply
.
bookEndDate
=
undefined
;
}
...
...
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