<template>
|
<ProDialog
|
title="日志"
|
v-model="innerVisible"
|
destroy-on-close
|
draggable
|
bodyNoPaddingBottom
|
@close="onDialogClose"
|
>
|
<ProDialogTableWrapper :height="500">
|
<ProTableV2
|
v-bind="proTableProps"
|
:columns="OperateHistoryTableColumns"
|
:showOperationColumn="false"
|
>
|
</ProTableV2>
|
</ProDialogTableWrapper>
|
<template #footer>
|
<span class="dialog-footer">
|
<el-button @click="innerVisible = false" type="primary">确 定</el-button>
|
</span>
|
</template>
|
</ProDialog>
|
</template>
|
|
<script setup lang="ts">
|
import { ProDialog, ProTableV2, ProDialogTableWrapper, defineColumns } from '@bole-core/components';
|
|
defineOptions({
|
name: 'OperateHistoryLogDialog',
|
});
|
|
type Props = {
|
modelValue: boolean;
|
relationId: string;
|
getList: (pageIndex?: number) => Promise<void>;
|
proTableProps: any;
|
};
|
|
const props = withDefaults(defineProps<Props>(), {
|
modelValue: false,
|
});
|
|
const emit = defineEmits<{
|
(e: 'update:modelValue', value: boolean): void;
|
(e: 'onConfirm'): void;
|
}>();
|
|
const innerVisible = computed({
|
get() {
|
return props.modelValue;
|
},
|
set(val) {
|
emit('update:modelValue', val);
|
},
|
});
|
|
watch(
|
() => props.modelValue,
|
async (visible, oldVisible) => {
|
if (!oldVisible && visible) {
|
await props.getList();
|
}
|
}
|
);
|
|
const OperateHistoryTableColumns = defineColumns([
|
{ id: '1', enCode: 'createdUser', name: '操作人' },
|
{ id: '2', enCode: 'createdTime', name: '操作时间', width: 180 },
|
{ id: '3', enCode: 'operate', name: '操作' },
|
{ id: '4', enCode: 'content', name: '操作内容' },
|
]);
|
|
function onDialogClose() {}
|
</script>
|