Showing
1 changed file
with
4 additions
and
3 deletions
| ... | @@ -239,11 +239,12 @@ export default { | ... | @@ -239,11 +239,12 @@ export default { |
| 239 | this.show_status_popup = false; | 239 | this.show_status_popup = false; |
| 240 | }, | 240 | }, |
| 241 | changeStatus (status, id) { | 241 | changeStatus (status, id) { |
| 242 | - // 已签到和未出席不能修改状态 | 242 | + // 已签到不能修改状态 |
| 243 | - if (status === 'absent' || status === 'enable') { | 243 | + if (status === 'enable') { |
| 244 | Toast('无需修改状态') | 244 | Toast('无需修改状态') |
| 245 | } | 245 | } |
| 246 | - if (status === 'apply') { | 246 | + // 未签到, 已报名 修改状态已签到 |
| 247 | + if (status === 'absent' || status === 'apply') { | ||
| 247 | Dialog.confirm({ | 248 | Dialog.confirm({ |
| 248 | title: '温馨提示', | 249 | title: '温馨提示', |
| 249 | message: '是否确认修改状态为已签到?', | 250 | message: '是否确认修改状态为已签到?', | ... | ... |
-
Please register or login to post a comment