|
@@ -36,6 +36,7 @@
|
|
import { GetCameraDetailApi,UnbindCameraApi } from '/@/api/account';
|
|
import { GetCameraDetailApi,UnbindCameraApi } from '/@/api/account';
|
|
import { otherInfoStore } from '/@/store/modules/other'
|
|
import { otherInfoStore } from '/@/store/modules/other'
|
|
import { DetailsApi,IncrementDelayApi } from '/@/api/account';
|
|
import { DetailsApi,IncrementDelayApi } from '/@/api/account';
|
|
|
|
+ import { usePermissionStore } from '/@/store/modules/permission';
|
|
|
|
|
|
const { t } = useI18n();
|
|
const { t } = useI18n();
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
@@ -48,6 +49,8 @@
|
|
const otherInfo = otherInfoStore();
|
|
const otherInfo = otherInfoStore();
|
|
const overviewInfo = computed(() => otherInfo.getOverviewInfo);
|
|
const overviewInfo = computed(() => otherInfo.getOverviewInfo);
|
|
const { createMessage, createConfirm } = useMessage();
|
|
const { createMessage, createConfirm } = useMessage();
|
|
|
|
+ const permissionStore = usePermissionStore();
|
|
|
|
+ const { getCheckPerm } = permissionStore;
|
|
console.log('overviewInfo',overviewInfo)
|
|
console.log('overviewInfo',overviewInfo)
|
|
// const overviewInfo = getOverviewInfo() || {}
|
|
// const overviewInfo = getOverviewInfo() || {}
|
|
const fileFlow = reactive({
|
|
const fileFlow = reactive({
|
|
@@ -90,6 +93,7 @@
|
|
{
|
|
{
|
|
title: t('common.operating'),
|
|
title: t('common.operating'),
|
|
dataIndex: 'action',
|
|
dataIndex: 'action',
|
|
|
|
+ ifShow:getCheckPerm('account-equityCameraUnbind'),
|
|
slots: { customRender: 'action' },
|
|
slots: { customRender: 'action' },
|
|
fixed: 'right',
|
|
fixed: 'right',
|
|
width: 80,
|
|
width: 80,
|