This commit is contained in:
liushuai
2020-03-31 17:56:21 +08:00
parent ba7cf068ad
commit 0522ce916e
7 changed files with 107 additions and 46 deletions

View File

@@ -297,6 +297,13 @@ export default {
this.finishTime ? check5 = 1 : (check5 = 0, this.finishTime = '')
search(this.pageCurrent, this.pageSize, check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.PrNum, check4, this.personValue, check5, this.finishTime[0], this.finishTime[1]).then(response => {
this.tableData = response.data.rows
this.tableData.map(v => {
this.$set(v)
if (v.工艺员 === '超级管理员') {
v.工艺员 = ''
}
return v
})
this.total = response.data.total
this.loading = false
})