|
|
@@ -49,40 +49,11 @@
|
|
|
<H3>{{ item.villageName }}</H3>
|
|
|
</FlexRow>
|
|
|
<ButtonGroup direction="row" align="center" :gap="0">
|
|
|
- <BubbleBox :items="[
|
|
|
- {
|
|
|
- icon: 'edit-filling',
|
|
|
- text: '管理',
|
|
|
- onClick: () => goManagePage(item),
|
|
|
- },
|
|
|
- {
|
|
|
- icon: 'edit-filling',
|
|
|
- text: '采编',
|
|
|
- onClick: () => goSubmitDigPage(item),
|
|
|
- },
|
|
|
- {
|
|
|
- icon: 'browse',
|
|
|
- text: '我的投稿',
|
|
|
- onClick: () => goMyDigPage(item),
|
|
|
- },
|
|
|
- ]">
|
|
|
- <Button v-if="authStore.isAdmin" icon="edit-filling" size="small">采编/管理</Button>
|
|
|
- </BubbleBox>
|
|
|
- <BubbleBox :items="[
|
|
|
- {
|
|
|
- icon: 'edit-filling',
|
|
|
- text: '采编',
|
|
|
- onClick: () => goSubmitDigPage(item),
|
|
|
- },
|
|
|
- {
|
|
|
- icon: 'browse',
|
|
|
- text: '我的投稿',
|
|
|
- onClick: () => goMyDigPage(item),
|
|
|
- },
|
|
|
- ]">
|
|
|
- <Button v-if="!authStore.isAdmin" icon="edit-filling" size="small">采编</Button>
|
|
|
- </BubbleBox>
|
|
|
- <Button type="primary" size="small" icon="edit-filling" @click="showOnlinePreviewDialog = true">线上展示</Button>
|
|
|
+ <Button v-if="authStore.isAdmin" size="small" @click="goSubmitDigPage(item)">采编</Button>
|
|
|
+ <Button v-if="authStore.isAdmin" size="small" @click="goManagePage(item)">管理</Button>
|
|
|
+ <Button v-if="!authStore.isAdmin" size="small" @click="goSubmitDigPage(item)">采编</Button>
|
|
|
+ <Button v-if="!authStore.isAdmin" size="small" @click="goMyDigPage(item)">我的</Button>
|
|
|
+ <Button type="primary" size="small" @click="showOnlinePreviewDialog = true">线上展示</Button>
|
|
|
</ButtonGroup>
|
|
|
</FlexRow>
|
|
|
</FlexCol>
|