|
@@ -13,7 +13,7 @@
|
|
|
class="invoice-navbar"
|
|
|
slot="top"
|
|
|
>
|
|
|
- <view slot="right" class="invoice-navbar-right" @click="addInvoice">开发票</view>
|
|
|
+ <view slot="right" class="invoice-navbar-right" @click="addInvoice">申请开票</view>
|
|
|
</u-navbar>
|
|
|
<!-- 列表 -->
|
|
|
<view class="invoice-list">
|
|
@@ -25,20 +25,22 @@
|
|
|
<template v-if="child.type === 'money'">
|
|
|
<text class="money">¥{{ item[child.key] }}</text>
|
|
|
</template>
|
|
|
- <template v-else-if="child.type === 'status'">
|
|
|
- <text class="status">
|
|
|
- {{ item[child.key] }}
|
|
|
- </text>
|
|
|
- <u-tag :text="formatStatus(item['status'])" :type="formatStatusType(item['status'])" mode="dark" />
|
|
|
+ <template v-else-if="child.type === 'time'">
|
|
|
+ <text class="time">{{ item[child.key] }}</text>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- {{ item[child.key] }}
|
|
|
+ <text>{{ item[child.key] }}</text>
|
|
|
</template>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="invoice-list-item-right">
|
|
|
- <u-icon name="arrow-right" color="#909399" size="28" />
|
|
|
+ <view class="arrow-right">
|
|
|
+ <u-icon name="arrow-right" color="#909399" size="28" />
|
|
|
+ </view>
|
|
|
+ <view>
|
|
|
+ <text :class="formatStatusType(item['status'])">{{ formatStatus(item['status']) }}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -54,9 +56,9 @@ export default {
|
|
|
return {
|
|
|
invoiceList: [],
|
|
|
invoiceObjectList: [
|
|
|
- { label: '', key: 'title', type: 'status' },
|
|
|
{ label: '', key: 'price', type: 'money' },
|
|
|
- { label: '申请时间:', key: 'applyTime' }
|
|
|
+ { label: '', key: 'title', type: 'status' },
|
|
|
+ { label: '申请时间:', key: 'applyTime', type: 'time' }
|
|
|
],
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
@@ -125,7 +127,7 @@ export default {
|
|
|
{ id: 4, title: '停车服务', price: 0.03, applyTime: '2023-06-12 11:21:30', status: 1 }
|
|
|
]);
|
|
|
},
|
|
|
- /**
|
|
|
+ /**
|
|
|
* @description: 获取发票列表
|
|
|
* @return {*}
|
|
|
*/
|