Commit a6222297 authored by guoyou's avatar guoyou

Merge branch 'base-modify' of http://113.105.137.151:22280/youjj/cloud-platform-ui into base-modify

parents 9585ba8a 240c8273
...@@ -729,12 +729,7 @@ export const asyncRouterMap = [{ ...@@ -729,12 +729,7 @@ export const asyncRouterMap = [{
component: _import('statistics/orderStatistics'), component: _import('statistics/orderStatistics'),
name: '订单统计', name: '订单统计',
authority: 'orderStatistics' authority: 'orderStatistics'
}, { }
path: 'vehicleStatistics',
component: _import('statistics/vehicleStatistics'),
name: '车辆统计',
authority: 'vehicleStatistics'
}
] ]
}, },
{ {
...@@ -759,7 +754,12 @@ export const asyncRouterMap = [{ ...@@ -759,7 +754,12 @@ export const asyncRouterMap = [{
component: _import('financial/branchCompany'), component: _import('financial/branchCompany'),
name: '总公司报表', name: '总公司报表',
authority: 'branchCompany' authority: 'branchCompany'
} }, {
path: 'vehicleStatistics',
component: _import('financial/vehicleStatistics'),
name: '车辆统计',
authority: 'vehicleStatistics'
}
] ]
} }
]; ];
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
filterable filterable
placeholder="请选择" placeholder="请选择"
getAllBranchCompanyChange getAllBranchCompanyChange
> >
<el-option :key="undefined" label="无" :value="undefined"></el-option> <el-option :key="undefined" label="无" :value="undefined"></el-option>
<el-option <el-option
v-for="item in allBranchCompany" v-for="item in allBranchCompany"
...@@ -65,7 +65,10 @@ ...@@ -65,7 +65,10 @@
</el-table-column> </el-table-column>
<el-table-column align="center" label="停靠车辆数量"> <el-table-column align="center" label="停靠车辆数量">
<template scope="scope"> <template scope="scope">
<span>{{scope.row.vehicleNum}}</span> <!-- <span>{{scope.row.vehicleNum}}</span>
--> <span v-if="listQuery.type==1">{{scope.row.vehicleNum}}</span>
<span v-if="listQuery.type==2">{{Math.ceil(scope.row.vehicleNum/7)}}</span>
<span v-if="listQuery.type==3">{{Math.ceil(scope.row.vehicleNum/30)}}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
</el-form> </el-form>
<table cellpadding="0" cellspacing="0" style=" width: 100%; border: 2px solid rgba(131, 145, 165, 0.43) "> <!-- <table cellpadding="0" cellspacing="0" style=" width: 100%; border: 2px solid rgba(131, 145, 165, 0.43) ">
<tbody class="el-date-table" style=""> <tbody class="el-date-table" style="">
<tr style="font-size: 30px"> <tr style="font-size: 30px">
<th style="font-size: 30px"></th> <th style="font-size: 30px"></th>
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
</td> </td>
</tr> --> </tr> -->
</tbody> </tbody>
</table> </table> -->
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click="cancel4BookInfo('form4BookInfo')">确 定</el-button> <el-button @click="cancel4BookInfo('form4BookInfo')">确 定</el-button>
</div> </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