From 9441c68f55c02049257836532deb120b7fa014a9 Mon Sep 17 00:00:00 2001
From: zhouxueli <2841188632@qq.com>
Date: Wed, 30 Aug 2023 15:35:50 +0800
Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E7=A5=A8=E9=80=9A=E7=9F=A5=E5=88=97?=
=?UTF-8?q?=E8=A1=A8=E5=8A=A0=E4=B8=8B=E6=8B=89=E5=88=B7=E6=96=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/index/invoicingNotify.vue | 94 +++++++++++++++--------------
1 file changed, 50 insertions(+), 44 deletions(-)
diff --git a/src/views/index/invoicingNotify.vue b/src/views/index/invoicingNotify.vue
index 3737b49f..095c69a4 100644
--- a/src/views/index/invoicingNotify.vue
+++ b/src/views/index/invoicingNotify.vue
@@ -11,39 +11,41 @@
@click-left="goBack"
/>
-
-
-
-
开票月份:
-
{{ item.invoiceMonth }}
+
+
+
+
+ 开票月份:
+ {{ item.invoiceMonth }}
+
+
+ 总案件数:
+ {{ item.orderNum }}
+
+
查看
+
+
+ 批次号:
+ {{ item.batchCode }}
+
+
+ 结算总金额:
+ {{ item.totalMoney + '元' }}
+
+
+ 扣款金额:
+ {{ item.cutMoney + '元'}}
+
+
+ 扣款原因:
+ {{ item.remark }}
+
+
+ 最终开票金额:
+ {{ item.invoiceMoney+ '元' }}
+
-
- 总案件数:
- {{ item.orderNum }}
-
- 查看
-
-
- 批次号:
- {{ item.batchCode }}
-
-
- 结算总金额:
- {{ item.totalMoney + '元' }}
-
-
- 扣款金额:
- {{ item.cutMoney + '元'}}
-
-
- 扣款原因:
- {{ item.remark }}
-
-
- 最终开票金额:
- {{ item.invoiceMoney+ '元' }}
-
-
+
@@ -61,13 +63,22 @@ export default {
notifyList:[],
pageNum:1,
pageSize:10,
- show:false
+ show:false,
+ isLoading: false,
}
},
mounted() {
this.getNotifyList()
},
methods:{
+ onRefresh() {
+ this.pageNum=1
+ this.getNotifyList()
+ setTimeout(() => {
+ this.$toast('刷新成功');
+ this.isLoading = false;
+ }, 1000);
+ },
async getNotifyList(){
let res = await notifyInvoiceList({
pageNum:this.pageNum,
@@ -94,10 +105,10 @@ export default {
@include wh(100%,100%);
background-color: #F4F5F7;
overflow-y: auto;
+ box-sizing: border-box;
+ padding-bottom: 30px;
}
.navBar{
-
- //height: 46px;
margin-bottom: 46px;
}
.itemWrap{
@@ -114,27 +125,22 @@ export default {
}
.title{
opacity: .5;
- //width:55px;
}
- .content{}
}
.line1{
width: 100%;
- display: flex;
- justify-content: space-between;
+ @include flexColBet;
.checkBtn{
- background: #354D93;
- border-radius: 3px;
+ @include bgFontColor(#FFFFFF,#354D93);
@include wh(48px,18px);
+ border-radius: 3px;
line-height: 18px;
text-align: center;
- color: #FFFFFF;
}
}
}
.bgShow{
@include wh(100%,80%);
- @include flexCenter;
- justify-content: center;
+ @include flexTwoCenter;
}
\ No newline at end of file