Commit 85ff72ad authored by rencs's avatar rencs

9.11 营收统计(部分)首页统计

parent be01414f
......@@ -107,3 +107,20 @@ export function update_store(id, query) {
data: query,
});
}
//营收统计列表
export function revenue_sum_list(query) {
return fetch({
url: "/api/order/admin/wallet/selectList",
method: "get",
params: query,
});
}
//营收统计合计
export function revenue_sum_count(query) {
return fetch({
url: "/api/order/admin/wallet/sumAmount",
method: "get",
params: query,
});
}
......@@ -41,7 +41,7 @@ export function cancleBook(obj) {
return fetch({
url: '/vehicle/vehicleInfo/unbook/4employee',
method: 'delete',
data:obj
data: obj
});
}
......@@ -87,6 +87,15 @@ export function orderStatistics(type) {
method: 'get',
});
}
/**
* 首页统计
*/
export function getIndexAllcounts() {
return fetch({
url: '/api/order/background/statistics/indexOrder',
method: 'get',
});
}
/**
......@@ -102,12 +111,12 @@ export function getUpkeepAll() {
//获取旅游路线
export function getTourList(param) {
if(param){
if (param) {
return fetch({
url: '/api/tour/verfication/getList?'+param,
url: '/api/tour/verfication/getList?' + param,
method: 'get',
});
}else{
} else {
return fetch({
url: '/api/tour/verfication/getList',
method: 'get',
......@@ -118,7 +127,7 @@ export function getTourList(param) {
//获取核销路线id信息
export function getTourInfor(id) {
return fetch({
url: '/api/tour/verfication/info/'+id,
url: '/api/tour/verfication/info/' + id,
method: 'get',
});
}
<template>
<div class="app-container calendar-list-container" v-loading.body="showLoadingBody">
<div >
<div>
<div class="statisticsBox">
<!-- <div class="statisticsItem">
<div class="colorbg1"></div>
......@@ -8,27 +8,41 @@
<div class="detail-title">今日收益(不含押金)</div>
<div class="detail-money">¥ 6,666,66</div>
</div>
</div> -->
</div>-->
<div class="statisticsItem">
<div class="colorbg2"></div>
<div class="detail">
<!-- (不含押金)-->
<div class="detail-title">订单总额</div>
<div class="detail-money">{{totalGmv|NumFormat}}</div>
<!-- (不含押金)-->
<div class="detail-title">本日新增订单总额</div>
<div class="detail-money">{{currDayOrderAmount|NumFormat}}</div>
</div>
</div>
<div class="statisticsItem">
<div class="colorbg3"></div>
<div class="colorbg1"></div>
<div class="detail">
<div class="detail-title">未退还押金总额</div>
<div class="detail-money">{{totalSecurityDeposit|NumFormat}}</div>
<div class="detail-title">本日新增订单数</div>
<div class="detail-money">{{currDayOrderNum|NumFormat}}</div>
</div>
</div>
<div class="statisticsItem">
<div class="colorbg4"></div>
<div class="detail">
<div class="detail-title">额外赔款(取消损坏违章等)</div>
<div class="detail-money">{{peichang|NumFormat}}</div>
<div class="detail-title">今日需出车订单数</div>
<div class="detail-money">{{currDayToLiftVehicleNum|NumFormat}}</div>
</div>
</div>
<div class="statisticsItem">
<div class="colorbg5"></div>
<div class="detail">
<div class="detail-title">今日需收车订单数</div>
<div class="detail-money">{{currDayToReturnVehicleNum|NumFormat}}</div>
</div>
</div>
<div class="statisticsItem">
<div class="colorbg3"></div>
<div class="detail">
<div class="detail-title">违章待处理订单数</div>
<div class="detail-money">{{toDealTrafficPay|NumFormat}}</div>
</div>
</div>
</div>
......@@ -36,7 +50,12 @@
<div class="carDetailBoxTitle">车辆概况</div>
<div class="carDetailBox">
<div class="carDetailItem" v-for="(item, index) in countTJ" :key="item.id">
<div class="detail-num"><span style="position: relative;">{{item.total}}<span class="unit"></span></span></div>
<div class="detail-num">
<span style="position: relative;">
{{item.total}}
<span class="unit"></span>
</span>
</div>
<div class="carDetail-title" v-if="item.travelStatus == 0">车辆总额</div>
<div class="carDetail-title" v-if="item.travelStatus == 4">出行中</div>
<div class="carDetail-title" v-if="item.travelStatus == 1">空闲</div>
......@@ -48,47 +67,106 @@
<!--车辆预警-->
<div class="carEarlyWarning">
<div class="carEarlyWarningTitle">车辆预警</div>
<div class="marquee_box" v-if="marqueeList.length>0" @mouseenter="handelOver" @mouseleave="handelOut">
<div
class="marquee_box"
v-if="marqueeList.length>0"
@mouseenter="handelOver"
@mouseleave="handelOut"
>
<ul class="marquee_list" :class="{marquee_top:animate}">
<li v-for="(item,index) in marqueeList" ><i class="el-icon-warning" :class="item.color" style="padding-left:30px;padding-right:20px"></i>{{item.msg}} <span style="text-decoration:underline">立即处理</span></li>
<li v-for="(item,index) in marqueeList">
<i
class="el-icon-warning"
:class="item.color"
style="padding-left:30px;padding-right:20px"
></i>
{{item.msg}}
<span style="text-decoration:underline">立即处理</span>
</li>
</ul>
</div>
</div>
<!--车辆排班-->
<div class="carEarlyWarning" style="padding-bottom:30px">
<div class="carEarlyWarningTitle" style="display: flex;justify-content: space-between;margin-bottom:20px">
<div
class="carEarlyWarningTitle"
style="display: flex;justify-content: space-between;margin-bottom:20px"
>
<div style="flex:1">车辆排班</div>
<!--bookType 1-租车、2-分公司使用、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用、9、客户用车、10、其他-->
<div style="color: rgb(87, 81, 96);font-family: 微软雅黑;font-weight: 400;font-style: normal;font-size: 14px;">
<span class="tip-co bg-1"></span><span>租房车/客户用车</span>
<span class="tip-co bg-5"></span><span>房车游</span>
<span class="tip-co bg-4"></span><span>展览</span>
<span class="tip-co bg-6"></span><span>保养/维修</span>
<span class="tip-co bg-10"></span><span>其他</span>
<span class="tip-co bg-7"></span><span>预约中</span>
<span class="tip-co bg-8"></span><span>禁用</span>
<div
style="color: rgb(87, 81, 96);font-family: 微软雅黑;font-weight: 400;font-style: normal;font-size: 14px;"
>
<span class="tip-co bg-1"></span>
<span>租房车/客户用车</span>
<span class="tip-co bg-5"></span>
<span>房车游</span>
<span class="tip-co bg-4"></span>
<span>展览</span>
<span class="tip-co bg-6"></span>
<span>保养/维修</span>
<span class="tip-co bg-10"></span>
<span>其他</span>
<span class="tip-co bg-7"></span>
<span>预约中</span>
<span class="tip-co bg-8"></span>
<span>禁用</span>
</div>
</div>
<el-table :key='tableKey' :data="list" v-loading.body="listLoading" border fit highlight-current-row
style="width: 100%;cursor: pointer;" class="schedul-tb">
<el-table
:key="tableKey"
:data="list"
v-loading.body="listLoading"
border
fit
highlight-current-row
style="width: 100%;cursor: pointer;"
class="schedul-tb"
>
<el-table-column width="220" align="center" :label="firstTime" fixed>
<template slot-scope="scope">
<div>
<div style="color: #bfcbd9;font-size: 14px;">
现在位置:{{scope.row.parkCompanyName}}
<div style="color: #bfcbd9;font-size: 14px;">现在位置:{{scope.row.parkCompanyName}}</div>
<div>
{{scope.row.numberPlate}}
<img
src="../../assets/images/detail.png"
style="width: 15px;margin-left: 10px;"
/>
</div>
<div>{{scope.row.numberPlate}}<img src="../../assets/images/detail.png" style="width: 15px;margin-left: 10px;"/></div>
<div style="color: #bfcbd9;font-size: 14px;">{{scope.row.vehicleModel?scope.row.vehicleModel.name:''}}</div>
<div
style="color: #bfcbd9;font-size: 14px;"
>{{scope.row.vehicleModel?scope.row.vehicleModel.name:''}}</div>
</div>
</template>
</el-table-column>
<el-table-column width="60" align="center" :label="item.day" v-for="item in tempDayList" :key="item.day">
<el-table-column
width="60"
align="center"
:label="item.day"
v-for="item in tempDayList"
:key="item.day"
>
<template slot-scope="scope">
<div v-for="iitem in scope.row.temp" :key="iitem.day" v-if="iitem.time == item.time">
<div v-for="ii in iitem.children" :key="ii.time" :data-ii="ii.time" :data-endhour="ii.endhour" class="ii-day" :class="ii.bg" @click="toShowDialog(scope.row, iitem, ii)">
<span v-if="ii.timeEtr == '00'" style="position: absolute;color: #fff;left: -20px;bottom: 0">{{ii.timeEtr}}</span>
<span v-else style="position: relative;color: #fff;top: -24px;right: -20px;">{{ii.timeEtr}}</span>
<div
v-for="ii in iitem.children"
:key="ii.time"
:data-ii="ii.time"
:data-endhour="ii.endhour"
class="ii-day"
:class="ii.bg"
@click="toShowDialog(scope.row, iitem, ii)"
>
<span
v-if="ii.timeEtr == '00'"
style="position: absolute;color: #fff;left: -20px;bottom: 0"
>{{ii.timeEtr}}</span>
<span
v-else
style="position: relative;color: #fff;top: -24px;right: -20px;"
>{{ii.timeEtr}}</span>
<span style="position: absolute;color: #fff;z-index: 11;left: 0;">{{ii.timeStr}}</span>
</div>
</div>
......@@ -96,14 +174,18 @@
</el-table-column>
</el-table>
<div v-show="!listLoading" class="pagination-container">
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
:current-page.sync="listQuery.page" :page-sizes="[10,20,30, 50]" :page-size="listQuery.limit"
layout="total, sizes, prev, pager, next, jumper" :total="total"></el-pagination>
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page.sync="listQuery.page"
:page-sizes="[10,20,30, 50]"
:page-size="listQuery.limit"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
></el-pagination>
</div>
</div>
<!-- <div style="position: relative;padding: 10px;padding-left: 0;width: 100%;overflow-x:auto;" v-if="currentMonth">
<div style="display: flex;">
<div class="day-title" style="min-width: 200px;max-width:200px;background: #eef1f6;">日期({{currentMonth}}~{{nextMonth}}月)</div>
......@@ -125,140 +207,318 @@
</div>
</div>
</div>
</div> -->
</div>-->
</div>
<!--保养弹框-->
<vehicleMaintenanceModal v-if="baoyang" :currentItem="currentItem" v-on:baoyangDialogEvent = "baoyangDialogEvent"></vehicleMaintenanceModal>
<vehicleMaintenanceModal
v-if="baoyang"
:currentItem="currentItem"
v-on:baoyangDialogEvent="baoyangDialogEvent"
></vehicleMaintenanceModal>
<!--展览、预定用车弹框-->
<vehicleExhibitionModal v-if="zhanlan" :currentItem="currentItem" v-on:zhanlanDialogEvent = "zhanlanDialogEvent"></vehicleExhibitionModal>
<vehicleExhibitionModal
v-if="zhanlan"
:currentItem="currentItem"
v-on:zhanlanDialogEvent="zhanlanDialogEvent"
></vehicleExhibitionModal>
<!--安排用车弹框-->
<vehiclePlanModal v-if="anpai" :currentItem="currentItem" v-on:anpaiDialogEvent = "anpaiDialogEvent"></vehiclePlanModal>
<vehiclePlanModal
v-if="anpai"
:currentItem="currentItem"
v-on:anpaiDialogEvent="anpaiDialogEvent"
></vehiclePlanModal>
<!--租车详情弹框-->
<!--rentOrder-->
<rentOrderDetailModal :form="rentOrderInfo" :rentCostDetail="rentCostDetail" v-if="rentOrder" v-on:rentOrderDetailDialogEvent="rentOrderDetailDialogEvent"></rentOrderDetailModal>
<rentOrderDetailModal
:form="rentOrderInfo"
:rentCostDetail="rentCostDetail"
v-if="rentOrder"
v-on:rentOrderDetailDialogEvent="rentOrderDetailDialogEvent"
></rentOrderDetailModal>
<!--旅游订单详情-->
<tourOrderDetailModal :tourRow="tourRow" v-if="tourDialogVisible" v-on:tourOrderDetailDialogEvent="tourOrderDetailDialogEvent"></tourOrderDetailModal>
<tourOrderDetailModal
:tourRow="tourRow"
v-if="tourDialogVisible"
v-on:tourOrderDetailDialogEvent="tourOrderDetailDialogEvent"
></tourOrderDetailModal>
<!--禁用弹框-->
<disableModal v-if="jinyong" :currentItem="currentItem" v-on:jinyongDialogEvent = "jinyongDialogEvent"></disableModal>
<disableModal
v-if="jinyong"
:currentItem="currentItem"
v-on:jinyongDialogEvent="jinyongDialogEvent"
></disableModal>
</div>
</template>
<style scoped>
.app-container{background-color: rgba(245, 245, 245, 1);}
.statisticsBox{width: 100%;display: flex;justify-content: space-between;margin-bottom: 40px;}
.statisticsItem{flex: 1;background-color: #fff;-moz-box-shadow:1px 1px 3px #ccc; -webkit-box-shadow:1px 1px 3px #ccc; box-shadow:1px 1px 3px #ccc;border-radius: 4px;max-width: calc(33.3% - 40px)}
.colorbg1{width: 100%;height: 6px;border-radius: 4px 4px 0 0;background:-webkit-linear-gradient(left, #1c9fff, #70d1fc);background:-o-linear-gradient(right, #1c9fff, #70d1fc);background:-moz-linear-gradient(right, #1c9fff, #70d1fc);background:linear-gradient(to right, #1c9fff, #70d1fc);}
.colorbg2{width: 100%;height: 6px;border-radius: 4px 4px 0 0;background:-webkit-linear-gradient(left, #1f51fc, #70a0fc);background:-o-linear-gradient(right, #1f51fc, #70a0fc);background:-moz-linear-gradient(right, #1f51fc, #70a0fc);background:linear-gradient(to right, #1f51fc, #70a0fc);}
.colorbg3{width: 100%;height: 6px;border-radius: 4px 4px 0 0;background:-webkit-linear-gradient(left, #fc201f, #fb6b5b);background:-o-linear-gradient(right, #fc201f, #fb6b5b);background:-moz-linear-gradient(right, #fc201f, #fb6b5b);background:linear-gradient(to right, #fc201f, #fb6b5b);}
.colorbg4{width: 100%;height: 6px;border-radius: 4px 4px 0 0;background:-webkit-linear-gradient(left, #ff6a05, #ffc671);background:-o-linear-gradient(right, #ff6a05, #ffc671);background:-moz-linear-gradient(right, #ff6a05, #ffc671);background:linear-gradient(to right, #ff6a05, #ffc671);}
.statisticsItem .detail{width: 100%;background: #fff;padding: 40px;border-radius: 0 0 4px 4px;}
.detail-title{font-size: 16px;color: rgb(107, 107, 107); font-family: 微软雅黑;font-weight: 400;font-style: normal;padding-bottom: 10px}
.detail-money{font-family: 'Arial Normal', 'Arial';font-weight: 400;font-style: normal;font-size: 28px;color: #000000;}
.carDetail{width: 100%;margin-bottom: 40px;padding: 0 20px;-moz-box-shadow:1px 1px 3px #ccc; -webkit-box-shadow:1px 1px 3px #ccc; box-shadow:1px 1px 3px #ccc;border-radius: 4px;background: #fff;}
.carDetailBox{width: 100%;display: flex;justify-content: space-between;padding: 30px 0 15px 0}
.carDetailItem{flex: 1;background-color: #fff;text-align: center;border-right: 1px solid rgba(240, 240, 240, 1);}
.carDetailBox .carDetailItem:last-child{border-right: none;}
.carDetailBoxTitle{display: block;font-family: "微软雅黑 Bold", "微软雅黑 Regular", 微软雅黑;font-weight: 700;font-style: normal;font-size: 18px;color: rgb(81, 81, 81);padding: 20px 0;border-bottom: 1px solid rgba(240, 240, 240, 1);}
.detail-num{font-family: 'Arial Normal', 'Arial';font-weight: 400;font-style: normal;font-size: 28px;color: #000000;padding-top: 20px;}
.detail-num .unit{position: absolute;font-family: 微软雅黑;font-weight: 400;font-style: normal;color: rgb(107, 107, 107);font-size: 13px;right: -20px;}
.carDetail-title{ font-family: 微软雅黑;font-weight: 400;font-style: normal;font-size: 18px;color: rgb(78, 75, 86);padding: 10px 0 20px 0;}
.carEarlyWarning{width: 100%;margin-bottom: 40px;padding: 0 20px;-moz-box-shadow:1px 1px 3px #ccc; -webkit-box-shadow:1px 1px 3px #ccc; box-shadow:1px 1px 3px #ccc;border-radius: 4px;background: #fff;}
.carEarlyWarningTitle{display: block;font-family: "微软雅黑 Bold", "微软雅黑 Regular", 微软雅黑;font-weight: 700;font-style: normal;font-size: 18px;color: rgb(81, 81, 81);padding: 20px 0;border-bottom: 1px solid rgba(240, 240, 240, 1);}
.flex-jca-fdc{
.app-container {
background-color: rgba(245, 245, 245, 1);
}
.statisticsBox {
width: 100%;
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}
.statisticsItem {
margin: 10px;
justify-content: center;
flex: 1;
background-color: #fff;
-moz-box-shadow: 1px 1px 3px #ccc;
-webkit-box-shadow: 1px 1px 3px #ccc;
box-shadow: 1px 1px 3px #ccc;
border-radius: 4px;
max-width: calc(33.3% - 40px);
}
.colorbg1 {
width: 100%;
height: 6px;
border-radius: 4px 4px 0 0;
background: -webkit-linear-gradient(left, #1c9fff, #70d1fc);
background: -o-linear-gradient(right, #1c9fff, #70d1fc);
background: -moz-linear-gradient(right, #1c9fff, #70d1fc);
background: linear-gradient(to right, #1c9fff, #70d1fc);
}
.colorbg2 {
width: 100%;
height: 6px;
border-radius: 4px 4px 0 0;
background: -webkit-linear-gradient(left, #1f51fc, #70a0fc);
background: -o-linear-gradient(right, #1f51fc, #70a0fc);
background: -moz-linear-gradient(right, #1f51fc, #70a0fc);
background: linear-gradient(to right, #1f51fc, #70a0fc);
}
.colorbg3 {
width: 100%;
height: 6px;
border-radius: 4px 4px 0 0;
background: -webkit-linear-gradient(left, #fc201f, #fb6b5b);
background: -o-linear-gradient(right, #fc201f, #fb6b5b);
background: -moz-linear-gradient(right, #fc201f, #fb6b5b);
background: linear-gradient(to right, #fc201f, #fb6b5b);
}
.colorbg5 {
width: 100%;
height: 6px;
border-radius: 4px 4px 0 0;
background: -webkit-linear-gradient(left, #ffea00, #fff480);
background: -o-linear-gradient(right, #ffea00, #fff480);
background: -moz-linear-gradient(right, #ffea00, #fff480);
background: linear-gradient(to right, #ffea00, #fff480);
}
.colorbg4 {
width: 100%;
height: 6px;
border-radius: 4px 4px 0 0;
background: -webkit-linear-gradient(left, #ff6a05, #ffc671);
background: -o-linear-gradient(right, #ff6a05, #ffc671);
background: -moz-linear-gradient(right, #ff6a05, #ffc671);
background: linear-gradient(to right, #ff6a05, #ffc671);
}
.statisticsItem .detail {
width: 100%;
background: #fff;
padding: 40px 20px;
border-radius: 0 0 4px 4px;
}
.detail-title {
font-size: 16px;
color: rgb(107, 107, 107);
font-family: 微软雅黑;
font-weight: 400;
font-style: normal;
padding-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.detail-money {
font-family: "Arial Normal", "Arial";
font-weight: 400;
font-style: normal;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
color: #000000;
flex-wrap: nowrap;
white-space: nowrap;
}
.carDetail {
width: 100%;
margin-bottom: 40px;
padding: 0 20px;
-moz-box-shadow: 1px 1px 3px #ccc;
-webkit-box-shadow: 1px 1px 3px #ccc;
box-shadow: 1px 1px 3px #ccc;
border-radius: 4px;
background: #fff;
}
.carDetailBox {
width: 100%;
display: flex;
justify-content: space-between;
padding: 30px 0 15px 0;
}
.carDetailItem {
flex: 1;
background-color: #fff;
text-align: center;
border-right: 1px solid rgba(240, 240, 240, 1);
}
.carDetailBox .carDetailItem:last-child {
border-right: none;
}
.carDetailBoxTitle {
display: block;
font-family: "微软雅黑 Bold", "微软雅黑 Regular", 微软雅黑;
font-weight: 700;
font-style: normal;
font-size: 18px;
color: rgb(81, 81, 81);
padding: 20px 0;
border-bottom: 1px solid rgba(240, 240, 240, 1);
}
.detail-num {
font-family: "Arial Normal", "Arial";
font-weight: 400;
font-style: normal;
font-size: 28px;
color: #000000;
padding-top: 20px;
}
.detail-num .unit {
position: absolute;
font-family: 微软雅黑;
font-weight: 400;
font-style: normal;
color: rgb(107, 107, 107);
font-size: 13px;
right: -20px;
}
.carDetail-title {
font-family: 微软雅黑;
font-weight: 400;
font-style: normal;
font-size: 18px;
color: rgb(78, 75, 86);
padding: 10px 0 20px 0;
}
.carEarlyWarning {
width: 100%;
margin-bottom: 40px;
padding: 0 20px;
-moz-box-shadow: 1px 1px 3px #ccc;
-webkit-box-shadow: 1px 1px 3px #ccc;
box-shadow: 1px 1px 3px #ccc;
border-radius: 4px;
background: #fff;
}
.carEarlyWarningTitle {
display: block;
font-family: "微软雅黑 Bold", "微软雅黑 Regular", 微软雅黑;
font-weight: 700;
font-style: normal;
font-size: 18px;
color: rgb(81, 81, 81);
padding: 20px 0;
border-bottom: 1px solid rgba(240, 240, 240, 1);
}
.flex-jca-fdc {
display: flex !important;
flex-direction: column;
justify-content: space-around;
}
.schedul-tb .el-table .cell{
}
.schedul-tb .el-table .cell {
padding: 0;
}
.tip-co{
}
.tip-co {
padding: 0 15px;
margin-right: 10px;
margin-left: 20px;
}
.tip-co:first-child{
}
.tip-co:first-child {
margin-left: 0;
}
/* 1-租车、2-分公司使用、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用、9、客户用车、10、其他 */
.bg-1{
}
/* 1-租车、2-分公司使用、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用、9、客户用车、10、其他 */
.bg-1 {
background: #20a0ff;
}
.bg-9{
}
.bg-9 {
background: #20a0ff;
}
.bg-5{
}
.bg-5 {
background: #6633cc;
}
.bg-4{
}
.bg-4 {
background: #00cc66;
}
.bg-3{
}
.bg-3 {
background: #ff6633;
}
.bg-6{
}
.bg-6 {
background: #ff6633;
}
.bg-7{
}
.bg-7 {
background: #ffcc00;
}
.bg-8{
}
.bg-8 {
background: #868686;
}
.bg-10{
}
.bg-10 {
background: #ff6699;
}
.ii-day{
}
.ii-day {
height: 3px;
width: 60px;
margin-left: -19px;
}
.day-title{
border-right:1px solid #bfcbd9;
border-bottom:1px solid #bfcbd9;
}
.day-title {
border-right: 1px solid #bfcbd9;
border-bottom: 1px solid #bfcbd9;
padding: 10px;
min-width: 45px;
max-width: 45px;
display: inline-block;
cursor: pointer;
}
.v-list{
}
.v-list {
padding: 10px;
min-width: 200px;
max-width: 200px;
border-bottom:1px solid #bfcbd9;
border-right:1px solid #bfcbd9;
}
.zzui-broadcast-window{
border-bottom: 1px solid #bfcbd9;
border-right: 1px solid #bfcbd9;
}
.zzui-broadcast-window {
height: 180px !important;
background: #ccc;
}
.el-col {
}
.el-col {
border-radius: 4px;
}
.bg-purple-dark {
}
.bg-purple-dark {
background: #99a9bf;
}
.bg-purple {
}
.bg-purple {
background: #eef1f6;
}
.bg-purple-light {
}
.bg-purple-light {
background: #e5e9f2;
}
.grid-content {
}
.grid-content {
border-radius: 4px;
min-height: 36px;
}
.grid-content .text{
}
.grid-content .text {
text-align: center;
line-height: 35px;
}
.row-bg {
}
.row-bg {
padding: 10px 0;
background-color: #f9fafc;
}
.marquee {
}
.marquee {
width: 100%;
height: 50px;
......@@ -274,9 +534,9 @@
box-sizing: border-box;
overflow: hidden;
}
}
.marquee_title {
.marquee_title {
padding: 0 20px;
height: 21px;
......@@ -286,9 +546,9 @@
border-right: 1px solid #d8d8d8;
align-items: center;
}
}
.marquee_box {
.marquee_box {
display: block;
position: relative;
width: 100%;
......@@ -296,9 +556,9 @@
overflow: hidden;
margin: 0;
background: #fff;
}
}
.marquee_list {
.marquee_list {
display: block;
position: absolute;
......@@ -307,66 +567,55 @@
left: 0;
padding-left: 0px;
}
}
.marquee_top {
.marquee_top {
transition: all 0.5s;
}
}
.marquee_list li {
.marquee_list li {
height: 31px;
line-height: 31px;
font-size: 14px;
list-style-type:none;
list-style-type: none;
color: rgb(87, 81, 96);
font-family: 微软雅黑;
font-weight: 400;
font-style: normal;
font-size: 14px;
}
}
.marquee_list li span {
.marquee_list li span {
padding: 0 2px;
}
.warn-1{
}
.warn-1 {
color: #1c9fff;
}
.warn-2{
}
.warn-2 {
color: #20a0ff;
}
.warn-3{
}
.warn-3 {
color: #ff9900;
}
}
</style>
<script>
import 'static/css/uploadImg.css';// 引入图片上传组件对话框
import vehicleMaintenanceModal from './vehicleMaintenanceModal';//车辆保养弹框
import vehicleExhibitionModal from './vehicleExhibitionModal';//车辆展览弹框
import vehiclePlanModal from './vehiclePlanModal';//安排用车
import rentOrderDetailModal from "../order/modal/rentOrderDetailModal";//租车订单详情
import tourOrderDetailModal from "../order/modal/tourOrderDetailModal";//房车游订单详情
import disableModal from "./disableModal";//禁用弹框
import {
getSysRegionByIds
} from 'api/vehicle/vehicleInfo/';
import {
getAllZone
} from 'api/base_info/constant/';
import {
getAllCompany,
getAll
} from 'api/base_info/branch_company/';
import {
getAllBranchCompanyByZoneId
} from 'api/order/rentVehicle';
import {
formatDate
} from 'utils/dateFormattor';
import "static/css/uploadImg.css"; // 引入图片上传组件对话框
import vehicleMaintenanceModal from "./vehicleMaintenanceModal"; //车辆保养弹框
import vehicleExhibitionModal from "./vehicleExhibitionModal"; //车辆展览弹框
import vehiclePlanModal from "./vehiclePlanModal"; //安排用车
import rentOrderDetailModal from "../order/modal/rentOrderDetailModal"; //租车订单详情
import tourOrderDetailModal from "../order/modal/tourOrderDetailModal"; //房车游订单详情
import disableModal from "./disableModal"; //禁用弹框
import { getSysRegionByIds } from "api/vehicle/vehicleInfo/";
import { getAllZone } from "api/base_info/constant/";
import { getAllCompany, getAll } from "api/base_info/branch_company/";
import { getAllBranchCompanyByZoneId } from "api/order/rentVehicle";
import { formatDate } from "utils/dateFormattor";
import {
import {
toEast8Date,
deepCopyDate,
newEast8Date,
......@@ -376,26 +625,25 @@
getCurrentMonth,
getMonth,
getymdTimeByDay,
getCurrentYearMonth
} from 'utils/dateUtils';
getCurrentYearMonth,
} from "utils/dateUtils";
import rsCode from '../../utils/rsCode';
import rsCode from "../../utils/rsCode";
import {mapGetters} from 'vuex';
import {
getToken
} from 'utils/auth';
import {
import { mapGetters } from "vuex";
import { getToken } from "utils/auth";
import {
getVehiclePlanList,
getVehicleOrderDetail,
orderStatistics
} from 'api/vehicle/vehicleSchedulManage';
import Element1 from "../admin/menu/components/element";
import ElRow from "element-ui/packages/row/src/row";
import ElCol from "element-ui/packages/col/src/col";
orderStatistics,
getIndexAllcounts,
} from "api/vehicle/vehicleSchedulManage";
import Element1 from "../admin/menu/components/element";
import ElRow from "element-ui/packages/row/src/row";
import ElCol from "element-ui/packages/col/src/col";
export default {
name: 'vehicleSchedulManage',
export default {
name: "vehicleSchedulManage",
components: {
ElCol,
ElRow,
......@@ -405,133 +653,160 @@
vehiclePlanModal,
rentOrderDetailModal,
tourOrderDetailModal,
disableModal
disableModal,
},
data() {
return {
animate: false,
firstTime: "",//排期表-第一个字段名称
firstTime: "", //排期表-第一个字段名称
marqueeList: [],
modalTitle: "创建",
BASE_API: process.env.BASE_API,
oneCampsiteDialogVisible: false,//添加、编辑弹框
oneCampsiteDialogVisible: false, //添加、编辑弹框
showLoadingBody: false,
countTJ: undefined,//车辆概况
countTJ: undefined, //车辆概况
form: {
tagNames:"",//标签
name: undefined,//旅游名称
saleCount: undefined,//销量
stock: undefined,//总数量
tagNames: "", //标签
name: undefined, //旅游名称
saleCount: undefined, //销量
stock: undefined, //总数量
status: undefined,
},
list: null,
total: null,
listLoading: true,
endTime: "",//结束时间为0点时有值
endTime: "", //结束时间为0点时有值
listQuery: {
page: 1,
limit: 10,
parkBranchCompanyId: undefined,//停靠分公司id
parkBranchCompanyName: undefined,//停靠分公司名称
subordinateBranch: undefined,//所属分公司
subordinateBranchName: undefined,//所属分公司名称
zoneId: undefined,//所属片区
parkBranchCompanyId: undefined, //停靠分公司id
parkBranchCompanyName: undefined, //停靠分公司名称
subordinateBranch: undefined, //所属分公司
subordinateBranchName: undefined, //所属分公司名称
zoneId: undefined, //所属片区
startTime: undefined,
endTime:undefined,
status: undefined,//车辆状态
endTime: undefined,
status: undefined, //车辆状态
},
inline: true,
mar: null,//滚屏
mar: null, //滚屏
textMap: {
update: '编辑',
create: '创建'
update: "编辑",
create: "创建",
},
tableKey: 0,
tempDayList: [],//日期
currentMonth: undefined,//当前月份
nextMonth: undefined,//下月
allBranchCompany: [],//所有分公司列表
baoyang: false,//保养弹框,
zhanlan: false,//展览弹框
rentOrder: false,//租车订单详情
anpai: false,//安排用车弹框
jinyong: false,//禁用弹框
currentItem: {},//待操作数据
rentOrderInfo: {},//租车订单详情
rentCostDetail: {},//租车订单费用明细
tourDialogVisible: false,//旅游订单弹框
tourRow: {},//旅游订单详情-当前行
totalGmv:0,
totalSecurityDeposit:0,
peichang:0,
}
tempDayList: [], //日期
currentMonth: undefined, //当前月份
nextMonth: undefined, //下月
allBranchCompany: [], //所有分公司列表
baoyang: false, //保养弹框,
zhanlan: false, //展览弹框
rentOrder: false, //租车订单详情
anpai: false, //安排用车弹框
jinyong: false, //禁用弹框
currentItem: {}, //待操作数据
rentOrderInfo: {}, //租车订单详情
rentCostDetail: {}, //租车订单费用明细
tourDialogVisible: false, //旅游订单弹框
tourRow: {}, //旅游订单详情-当前行
totalGmv: 0,
totalSecurityDeposit: 0,
peichang: 0,
currDayOrderAmount: undefined,
currDayOrderNum: undefined,
currDayToLiftVehicleNum: undefined,
currDayToReturnVehicleNum: undefined,
toDealTrafficPay: undefined,
};
},
created() {
this.getList();
this.getOrderStatistics();
// this.getOrderStatistics();
this.getindexCounts();
let currentMonth = getCurrentMonth();
this.currentMonth = parseInt(currentMonth);
if(this.currentMonth < 12){
if (this.currentMonth < 12) {
this.nextMonth = this.currentMonth + 1;
} else {
this.nextMonth = 1;
}
this.firstTime = "日期("+this.currentMonth+"~"+this.nextMonth+")"
this.firstTime = "日期(" + this.currentMonth + "~" + this.nextMonth + ")";
this.getTempDayList();
this.mar = setInterval(this.showMarquee, 2000);
getAll()
.then(response => {
getAll().then((response) => {
this.allCompaniesArr = response.data;
})
getAllCompany(codeAndBranchCompany => {
});
getAllCompany((codeAndBranchCompany) => {
this.allCompanies = codeAndBranchCompany;
});
},
filters: {
NumFormat: function (value) {
if(!value) return '0.00';
var intPart = Number(value)|0; //获取整数部分
var intPartFormat = intPart.toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,'); //将整数部分逢三一断
if (!value) return "0.00";
var intPart = Number(value) | 0; //获取整数部分
var intPartFormat = intPart
.toString()
.replace(/(\d)(?=(?:\d{3})+$)/g, "$1,"); //将整数部分逢三一断
var floatPart = ".00"; //预定义小数部分
var value2Array = String(value).split(".");
//=2表示数据有小数位
if(value2Array.length == 2) {
if (value2Array.length == 2) {
floatPart = value2Array[1].toString(); //拿到小数部分
if(floatPart.length == 1) { //补0,实际上用不着
return intPartFormat + "." + floatPart + '0';
if (floatPart.length == 1) {
//补0,实际上用不着
return intPartFormat + "." + floatPart + "0";
} else {
return intPartFormat + "." + floatPart;
}
} else {
return intPartFormat + floatPart;
}
}
},
},
computed: {
...mapGetters([
'elements',
'vehicleStatus'
]),
...mapGetters(["elements", "vehicleStatus"]),
//获取大区列表
getAllZoneList(){
getAllZoneList() {
this.allZoneArr = getAllZone();
return getAllZone();
},
},
methods: {
getOrderStatistics(){
getindexCounts() {
var that = this;
orderStatistics(4).then(res => {
getIndexAllcounts().then((res) => {
if (res.status == 200) {
that.currDayOrderAmount = res.data.currDayOrderAmount;
that.currDayOrderNum = res.data.currDayOrderNum;
that.currDayToLiftVehicleNum = res.data.currDayToLiftVehicleNum;
that.currDayToReturnVehicleNum = res.data.currDayToReturnVehicleNum;
that.toDealTrafficPay = res.data.toDealTrafficPay;
// that.totalGmv = res.data.totalOrders;
// that.totalSecurityDeposit = res.data.totalOutstandingDeposit;
// that.peichang = res.data.additionalIndemnity;
} else {
this.$notify({
title: "失败",
message: "操作失败!",
type: "error",
duration: 2000,
});
}
});
},
getOrderStatistics() {
var that = this;
orderStatistics(4).then((res) => {
if (res.status == 200) {
that.totalGmv = res.data.totalOrders;
that.totalSecurityDeposit = res.data.totalOutstandingDeposit;
that.peichang = res.data.additionalIndemnity;
} else {
this.$notify({
title: '失败',
message: '操作失败!',
type: 'error',
duration: 2000
title: "失败",
message: "操作失败!",
type: "error",
duration: 2000,
});
}
});
......@@ -539,60 +814,101 @@
/**
* 旅游订单详情弹框关闭
* */
tourOrderDetailDialogEvent(e){
tourOrderDetailDialogEvent(e) {
this.tourDialogVisible = false;
},
/**
* 点击事件
* */
toShowDialog(item, iitem, ii){
// <!--bookType 1-租车、2-分公司使用、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用、9、客户用车、10、其他-->
if(!ii.bg){
toShowDialog(item, iitem, ii) {
// <!--bookType 1-租车、2-分公司使用、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用、9、客户用车、10、其他-->
if (!ii.bg) {
//空白-可安排用车
// this.anpai = true;
// let arr = item.vehicleModel.keyword.split(",");
// item.vehicleModel.keyword = arr.join(" | ");
// this.currentItem = {item: item, iitem: iitem, ii: ii};
} else {
if(ii.vehicleBookRecord.status == 1){//审核中的显示预约弹框
if (ii.vehicleBookRecord.status == 1) {
//审核中的显示预约弹框
this.zhanlan = true;
this.currentItem = {item: item, iitem: iitem, ii: ii, title: "预定用车"};
}else{
if(ii.bookType == 6){
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "预定用车",
};
} else {
if (ii.bookType == 6) {
//保养
this.baoyang = true;
this.currentItem = {item: item, iitem: iitem, ii: ii};
} else if(ii.bookType == 3){
this.currentItem = { item: item, iitem: iitem, ii: ii };
} else if (ii.bookType == 3) {
//维修
this.zhanlan = true;
this.currentItem = {item: item, iitem: iitem, ii: ii,title: "维修",upkeepName:'维修'};
} else if(ii.bookType == 4){
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "维修",
upkeepName: "维修",
};
} else if (ii.bookType == 4) {
//展览
this.zhanlan = true;
this.currentItem = {item: item, iitem: iitem, ii: ii, title: "展览用车",upkeepName:'展览'};
} else if(ii.bookType == 7){
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "展览用车",
upkeepName: "展览",
};
} else if (ii.bookType == 7) {
this.zhanlan = true;
this.currentItem = {item: item, iitem: iitem, ii: ii, title: "预定用车",upkeepName:'预定'};
} else if(ii.bookType == 1){
if(!ii.vehicleBookRecord.orderNo){
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "预定用车",
upkeepName: "预定",
};
} else if (ii.bookType == 1) {
if (!ii.vehicleBookRecord.orderNo) {
this.$notify({
title: '警告',
message: '订单号缺失',
type: 'warning',
duration: 2000
title: "警告",
message: "订单号缺失",
type: "warning",
duration: 2000,
});
return false;
} else{
} else {
this.getOneVechi(ii.vehicleBookRecord.orderNo);
}
this.currentItem = {item: item, iitem: iitem, ii: ii, title: "租车订单"};
} else if(ii.bookType == 9){
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "租车订单",
};
} else if (ii.bookType == 9) {
this.zhanlan = true;
this.currentItem = {item: item, iitem: iitem, ii: ii,title: "客户用车",upkeepName:'客户用车'};
} else if(ii.bookType == 5) {
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "客户用车",
upkeepName: "客户用车",
};
} else if (ii.bookType == 5) {
//房车游订单详情
this.zhanlan = true;
this.currentItem = {item: item, iitem: iitem, ii: ii, title: "房车游",upkeepName:'房车游'};
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "房车游",
upkeepName: "房车游",
};
// if(!ii.vehicleBookRecord.orderNo){
// this.$notify({
// title: '警告',
......@@ -605,13 +921,24 @@
// this.tourRow = {no: ii.vehicleBookRecord.orderNo};
// this.tourDialogVisible = true
// }
} else if(ii.bookType == 8) {
} else if (ii.bookType == 8) {
//禁用
this.jinyong = true;
this.currentItem = {item: item, iitem: iitem, ii: ii, title: "禁用"};
} else if(ii.bookType == 10) {
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "禁用",
};
} else if (ii.bookType == 10) {
this.zhanlan = true;
this.currentItem = {item: item, iitem: iitem, ii: ii,title: "其他",upkeepName:'其他'};
this.currentItem = {
item: item,
iitem: iitem,
ii: ii,
title: "其他",
upkeepName: "其他",
};
}
}
}
......@@ -619,48 +946,55 @@
/**
* 根据订单号获取订单详情
* */
getOneVechi: function(orderNo) {
getOneVechi: function (orderNo) {
let params = {
orderNo: orderNo
orderNo: orderNo,
};
getVehicleOrderDetail(params).then(res => {
getVehicleOrderDetail(params).then((res) => {
if (res.status == 200) {
let a = res.data;
let vehicleUserLicenses = {};
// if (a.status == 5) {
// vehicleUserLicenses = {
// name: a.orderVehicleCrosstownDto.licenseName,
// phone: a.orderVehicleCrosstownDto.licensePhone,
// idCard: a.orderVehicleCrosstownDto.licenseIdCard
// };
// } else {
// if (a.vehicleUserLicenses.length > 0) {
// vehicleUserLicenses = a.vehicleUserLicenses[0];
// }
// }
a.orderRentVehicleDetail.startTime = timestamp2Date(a.orderRentVehicleDetail.startTime);
a.orderRentVehicleDetail.endTime = timestamp2Date(a.orderRentVehicleDetail.endTime);
// if (a.status == 5) {
// vehicleUserLicenses = {
// name: a.orderVehicleCrosstownDto.licenseName,
// phone: a.orderVehicleCrosstownDto.licensePhone,
// idCard: a.orderVehicleCrosstownDto.licenseIdCard
// };
// } else {
// if (a.vehicleUserLicenses.length > 0) {
// vehicleUserLicenses = a.vehicleUserLicenses[0];
// }
// }
a.orderRentVehicleDetail.startTime = timestamp2Date(
a.orderRentVehicleDetail.startTime
);
a.orderRentVehicleDetail.endTime = timestamp2Date(
a.orderRentVehicleDetail.endTime
);
let arr = a.picture ? a.picture.split(",") : [];
a.picture = arr.length > 0 ? arr[0] : "";
a.payTime = timestamp2Date(a.payTime);
this.rentOrderInfo = a;
this.costDetail = JSON.parse(this.rentOrderInfo.orderRentVehicleDetail.costDetail);
var cost = '';
this.costDetail.children.map(function(a) {
cost += a.key + ":" +a.detail+" ";
this.costDetail = JSON.parse(
this.rentOrderInfo.orderRentVehicleDetail.costDetail
);
var cost = "";
this.costDetail.children.map(function (a) {
cost += a.key + ":" + a.detail + " ";
});
this.rentCostDetail = cost;
if(this.rentOrderInfo.orderRentVehicleDetail.driverType==1) {
this.serviceCost = this.rentOrderInfo.orderRentVehicleDetail.dayNum * 600
if (this.rentOrderInfo.orderRentVehicleDetail.driverType == 1) {
this.serviceCost =
this.rentOrderInfo.orderRentVehicleDetail.dayNum * 600;
}
this.rentOrder = true;
} else {
this.$notify({
title: '失败',
message: '操作失败!',
type: 'error',
duration: 2000
title: "失败",
message: "操作失败!",
type: "error",
duration: 2000,
});
}
});
......@@ -668,9 +1002,10 @@
/**
* 关闭保养弹框后逻辑处理
* */
baoyangDialogEvent(e){
baoyangDialogEvent(e) {
this.baoyang = false;
if(e){//关闭编辑
if (e) {
//关闭编辑
//编辑成功-重新加载列表
this.getList();
}
......@@ -678,9 +1013,10 @@
/**
* 关闭展览弹框后逻辑处理
* */
zhanlanDialogEvent(e){
zhanlanDialogEvent(e) {
this.zhanlan = false;
if(e){//关闭编辑
if (e) {
//关闭编辑
//编辑成功-重新加载列表
this.getList();
}
......@@ -688,9 +1024,10 @@
/**
* 禁用弹框关闭后逻辑处理
* */
jinyongDialogEvent(e){
jinyongDialogEvent(e) {
this.jinyong = false;
if(e){//关闭编辑
if (e) {
//关闭编辑
//编辑成功-重新加载列表
this.getList();
}
......@@ -698,9 +1035,10 @@
/**
* 安排用车弹框关闭逻辑处理
* */
anpaiDialogEvent(e){
anpaiDialogEvent(e) {
this.anpai = false;
if(e){//关闭编辑
if (e) {
//关闭编辑
//编辑成功-重新加载列表
this.getList();
}
......@@ -708,7 +1046,7 @@
/**
* 租车订单详情弹框关闭
* */
rentOrderDetailDialogEvent(e){
rentOrderDetailDialogEvent(e) {
this.rentOrder = false;
},
/**
......@@ -717,36 +1055,35 @@
getProvinceRegions(item) {
this.listQuery.zoneId = item;
this.listQuery.subordinateBranch = undefined;
getAllBranchCompanyByZoneId({zoneId: item})
.then(response => {
getAllBranchCompanyByZoneId({ zoneId: item }).then((response) => {
this.allBranchCompany = response.data;
})
});
},
/**
* 选择分公司
* */
getAllBranchCompanyChange(item) {
this.listQuery.subordinateBranch = item
this.listQuery.subordinateBranch = item;
},
/**
* 鼠标移入
* */
handelOver(){
handelOver() {
clearInterval(this.mar);
},
/**
* 鼠标移出
* */
handelOut(){
handelOut() {
this.mar = setInterval(this.showMarquee, 2000);
},
/**
* 立即处理
* */
toVehicleWarningMsg(){
this.$router.push({path: '/vehicle/vehicleWarningMsg'});
toVehicleWarningMsg() {
this.$router.push({ path: "/vehicle/vehicleWarningMsg" });
},
showMarquee: function() {
showMarquee: function () {
this.animate = true;
setTimeout(() => {
this.marqueeList.push(this.marqueeList[0]);
......@@ -760,8 +1097,8 @@
/**
* 所属分公司
* */
handleSelectSubordinate(item){
if(item.value == "无"){
handleSelectSubordinate(item) {
if (item.value == "无") {
this.listQuery.subordinateBranch = undefined;
this.listQuery.subordinateBranchName = "无";
} else {
......@@ -772,8 +1109,8 @@
/**
* 停靠分公司
* */
handleSelectPark(item){
if(item.value == "无"){
handleSelectPark(item) {
if (item.value == "无") {
this.listQuery.parkBranchCompanyId = undefined;
this.listQuery.parkBranchCompanyName = "无";
} else {
......@@ -785,21 +1122,23 @@
let selectArry = [];
let iitem = {
value: "无",
name: "无"
name: "无",
};
selectArry.push(iitem);
this.allCompaniesArr.map(function(item){
this.allCompaniesArr.map(function (item) {
item.value = item.name;
selectArry.push(item);
});
this.selectArry = selectArry;
var results = queryString ? selectArry.filter(this.createFilter(queryString)) : selectArry;
var results = queryString
? selectArry.filter(this.createFilter(queryString))
: selectArry;
// 调用 callback 返回建议列表的数据
cb(results);
},
createFilter(queryString) {
return (restaurant) => {
return (restaurant.name.indexOf(queryString.toLowerCase()) != -1);
return restaurant.name.indexOf(queryString.toLowerCase()) != -1;
};
},
/**
......@@ -808,67 +1147,73 @@
getList() {
let _this = this;
this.listLoading = true;
if(this.listQuery.startTime && (typeof this.listQuery.startTime == "object")){
if (
this.listQuery.startTime &&
typeof this.listQuery.startTime == "object"
) {
this.listQuery.startTime = this.listQuery.startTime.getTime();
}
if(this.listQuery.endTime && (typeof this.listQuery.endTime == "object")){
if (this.listQuery.endTime && typeof this.listQuery.endTime == "object") {
this.listQuery.endTime = this.listQuery.endTime.getTime();
}
getVehiclePlanList(this.listQuery).then(response => {
getVehiclePlanList(this.listQuery).then((response) => {
this.countTJ = response.data.vehicleCountVos;
let totalCountRs = undefined;
let listRs = undefined;
if (!this.$utils.isEmpty(response.data.vehicleAndModelInfoVo) && this.$utils.isInteger(response.data.vehicleAndModelInfoVo.totalCount)) {
if (
!this.$utils.isEmpty(response.data.vehicleAndModelInfoVo) &&
this.$utils.isInteger(response.data.vehicleAndModelInfoVo.totalCount)
) {
listRs = response.data.vehicleAndModelInfoVo.data;
totalCountRs = response.data.vehicleAndModelInfoVo.totalCount;
listRs.map(function(item){
listRs.map(function (item) {
item.visible2 = false;
item.crtTimeStr = timestamp2Date(item.crtTime);
if(item.storeTypeName){
if (item.storeTypeName) {
item.storeTypeName = item.storeTypeName.join("|");
}
// 解析开始时间-结束时间
// item.vehicleBookRecord.map(function (iitem) {
// let bookStartDate = iitem.bookStartDate.substring(0,10);
// let bookEndDate = iitem.bookEndDate.substring(0,10);
// iitem.startHourList = ["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"];
// if(iitem.startHour){
// for(let i = 0; i < iitem.startHour.length;i++){
// iitem.startHourList[i] = iitem.startHour[i]
// }
// }
// iitem.startHourList = iitem.startHourList?iitem.startHourList.reverse(): ["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"];
// let flag = false;//开始时间标识,查找第一个1
// let flagE = false;//结束时间标识,查找第一个0
// let sStart = "00";//开始时间
// let sEnd= "00";//结束时间
// iitem.startHourList.map(function(ic, index){
// let c = index +1;
// if(ic == 1 && !flag){
// if(c<10){
// sStart = "0"+c;
// } else {
// sStart = c
// }
// flag = true;
// }
// });
// if(iitem.endHour){
// if(iitem.endHour.length>=10){
// sEnd = iitem.endHour.length;
// } else {
// sEnd = "0" + iitem.endHour.length;
// }
// }
// iitem.bookStartDate = iitem.bookStartDate.substring(0,10) + " " +sStart + ":00:00";
// iitem.bookEndDate = iitem.bookEndDate.substring(0,10) + " " +sEnd + ":00:00";
// });
// item.temp = _this.getDayList(item);//获取车辆30天排期
item.temp = _this.getMonthDayList(item);//获取车辆30天排期
// 解析开始时间-结束时间
// item.vehicleBookRecord.map(function (iitem) {
// let bookStartDate = iitem.bookStartDate.substring(0,10);
// let bookEndDate = iitem.bookEndDate.substring(0,10);
// iitem.startHourList = ["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"];
// if(iitem.startHour){
// for(let i = 0; i < iitem.startHour.length;i++){
// iitem.startHourList[i] = iitem.startHour[i]
// }
// }
// iitem.startHourList = iitem.startHourList?iitem.startHourList.reverse(): ["0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0"];
// let flag = false;//开始时间标识,查找第一个1
// let flagE = false;//结束时间标识,查找第一个0
// let sStart = "00";//开始时间
// let sEnd= "00";//结束时间
// iitem.startHourList.map(function(ic, index){
// let c = index +1;
// if(ic == 1 && !flag){
// if(c<10){
// sStart = "0"+c;
// } else {
// sStart = c
// }
// flag = true;
// }
// });
// if(iitem.endHour){
// if(iitem.endHour.length>=10){
// sEnd = iitem.endHour.length;
// } else {
// sEnd = "0" + iitem.endHour.length;
// }
// }
// iitem.bookStartDate = iitem.bookStartDate.substring(0,10) + " " +sStart + ":00:00";
// iitem.bookEndDate = iitem.bookEndDate.substring(0,10) + " " +sEnd + ":00:00";
// });
// item.temp = _this.getDayList(item);//获取车辆30天排期
item.temp = _this.getMonthDayList(item); //获取车辆30天排期
});
}
if (!this.$utils.isEmpty(response.data.vehicleWarningMsgs)) {
response.data.vehicleWarningMsgs.map(function(ii){
response.data.vehicleWarningMsgs.map(function (ii) {
ii.color = "warn-" + ii.colorType;
});
this.marqueeList = response.data.vehicleWarningMsgs;
......@@ -878,11 +1223,11 @@
//渲染颜色
this.setColor();
this.total = totalCountRs;
})
});
},
handleFilter() {
this.listQuery.page = 1;
this.$refs.queryForm.validate(valid => {
this.$refs.queryForm.validate((valid) => {
if (valid) {
this.getList();
} else {
......@@ -901,32 +1246,32 @@
/**
* 获取未来30天日历表
* */
getMonthDayList(item){
getMonthDayList(item) {
let temp = [];
let list = this.list;
for(let i = 0; i < 30; i++){
for (let i = 0; i < 30; i++) {
let t = [];
let tymd = getymdTimeByDay(i);
temp.push({day: getTimeByDay(i), month: getMonth(i), time: tymd});
temp.push({ day: getTimeByDay(i), month: getMonth(i), time: tymd });
}
return temp;
},
/**
* 渲染颜色
* */
getDayList(item){
getDayList(item) {
let temp = [];
let list = this.list;
for(let i = 0; i < 30; i++){
for (let i = 0; i < 30; i++) {
let t = [];
let tymd = getymdTimeByDay(i);
let children = [];
let tt = "";//yyyy-MM-dd hh:mm:ss
let tt = ""; //yyyy-MM-dd hh:mm:ss
let h = "";
let bookType = undefined;//当前车辆状态
let vehicleBookRecord = {};//车辆排班信息
for(let ii = 0; ii < 24; ii ++) {
let bookType = undefined; //当前车辆状态
let vehicleBookRecord = {}; //车辆排班信息
for (let ii = 0; ii < 24; ii++) {
if (ii < 10) {
h = "0" + ii;
tt = tymd + " 0" + ii + ":00:00";
......@@ -934,26 +1279,37 @@
tt = tymd + " " + ii + ":00:00";
h = ii;
}
let bg = "";//背景色
let bg = ""; //背景色
let pp = {};
pp.time = tt;
pp.h = h;
item.vehicleBookRecord.map(function (iitem) {
if (iitem.bookStartDate <= tt && iitem.bookEndDate >=tt) {
// <!--bookType 2-分公司使用、1-租车、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用-->
if(iitem.bookStartDate == tt && (iitem.bookType == 1 || iitem.bookType == 5 || iitem.bookType == 4) && iitem.status == 2){//租车、旅游、展览显示起止时间
if (iitem.bookStartDate <= tt && iitem.bookEndDate >= tt) {
// <!--bookType 2-分公司使用、1-租车、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用-->
if (
iitem.bookStartDate == tt &&
(iitem.bookType == 1 ||
iitem.bookType == 5 ||
iitem.bookType == 4) &&
iitem.status == 2
) {
//租车、旅游、展览显示起止时间
pp.timeStr = h;
}
if(iitem.status == 1){
if (iitem.status == 1) {
//审核中
pp.bg = "bg-7";
} else {
pp.bg = "bg-"+ iitem.bookType;
pp.bg = "bg-" + iitem.bookType;
}
pp.vehicleBookRecord = iitem;
pp.bookType = iitem.bookType;
if(iitem.bookEndDate == tt && iitem.status == 2){
if (iitem.bookType == 1 || iitem.bookType == 5 || iitem.bookType == 4){
if (iitem.bookEndDate == tt && iitem.status == 2) {
if (
iitem.bookType == 1 ||
iitem.bookType == 5 ||
iitem.bookType == 4
) {
pp.timeEtr = h;
}
pp.bg = "";
......@@ -962,25 +1318,29 @@
});
children.push(pp);
}
temp.push({day: getTimeByDay(i), month: getMonth(i), children: children});
temp.push({
day: getTimeByDay(i),
month: getMonth(i),
children: children,
});
}
return temp;
},
/**
* 获取日期数组
* */
setColor(){
setColor() {
let temp = [];
this.list.map(function(item){
let endTime = '';
item.temp.map(function(ttemp){
this.list.map(function (item) {
let endTime = "";
item.temp.map(function (ttemp) {
let children = [];
let tt = "";//yyyy-MM-dd hh:mm:ss
let tt = ""; //yyyy-MM-dd hh:mm:ss
let h = "";
let bookType = undefined;//当前车辆状态
let vehicleBookRecord = {};//车辆排班信息
for(let ii = 0; ii < 24; ii ++) {
let bookType = undefined; //当前车辆状态
let vehicleBookRecord = {}; //车辆排班信息
for (let ii = 0; ii < 24; ii++) {
if (ii < 10) {
h = "0" + ii;
tt = ttemp.time + " 0" + ii + ":00:00";
......@@ -988,32 +1348,43 @@
tt = ttemp.time + " " + ii + ":00:00";
h = ii;
}
let bg = "";//背景色
let bg = ""; //背景色
let pp = {};
pp.time =tt;
pp.time = tt;
pp.h = h;
item.vehicleBookRecord.map(function (iitem) {
if (iitem.bookStartDate <= tt && iitem.bookEndDate >=tt) {
// <!--bookType 2-分公司使用、1-租车、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用-->
if(iitem.bookStartDate == tt && (iitem.bookType == 1 || iitem.bookType == 5 || iitem.bookType == 4) && iitem.status == 2){//租车、旅游、展览显示起止时间
if (iitem.bookStartDate <= tt && iitem.bookEndDate >= tt) {
// <!--bookType 2-分公司使用、1-租车、3-维修、4、展览、5、旅游、6、保养、7、预约中、8、禁用-->
if (
iitem.bookStartDate == tt &&
(iitem.bookType == 1 ||
iitem.bookType == 5 ||
iitem.bookType == 4) &&
iitem.status == 2
) {
//租车、旅游、展览显示起止时间
pp.timeStr = h;
}
if(iitem.status == 1){
if (iitem.status == 1) {
//审核中
pp.bg = "bg-7";
} else {
pp.bg = "bg-"+ iitem.bookType;
pp.bg = "bg-" + iitem.bookType;
}
pp.vehicleBookRecord = iitem;
pp.bookType = iitem.bookType;
if(iitem.bookEndDate == tt && iitem.status == 2){
if (iitem.bookType == 1 || iitem.bookType == 5 || iitem.bookType == 4){
if (iitem.bookEndDate == tt && iitem.status == 2) {
if (
iitem.bookType == 1 ||
iitem.bookType == 5 ||
iitem.bookType == 4
) {
pp.timeEtr = h;
if(h == "00"){
if (h == "00") {
let cc = new Date(tt);
console.log(cc);
let te = cc.getTime()-24*60*60;
endTime = timestamp2Date(te).substring(0, 13) +":00:00";
let te = cc.getTime() - 24 * 60 * 60;
endTime = timestamp2Date(te).substring(0, 13) + ":00:00";
console.log(endTime);
}
}
......@@ -1023,7 +1394,7 @@
});
children.push(pp);
}
ttemp.children = children
ttemp.children = children;
});
});
console.log(this.list);
......@@ -1031,22 +1402,28 @@
/**
* tempDayList
**/
getTempDayList(){
getTempDayList() {
let temp = [];
for(let i = 0; i < 30; i++){
for (let i = 0; i < 30; i++) {
let t = [];
let tymd = getymdTimeByDay(i);
temp.push({day: getTimeByDay(i), month: getMonth(i), time: tymd});
temp.push({ day: getTimeByDay(i), month: getMonth(i), time: tymd });
}
this.tempDayList = temp;
},
/**
* 排版记录
*/
toVehicleRecords(item){
toVehicleRecords(item) {
let selectedMonth = getCurrentYearMonth();
this.$router.push({path: '/vehicle/vehicleRecords?selectedMonth='+selectedMonth+"&numberPlate="+item.numberPlate});
}
}
}
this.$router.push({
path:
"/vehicle/vehicleRecords?selectedMonth=" +
selectedMonth +
"&numberPlate=" +
item.numberPlate,
});
},
},
};
</script>
......@@ -5,7 +5,7 @@
<el-form ref="queryForm" :inline="inline" :model="listQuery" label-width="80px">
<el-row>
<el-form-item label="所属公司">
<el-select v-model="listQuery.corporationId" placeholder="请选择">
<el-select v-model="listQuery.branchId" placeholder="请选择">
<el-option label="全部" :key="undefined" :value="undefined"></el-option>
<el-option
v-for="val in companys_list"
......@@ -45,35 +45,41 @@
<div class="label_box">
<div class="label_item top_color_bule">
<p class="money_p">
<span></span>1,000,000.00
<span></span>
{{all_amount}}
</p>
<p class="money_label">总营收金额</p>
</div>
<div class="label_item top_color_bule2">
<p class="money_p">
<span></span>1,000,000.00
<span></span>
{{orderAmount}}
</p>
<p class="money_label">订单&服务营收</p>
</div>
<div class="label_item top_color_origin">
<p class="money_p">
<span></span>1,000,000.00
<span></span>
{{otherAmount}}
</p>
<p class="money_label">额外赔偿(违约金等)</p>
</div>
<div class="label_item top_color_yellow">
<p class="money_p">
<span></span>1,000,000.00
<span></span>
{{withdrawals}}
</p>
<p class="money_label">已提现金额</p>
</div>
<div class="label_item top_color_red">
<p class="money_p">
<span></span>1,000,000.00
<span></span>
{{balance}}
</p>
<p class="money_label">
可提现金额,
<a>立即提现 ></a>
<a @click="company_withdraw" v-show="elements['company_with']">立即提现 ></a>
<a @click="mendian_withdraw" v-show="elements['store_with']">立即提现 ></a>
</p>
</div>
</div>
......@@ -85,13 +91,15 @@
<el-date-picker
type="date"
placeholder="开始时间"
v-model="listQuery.daystart"
v-model="startTime"
format="yyyy-MM-dd"
style="width: 40%;"
></el-date-picker>&nbsp;
<el-date-picker
type="date"
placeholder="结束时间"
v-model="listQuery.dayend"
v-model="endTime"
format="yyyy-MM-dd"
style="width: 40%;"
></el-date-picker>
</el-form-item>
......@@ -100,20 +108,13 @@
</div>
</div>
<el-table :key="tableKey" :data="list" border fit highlight-current-row style="width: 100%;">
<el-table-column align="center" label="公司名称" prop="name"></el-table-column>
<el-table-column align="center" label="联系人/电话">
<template slot-scope="{row}">
<span>{{row.contact}}/{{row.mobile}}</span>
</template>
</el-table-column>
<el-table-column align="center" label="法人姓名" prop="legalPerson"></el-table-column>
<el-table-column align="center" label="法人身份证" prop="legalIdNumber"></el-table-column>
<el-table-column align="center" label="操作">
<template slot-scope="{row}">
<el-button type="text" @click="withdraw(row)">提现</el-button>
</template>
</el-table-column>
<el-table-column align="center" label="类型" prop="typeName"></el-table-column>
<el-table-column align="center" label="订单号/提现号" prop="cono"></el-table-column>
<el-table-column align="center" label="收支说明" prop="sourceName"></el-table-column>
<el-table-column align="center" label="所属公司" prop="branchName"></el-table-column>
<el-table-column align="center" label="所属门店" prop="companyName"></el-table-column>
<el-table-column align="center" label="金额" prop="amount"></el-table-column>
<el-table-column align="center" label="剩余金额" prop="samount"></el-table-column>
</el-table>
<div v-show="!listLoading" class="pagination-container">
<el-pagination
......@@ -127,6 +128,44 @@
></el-pagination>
</div>
</div>
<el-dialog title="公司提现" :visible.sync="c_w_dialog" width="40%" @close="c_w_dialog=false">
<el-form>
<div style="display:flex;justify-content: space-between;">
<el-col :span="10">
<el-form-item label="银行账号">
<el-input style="width:70%"></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="全部提现">
<el-switch active-color="#13ce66" inactive-color="#ff4949"></el-switch>
</el-form-item>
</el-col>
</div>
<el-table></el-table>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="c_w_dialog = false">取 消</el-button>
<el-button type="primary">确 定</el-button>
</span>
</el-dialog>
<el-dialog title="门店提现" :visible.sync="m_w_dialog" width="30%" @close="m_w_dialog=false">
<el-form ref="form" :model="form" label-width="80px">
<el-form-item label="剩余金额">
<el-input style="width:60%"></el-input>
</el-form-item>
<el-form-item label="提现金额">
<el-input style="width:60%"></el-input>
</el-form-item>
<el-form-item label="银行账号">
<el-input style="width:60%"></el-input>
</el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="m_w_dialog = false">取 消</el-button>
<el-button type="primary">确 定</el-button>
</span>
</el-dialog>
</div>
</template>
......@@ -154,7 +193,12 @@ import Element1 from "../admin/menu/components/element";
import ElRow from "element-ui/packages/row/src/row";
import ElCol from "element-ui/packages/col/src/col";
import { getToken } from "utils/auth";
import { company_all_list, branchCompany_all_list } from "api/company.js";
import {
company_all_list,
branchCompany_all_list,
revenue_sum_list,
revenue_sum_count,
} from "api/company.js";
export default {
name: "carApplyList",
......@@ -171,19 +215,28 @@ export default {
list: null,
total: null,
listLoading: true,
startTime: undefined,
endTime: undefined,
listQuery: {
page: 1,
limit: 10,
companyId: undefined,
corporationId: undefined,
daystart: "",
dayend: "",
branchId: undefined,
startTime: undefined,
endTime: undefined,
},
inline: true,
tableKey: 0,
btn_disable: null,
companys_list: [],
branchCompany_list: [],
c_w_dialog: false,
m_w_dialog: false,
balance: undefined,
orderAmount: undefined,
otherAmount: undefined,
withdrawals: undefined,
all_amount: undefined,
};
},
created() {
......@@ -223,10 +276,25 @@ export default {
* */
getList() {
this.listLoading = true;
company_list(this.listQuery).then((response) => {
console.log(response);
if (this.startTime) {
this.listQuery.startTime = Date.parse(this.startTime);
}
if (this.endTime) {
this.listQuery.endTime = Date.parse(this.endTime);
}
revenue_sum_count(this.listQuery).then((res) => {
this.balance = res.data.balance;
this.orderAmount = res.data.orderAmount;
this.otherAmount = res.data.otherAmount;
this.withdrawals = res.data.withdrawals;
this.all_amount = (
Number(res.data.otherAmount) + Number(res.data.orderAmount)
).toFixed(2);
});
revenue_sum_list(this.listQuery).then((response) => {
let totalCountRs = undefined;
let listRs = undefined;
if (
!this.$utils.isEmpty(response.data.data) &&
this.$utils.isInteger(response.data.totalCount)
......@@ -236,6 +304,7 @@ export default {
}
this.listLoading = false;
this.list = listRs;
console.log(response.data.data);
this.total = totalCountRs;
});
},
......@@ -254,10 +323,12 @@ export default {
page: 1,
limit: 10,
companyId: undefined,
corporationId: undefined,
daystart: "",
dayend: "",
branchId: undefined,
startTime: undefined,
endTime: undefined,
};
this.startTime = undefined;
this.endTime = undefined;
this.getList();
},
handleSizeChange(val) {
......@@ -268,6 +339,12 @@ export default {
this.listQuery.page = val;
this.getList();
},
company_withdraw() {
this.c_w_dialog = true;
},
mendian_withdraw() {
this.m_w_dialog = true;
},
},
};
</script>
......@@ -337,10 +414,8 @@ export default {
color: rgba(189, 189, 189, 1);
font-size: 14px;
a {
&:first-child {
color: blue;
}
}
}
.label_filter {
div {
......
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