Merge branch 'feature/GFRS-2334【需求】出单信息通知查询需求' into dev

This commit is contained in:
liyuetong
2021-05-25 11:36:51 +08:00

View File

@@ -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,