|
@@ -67,7 +67,11 @@
|
|
|
(ids.indexOf(item.id) > -1 || tabIndex == 2) && 'active',
|
|
|
]"
|
|
|
>
|
|
|
- ¥{{ (item.payfee / 100).toFixed(2) }}
|
|
|
+ ¥{{
|
|
|
+ (
|
|
|
+ item[tabIndex == 1 ? 'payfee' : 'invoiceAmount'] / 100
|
|
|
+ ).toFixed(2)
|
|
|
+ }}
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="line"></div>
|
|
@@ -107,15 +111,17 @@
|
|
|
开票时间:
|
|
|
{{ item.paperDrewDate ? item.paperDrewDate : '-' }}
|
|
|
</div>
|
|
|
- <div class="choice_card_index mb0">
|
|
|
- 停车时长: {{ item.serviceMin | parkingTime }}
|
|
|
- </div>
|
|
|
+ <!-- <div class="choice_card_index mb0">
|
|
|
+ 停车时长: <span>{{ item.serviceMin | parkingTime }}</span> _{{
|
|
|
+ item.serviceMin
|
|
|
+ }}
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
<!-- 0:已提交申请(待开票) 1:开票中 2:开票完成 3:开票失败 -->
|
|
|
<div class="choice_card_status">
|
|
|
{{
|
|
|
- ['开票中', '开票完成', '开票失败'][
|
|
|
+ ['已提交申请(待开票)', '开票中', '开票完成', '开票失败'][
|
|
|
item.status ? item.status : 1
|
|
|
]
|
|
|
}}
|
|
@@ -160,7 +166,7 @@ import moment from 'moment';
|
|
|
import arrowIcon from '../static/images/arrows.png';
|
|
|
import noData from '@/static/images/parkingReceipt-noData.png';
|
|
|
import { mapState } from 'vuex';
|
|
|
-import LoginDom from '@/components/Login/Login.vue'
|
|
|
+import LoginDom from '@/components/Login/Login.vue';
|
|
|
// import authorize from '@/components/authorize/authorize.vue'
|
|
|
import MemberCacheTool from '@/utils/member-cache-tool.js';
|
|
|
import { REG_SOURCE } from '@/constants.js';
|
|
@@ -193,7 +199,7 @@ export default {
|
|
|
},
|
|
|
components: {
|
|
|
// authorize,
|
|
|
- LoginDom
|
|
|
+ LoginDom,
|
|
|
},
|
|
|
computed: {
|
|
|
height() {
|