|
@@ -161,7 +161,7 @@
|
|
|
<el-button
|
|
|
type="text"
|
|
|
@click="resetCamp(scope.row)"
|
|
|
- v-if="scope.row.state != 'ING' && scope.row.state != 'END'"
|
|
|
+ v-if="['NOT_START', 'APPLY', 'READY'].includes(scope.row.state)"
|
|
|
>修改</el-button
|
|
|
>
|
|
|
</auth>
|
|
@@ -176,7 +176,7 @@
|
|
|
</auth>
|
|
|
<auth
|
|
|
auths="tempLittleArtistTrainingCamp/delete"
|
|
|
- v-if="scope.row.state == 'READY' || scope.row.state == 'NOT_START'"
|
|
|
+ v-if="['NOT_START', 'APPLY'].includes(scope.row.state)"
|
|
|
>
|
|
|
<el-button type="text" @click="deleteCamp(scope.row)"
|
|
|
>删除</el-button
|