| | |
| | | <staffDialog |
| | | :currshowlist.sync="showStaff" |
| | | :selCol="selCol" |
| | | :selColValArr="selColValArr" |
| | | :multiSelect="true" |
| | | :dutyRecord="dutyForm" |
| | | @handleSelectionChange="selectStaff" |
| | |
| | | } else if (this.status) { |
| | | this.$message.warning('该班次已经确认,不可修改') |
| | | } else { |
| | | this.selCol = 'staffNo' |
| | | for (let i = 0; i < this.personBoardList.length; i++) { |
| | | this.selColValArr.push(this.personBoardList[i].staffNo) |
| | | } |
| | | // this.selCol = 'staffNo' |
| | | // for (let i = 0; i < this.personBoardList.length; i++) { |
| | | // this.selColValArr.push(this.personBoardList[i].staffNo) |
| | | // } |
| | | this.showStaff = true |
| | | } |
| | | }, |