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
| <template>
| <Tooltip placement="top" v-bind="getBindProps">
| <template #title>
| <span>{{ t('common.redo') }}</span>
| </template>
| <RedoOutlined @click="redo" />
| </Tooltip>
| </template>
| <script lang="ts">
| import { computed, defineComponent } from 'vue';
| import { Tooltip } from 'ant-design-vue';
| import { RedoOutlined } from '@ant-design/icons-vue';
| import { useI18n } from '/@/hooks/web/useI18n';
| import { useTableContext } from '../../hooks/useTableContext';
|
| export default defineComponent({
| name: 'RedoSetting',
| props: {
| isMobile: Boolean,
| },
| components: {
| RedoOutlined,
| Tooltip,
| },
| setup(props) {
| const table = useTableContext();
| const { t } = useI18n();
|
| const getBindProps = computed(() => {
| let obj = {};
| if (props.isMobile) {
| obj['visible'] = false;
| }
| return obj;
| });
|
| function redo() {
| table.reload();
| table.emit!('table-redo');
| }
|
| return { getBindProps, redo, t };
| },
| });
| </script>
|
|