commit
Showing
1 changed file
with
14 additions
and
10 deletions
| ... | @@ -441,16 +441,20 @@ | ... | @@ -441,16 +441,20 @@ |
| 441 | }, | 441 | }, |
| 442 | handleEdit(index, row) { | 442 | handleEdit(index, row) { |
| 443 | console.log(row); | 443 | console.log(row); |
| 444 | this.activityInfosDrawer = true; | 444 | if(this.huanjing == 'debug') { |
| 445 | this.activityInfosForm.id = row.id; | 445 | this.activityInfosDrawer = true; |
| 446 | this.activityInfosForm.status = row.status; | 446 | this.activityInfosForm.id = row.id; |
| 447 | this.activityInfosForm.name = row.name; | 447 | this.activityInfosForm.status = row.status; |
| 448 | this.activityInfosForm.joinRoleType = row.joinRoleType; | 448 | this.activityInfosForm.name = row.name; |
| 449 | this.activityInfosForm.displayStartTime = row.displayStartTime; | 449 | this.activityInfosForm.joinRoleType = row.joinRoleType; |
| 450 | this.activityInfosForm.startTime = row.startTime; | 450 | this.activityInfosForm.displayStartTime = row.displayStartTime; |
| 451 | this.activityInfosForm.endTime = row.endTime; | 451 | this.activityInfosForm.startTime = row.startTime; |
| 452 | this.activityInfosForm.displayEndTime = row.displayEndTime; | 452 | this.activityInfosForm.endTime = row.endTime; |
| 453 | this.activityInfosForm.locationCodeRule = row.locationCodeRule; | 453 | this.activityInfosForm.displayEndTime = row.displayEndTime; |
| 454 | this.activityInfosForm.locationCodeRule = row.locationCodeRule; | ||
| 455 | } else { | ||
| 456 | this.activityInfosDrawer=false; | ||
| 457 | } | ||
| 454 | }, | 458 | }, |
| 455 | activityInfosFormSubmit() { | 459 | activityInfosFormSubmit() { |
| 456 | let config = { | 460 | let config = { | ... | ... |
-
Please register or sign in to post a comment