|
@@ -3,7 +3,197 @@
|
|
|
* @Author: wangcc
|
|
|
* @Date: 2023-01-09 11:20:54
|
|
|
* @LastEditors: wangcc
|
|
|
- * @LastEditTime: 2023-01-09 11:22:05
|
|
|
+ * @LastEditTime: 2023-01-11 17:52:38
|
|
|
* @FilePath: \parking_LargeScreen\src\components\Receivables\Receivables.vue
|
|
|
* @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved.
|
|
|
-->
|
|
|
+<template>
|
|
|
+ <div class="receivables-box">
|
|
|
+ <div class="total-box">
|
|
|
+ <div class="item-list">
|
|
|
+ <div class="list-img">
|
|
|
+ <img src="@/assets/images/park_ico.png" alt />
|
|
|
+ </div>
|
|
|
+ <div class="total-num-box">
|
|
|
+ <span class="total-title">{{countName}}</span>
|
|
|
+ <span class="total-num">{{totalData.roadTotal}}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item-list">
|
|
|
+ <div class="list-img">
|
|
|
+ <img src="@/assets/images/car_ico.png" alt />
|
|
|
+ </div>
|
|
|
+ <div class="total-num-box">
|
|
|
+ <span class="total-title">车位数(个)</span>
|
|
|
+ <span class="total-num">{{totalData.spaceTotal}}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item-list">
|
|
|
+ <div class="list-img">
|
|
|
+ <img src="@/assets/images/total_money_ico.png" alt />
|
|
|
+ </div>
|
|
|
+ <div class="total-num-box">
|
|
|
+ <span class="total-title">累计实收(元)</span>
|
|
|
+ <span class="total-num">{{totalData.realAmount}}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="item-list">
|
|
|
+ <div class="list-img">
|
|
|
+ <img src="@/assets/images/total_parking_ico.png" alt />
|
|
|
+ </div>
|
|
|
+ <div class="total-num-box">
|
|
|
+ <span class="total-title">累计停车次数(次)</span>
|
|
|
+ <span class="total-num">{{totalData.countVehicle}}</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="toDay-total">
|
|
|
+ <div class="orders-num">
|
|
|
+ <h4>今日累计完成订单数(笔)</h4>
|
|
|
+ <CountFlop :val="amountData.countVehicle" />
|
|
|
+ </div>
|
|
|
+ <div class="orders-num">
|
|
|
+ <h4>今日累计完成交易金额(元)</h4>
|
|
|
+ <CountFlop :val="amountData.realAmount" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+// import CountFlop from 'vue-count-to';
|
|
|
+import CountFlop from '@/components/CountFlop/countFlop.vue';
|
|
|
+import { totalData, amtVehicle } from '@/api/http';
|
|
|
+export default {
|
|
|
+ name: 'Receivables',
|
|
|
+ components: {
|
|
|
+ CountFlop
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ amountData: {
|
|
|
+ countVehicle: '',
|
|
|
+ realAmount:''
|
|
|
+ },
|
|
|
+ totalData: {},
|
|
|
+ countName: '路段数量(个)',
|
|
|
+ searchFrom: {
|
|
|
+ isRoad: '1'
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getTotalData();
|
|
|
+ this.getAmtVehicle()
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ '$store.state.addr.isRoad': {
|
|
|
+ handler(val) {
|
|
|
+ console.log(val);
|
|
|
+ if (val == 0) {
|
|
|
+ this.countName = '停车场数量(个)';
|
|
|
+ } else {
|
|
|
+ this.countName = '路段数量(个)';
|
|
|
+ }
|
|
|
+ this.searchFrom.isRoad = val;
|
|
|
+ this.getTotalData();
|
|
|
+ this.getAmtVehicle()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ async getTotalData() {
|
|
|
+ let { code, data } = await totalData(this.searchFrom);
|
|
|
+ if (code == 200) {
|
|
|
+ this.totalData = data;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ async getAmtVehicle() {
|
|
|
+ let { code, data } = await amtVehicle(this.searchFrom);
|
|
|
+ if (code == 200) {
|
|
|
+ data.countVehicle = data.countVehicle.toString()
|
|
|
+ data.realAmount = data.realAmount.toString()
|
|
|
+ this.amountData = data;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang='scss' scoped>
|
|
|
+.receivables-box {
|
|
|
+ position: absolute;
|
|
|
+ left: 21px;
|
|
|
+ top: 118px;
|
|
|
+ overflow: hidden;
|
|
|
+ z-index: 1001;
|
|
|
+ .total-box {
|
|
|
+ background: linear-gradient(90deg, #293446 0%, rgba(41, 52, 70, 0.2) 100%);
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
+ width: 420px;
|
|
|
+ overflow: hidden;
|
|
|
+ padding: 20px;
|
|
|
+ float: left;
|
|
|
+ .item-list {
|
|
|
+ display: inline-block;
|
|
|
+ width: 210px;
|
|
|
+ text-align: left;
|
|
|
+
|
|
|
+ .list-img {
|
|
|
+ width: 53px;
|
|
|
+ height: 53px;
|
|
|
+ float: left;
|
|
|
+ img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .total-num-box {
|
|
|
+ margin-left: 15px;
|
|
|
+ display: inline-flex;
|
|
|
+ flex-direction: column;
|
|
|
+ text-align: left;
|
|
|
+ .total-title {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #d1d3d7;
|
|
|
+ }
|
|
|
+ .total-num {
|
|
|
+ font-size: 26px;
|
|
|
+ color: #fff;
|
|
|
+ line-height: 34px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .item-list:first-child,
|
|
|
+ .item-list:nth-child(2) {
|
|
|
+ margin-bottom: 28px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .toDay-total {
|
|
|
+ background: RGBA(24, 33, 52, 0.3);
|
|
|
+ backdrop-filter: blur(10px);
|
|
|
+ display: inline-flex;
|
|
|
+ margin-left: 12px;
|
|
|
+ height: 82px;
|
|
|
+ // align-items: center;
|
|
|
+ padding: 20px;
|
|
|
+ .orders-num {
|
|
|
+ // display: inline-flex;
|
|
|
+ // flex-direction: column;
|
|
|
+ text-align: left;
|
|
|
+ h4 {
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #d1d3d7;
|
|
|
+ line-height: 21px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ .count-number {
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .orders-num:first-child {
|
|
|
+ margin-right: 30px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|