|
|
@@ -127,23 +127,25 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<template #action="scope">
|
|
|
- <ActionButton
|
|
|
- v-if="scope.row.isNotice === ACT_NOTICE_STATE.INACTIVE"
|
|
|
- text="编辑"
|
|
|
- @click="handleEditAct(scope.row.id)"
|
|
|
- />
|
|
|
- <ActionButton
|
|
|
- v-if="scope.row.isNotice === ACT_NOTICE_STATE.INACTIVE"
|
|
|
- text="通知"
|
|
|
- @click="handleNoticeAct(scope.row.id)"
|
|
|
- />
|
|
|
- <ActionButton
|
|
|
- text="删除"
|
|
|
- :popconfirm="{
|
|
|
- title: '确定要删除?',
|
|
|
- }"
|
|
|
- @confirm="handleDeleteAct(scope.row.id)"
|
|
|
- />
|
|
|
+ <div class="action-container--div" style="justify-content: left">
|
|
|
+ <ActionButton
|
|
|
+ v-if="scope.row.isNotice === ACT_NOTICE_STATE.INACTIVE"
|
|
|
+ text="编辑"
|
|
|
+ @click="handleEditAct(scope.row.id)"
|
|
|
+ />
|
|
|
+ <ActionButton
|
|
|
+ v-if="scope.row.isNotice === ACT_NOTICE_STATE.INACTIVE"
|
|
|
+ text="通知"
|
|
|
+ @click="handleNoticeAct(scope.row.id)"
|
|
|
+ />
|
|
|
+ <ActionButton
|
|
|
+ text="删除"
|
|
|
+ :popconfirm="{
|
|
|
+ title: '确定要删除?',
|
|
|
+ }"
|
|
|
+ @confirm="handleDeleteAct(scope.row.id)"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
</template>
|
|
|
</BasicTable>
|
|
|
</div>
|