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