修改UAT提出的问题

This commit is contained in:
范强强
2023-05-10 15:31:20 +08:00
parent 61bd5959db
commit 2a76ead70e
@@ -318,7 +318,8 @@
startTime: undefined,
endTime: undefined,
handlingTime: '',
num:0,
num: 0,
queryAllProject: true
}
},
mounted() {
@@ -330,7 +331,8 @@
if (boxContentTextText && boxContentTextText.length > 0) {
boxContentTextText[0].classList.add('box-header-text-color')
}
this.getList()
this.queryAllProject = true
// this.getList()
this.getTimeline()
this.handlingTime = moment(new Date()).format('YYYY-MM-DD')
// this.handlingTime = '2023-04-30'
@@ -403,7 +405,8 @@
let query = {
startTime: this.startTime || this.getNewDate('before', 6),
endTime: this.endTime || this.getNewDate('after', 5),
...this.queryParam
...this.queryParam,
queryAllProject: this.queryAllProject
}
this.loadingMain = true
getAction(this.url.timeline, query).then((res) => {
@@ -436,7 +439,8 @@
let query = {
startTime: this.startTime || this.getNewDate('before', 6),
endTime: this.endTime || this.getNewDate('after', 5),
...this.queryParam
...this.queryParam,
queryAllProject: this.queryAllProject
}
getAction(this.url.timelineList, query).then((res) => {
if (res.success) {
@@ -550,7 +554,7 @@
},
searchQuery() {
this.getTimeline()
this.getList()
// this.getList()
},
searchReset() {
this.queryParam = {}
@@ -558,20 +562,20 @@
this.startTime = undefined
this.endTime = undefined
this.getTimeline()
this.getList()
},
getList() {
this.loading = true
getAction(this.url.list, this.queryParam).then((res) => {
if (res.success) {
this.loading = false
this.dataSource = res.result || []
} else {
this.loading = false
this.dataSource = []
}
})
// this.getList()
},
// getList() {
// this.loading = true
// getAction(this.url.list, this.queryParam).then((res) => {
// if (res.success) {
// this.loading = false
// this.dataSource = res.result || []
// } else {
// this.loading = false
// this.dataSource = []
// }
// })
// },
projectNameClick() {
let newUrl = this.$router.resolve({
path: '/projectStatusAndProgress'
@@ -591,7 +595,8 @@
let query = {
...this.queryParam,
startTime: this.startTime || this.getNewDate('before', 6),
endTime: this.endTime || this.getNewDate('after', 5)
endTime: this.endTime || this.getNewDate('after', 5),
queryAllProject: this.queryAllProject
}
downloadFile('/project/ProjectStatusBoardController/exportXls',
this.$t('GRPSystemProjectProgressStatistics') + '.xls', query, this.Deselect)
@@ -609,6 +614,12 @@
boxContentTextText[num].classList.add('box-header-text-color')
}
this.num = num
if (num == 0) {
this.queryAllProject = true
} else if (num == 1) {
this.queryAllProject = false
}
this.getTimeline()
}
}
}