Commit 56661c8c authored by denghr's avatar denghr

押金记录

parent 967a4fba
...@@ -25,8 +25,8 @@ ...@@ -25,8 +25,8 @@
border-bottom: 1px solid #ccc; border-bottom: 1px solid #ccc;
} }
.main-container{ .main-container{
padding: 0 10px; // padding: 0 10px;
margin-top: 61px; // margin-top: 10px;
} }
.header-title{ .header-title{
margin: 0 88px; margin: 0 88px;
......
...@@ -60,3 +60,14 @@ export function saveOrderViolation(params) { ...@@ -60,3 +60,14 @@ export function saveOrderViolation(params) {
data: params data: params
}); });
} }
/**
* 获取押金退款进度
* @param query
*/
export function getStep(orderNo) {
return fetch({
url: 'api/order/orderVehicle/getByOrderId?orderNo=' + orderNo,
method: 'get'
});
}
<template> <template>
<el-menu class="navbar" mode="horizontal"> <el-menu class="navbar" mode="horizontal">
<hamburger class="hamburger-container" :toggleClick="toggleSideBar" :isActive="sidebar.opened"></hamburger> <hamburger class="hamburger-container" :toggleClick="toggleSideBar" :isActive="sidebar.opened"></hamburger>
<levelbar></levelbar> <levelbar></levelbar>
<tabs-view></tabs-view> <tabs-view></tabs-view>
...@@ -66,6 +65,12 @@ export default { ...@@ -66,6 +65,12 @@ export default {
</script> </script>
<style rel="stylesheet/scss" lang="scss" scoped> <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 { .navbar {
height: 50px; height: 50px;
line-height: 50px; line-height: 50px;
......
This diff is collapsed.
...@@ -1238,12 +1238,12 @@ ...@@ -1238,12 +1238,12 @@
}, },
set: function ([startDate, endDate]) { set: function ([startDate, endDate]) {
if (this.$utils.isDate(startDate)) { 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 { } else {
this.form4Apply.bookStartDate = undefined; this.form4Apply.bookStartDate = undefined;
} }
if (this.$utils.isDate(endDate)) { 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 { } else {
this.form4Apply.bookEndDate = undefined; this.form4Apply.bookEndDate = undefined;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment