zhengyiming
13 小时以前 d5dae013d54e1e74390669a88241f6b8d4c1ec18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<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>