mirror of
https://gitee.com/yudaocode/yudao-ui-admin-vben.git
synced 2025-12-30 10:32:25 +00:00
101 lines
2.2 KiB
Vue
101 lines
2.2 KiB
Vue
<script lang="ts" setup>
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
import type { MpMaterialApi } from '#/api/mp/material';
|
|
|
|
import { watch } from 'vue';
|
|
|
|
import { $t } from '@vben/locales';
|
|
import { openWindow } from '@vben/utils';
|
|
|
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import { WxVideoPlayer } from '#/views/mp/components';
|
|
|
|
import { useVideoGridColumns } from './data';
|
|
|
|
const props = defineProps<{
|
|
list: MpMaterialApi.Material[];
|
|
loading: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
delete: [v: number];
|
|
}>();
|
|
|
|
const columns = useVideoGridColumns();
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
|
gridOptions: {
|
|
border: true,
|
|
columns,
|
|
keepSource: true,
|
|
pagerConfig: {
|
|
enabled: false,
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
isHover: true,
|
|
},
|
|
toolbarConfig: {
|
|
refresh: true,
|
|
},
|
|
showOverflow: 'tooltip',
|
|
} as VxeTableGridOptions<MpMaterialApi.Material>,
|
|
});
|
|
|
|
watch(
|
|
() => props.list,
|
|
(list: MpMaterialApi.Material[]) => {
|
|
const data = Array.isArray(list) ? list : [];
|
|
if (gridApi.grid?.loadData) {
|
|
gridApi.grid.loadData(data);
|
|
} else {
|
|
gridApi.setGridOptions({ data });
|
|
}
|
|
},
|
|
{ immediate: true },
|
|
);
|
|
|
|
watch(
|
|
() => props.loading,
|
|
(loading: boolean) => {
|
|
gridApi.setLoading(loading);
|
|
},
|
|
{ immediate: true },
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<Grid class="mt-4">
|
|
<template #toolbar-tools>
|
|
<slot name="toolbar-tools"></slot>
|
|
</template>
|
|
<template #video="{ row }">
|
|
<WxVideoPlayer v-if="row.url" :url="row.url" />
|
|
</template>
|
|
<template #actions="{ row }">
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: '下载',
|
|
type: 'primary',
|
|
link: true,
|
|
icon: ACTION_ICON.DOWNLOAD,
|
|
onClick: () => openWindow(row.url),
|
|
},
|
|
{
|
|
label: $t('common.delete'),
|
|
type: 'danger',
|
|
link: true,
|
|
icon: ACTION_ICON.DELETE,
|
|
auth: ['mp:material:delete'],
|
|
popConfirm: {
|
|
title: '确定要删除该视频吗?',
|
|
confirm: () => emit('delete', row.id!),
|
|
},
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
</Grid>
|
|
</template>
|