zhengyiming
2025-02-17 9402749e7e8bd7d7be88084a55323c748ea02cc6
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
76
<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 } from '@bole-core/components';
import { useTableLogList } from '@/hooks';
 
defineOptions({
  name: 'OperateHistoryLogDialog',
});
 
type Props = {
  modelValue: boolean;
  relationId: string;
  operateType?: number;
};
 
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 getList();
      state.loading = false;
    }
  }
);
 
function onDialogClose() {
  state.loading = true;
}
 
const { getList, proTableProps, state, OperateHistoryTableColumns } = useTableLogList({
  relationId: toRef(props, 'relationId'),
  operateType: toRef(props, 'operateType'),
});
</script>