From f1c7b50ee4ad7e9f069fcc5eec888944aefa7881 Mon Sep 17 00:00:00 2001
From: liyuetong
Date: Tue, 25 May 2021 11:35:32 +0800
Subject: [PATCH] =?UTF-8?q?=E5=87=BA=E5=8D=95=E5=88=97=E8=A1=A8=E6=9F=A5?=
=?UTF-8?q?=E8=AF=A2=E8=BF=99=E5=9D=97=20=EF=BC=8C=20=E7=94=A8=E6=9D=A5?=
=?UTF-8?q?=E5=8C=BA=E5=88=86=E6=98=AF=E5=BD=93=E6=9C=88=E8=BF=98=E6=98=AF?=
=?UTF-8?q?=E5=BD=93=E5=A4=A9=EF=BC=8C=E5=BD=93=E6=9C=88=20dateFlag:m?=
=?UTF-8?q?=EF=BC=8C=E5=BD=93=E5=A4=A9=20dateFlag:d?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/ebiz/billingDetail/billingDetail.vue | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/views/ebiz/billingDetail/billingDetail.vue b/src/views/ebiz/billingDetail/billingDetail.vue
index ca16a35d4..9cd7b7c2a 100644
--- a/src/views/ebiz/billingDetail/billingDetail.vue
+++ b/src/views/ebiz/billingDetail/billingDetail.vue
@@ -129,6 +129,7 @@ export default {
},
data() {
return {
+ dateFlag: 'd',
style02: 'style02', //style02 时,显示红字红三角的样式,不写的话展示默认样式
isNoOrganization: null,
currentIndex: 0, //0 当月 1当天
@@ -192,6 +193,7 @@ export default {
} else {
this.postDate = date.year + '-' + date.month + '-' + date.date
}
+ this.dateFlag = index == 0 ? 'm' : 'd'
this.currentIndex = index == 0 ? 1 : 0
this.pageNum = 1
this.tableData = []
@@ -199,6 +201,7 @@ export default {
},
//时间筛选
onDateConfirm(data) {
+ this.dateFlag = 'm'
this.postDate = data
this.pageNum = 1
this.tableData = []
@@ -272,6 +275,7 @@ export default {
// 查询列表数据
queryOutOrderListFunc() {
queryOutOrderList({
+ dateFlag: this.dateFlag,
appntDate: this.postDate,
distCode: this.OrgLv2Code,
depCode: this.OrgLv3Code,