|
|
|
|
@ -6,7 +6,7 @@ import { computed, ref } from 'vue';
|
|
|
|
|
import { useAccess } from '@vben/access';
|
|
|
|
|
import { Page, useVbenDrawer, type VbenFormProps } from '@vben/common-ui';
|
|
|
|
|
import { Fallback } from '@vben/common-ui';
|
|
|
|
|
import { getPopupContainer } from '@vben/utils';
|
|
|
|
|
import { getVxePopupContainer } from '@vben/utils';
|
|
|
|
|
|
|
|
|
|
import { Modal, Popconfirm, Space } from 'ant-design-vue';
|
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
|
@ -205,7 +205,7 @@ const isSuperAdmin = computed(() => {
|
|
|
|
|
{{ $t('pages.common.edit') }}
|
|
|
|
|
</ghost-button>
|
|
|
|
|
<Popconfirm
|
|
|
|
|
:get-popup-container="getPopupContainer"
|
|
|
|
|
:get-popup-container="getVxePopupContainer"
|
|
|
|
|
:title="`确认同步[${row.companyName}]的套餐吗?`"
|
|
|
|
|
placement="left"
|
|
|
|
|
@confirm="handleSync(row)"
|
|
|
|
|
@ -218,7 +218,7 @@ const isSuperAdmin = computed(() => {
|
|
|
|
|
</ghost-button>
|
|
|
|
|
</Popconfirm>
|
|
|
|
|
<Popconfirm
|
|
|
|
|
:get-popup-container="getPopupContainer"
|
|
|
|
|
:get-popup-container="getVxePopupContainer"
|
|
|
|
|
placement="left"
|
|
|
|
|
title="确认删除?"
|
|
|
|
|
@confirm="handleDelete(row)"
|
|
|
|
|
|