auth-web/src/views/i18n/i18n-setting/index.vue

229 lines
7.3 KiB
Vue
Raw Normal View History

2024-09-29 16:52:09 +08:00
<script lang="ts" setup>
import { onMounted, ref } from 'vue';
import { userI18nStore } from '@/store/i18n/i18n';
2025-04-24 13:43:37 +08:00
import {
auth,
columns,
deleteIds,
downloadI18nSetting,
onAdd,
onDelete,
onDeleteBatch,
onSearch,
onUpdate,
updateI18nSetting,
} from '@/views/i18n/i18n-setting/utils';
2025-04-25 16:21:15 +08:00
import { useRenderIcon } from '@/components/ReIcon/src/hooks';
2024-09-29 16:52:09 +08:00
import AddFill from '@iconify-icons/ri/add-circle-line';
import EditPen from '@iconify-icons/ep/edit-pen';
import Delete from '@iconify-icons/ep/delete';
import PureTableBar from '@/components/TableBar/src/bar';
import PureTable from '@pureadmin/table';
2024-09-29 23:47:08 +08:00
import Refresh from '@iconify-icons/ep/refresh';
import { $t } from '@/plugins/i18n';
import { selectUserinfo } from '@/components/Table/Userinfo/columns';
import { hasAuth } from '@/router/utils';
2025-04-09 13:10:17 +08:00
import Download from '@iconify-icons/ep/download';
2025-04-24 13:43:37 +08:00
import Upload from '@iconify-icons/ri/upload-line';
2025-04-25 16:21:15 +08:00
import ReAuth from '@/components/ReAuth/src/auth';
2024-09-29 16:52:09 +08:00
defineOptions({ name: 'I18n' });
2024-09-29 16:52:09 +08:00
const tableRef = ref();
const pageFormRef = ref();
2024-09-29 16:52:09 +08:00
const i18nStore = userI18nStore();
/** 重置表单 */
const resetForm = async (formEl: any) => {
2025-04-24 13:43:37 +08:00
if (!formEl) return;
formEl.resetFields();
await onSearch();
2024-09-29 23:47:08 +08:00
};
/** 当前页改变时 */
2024-09-29 23:47:08 +08:00
const onCurrentPageChange = async (value: number) => {
2025-04-24 13:43:37 +08:00
i18nStore.pagination.currentPage = value;
await onSearch();
2024-09-29 23:47:08 +08:00
};
/** 当分页发生变化 */
2024-09-29 23:47:08 +08:00
const onPageSizeChange = async (value: number) => {
2025-04-24 13:43:37 +08:00
i18nStore.pagination.pageSize = value;
await onSearch();
2024-09-29 23:47:08 +08:00
};
2025-04-27 22:16:06 +08:00
/* 选择多行 */
2024-10-01 17:08:00 +08:00
const onSelectionChange = (rows: Array<any>) => {
2025-04-24 13:43:37 +08:00
deleteIds.value = rows.map((row: any) => row.id);
2024-10-01 17:08:00 +08:00
};
2024-09-29 16:52:09 +08:00
onMounted(() => {
2025-04-24 13:43:37 +08:00
onSearch();
2024-09-29 16:52:09 +08:00
});
</script>
<template>
2025-04-24 13:43:37 +08:00
<div class="main">
2025-04-27 22:16:06 +08:00
<ReAuth :value="auth.query">
2025-04-24 13:43:37 +08:00
<el-form
ref="pageFormRef"
:inline="true"
:model="i18nStore.form"
class="search-form bg-bg_color w-[99/100] pl-8 pt-[12px] overflow-auto"
>
<el-form-item :label="$t('i18n.keyName')" prop="keyName">
<el-input
v-model="i18nStore.form.keyName"
:placeholder="`${$t('input')}${$t('i18n.keyName')}`"
class="!w-[180px]"
clearable
/>
</el-form-item>
<el-form-item :label="$t('i18n.translation')" prop="translation">
<el-input
v-model="i18nStore.form.translation"
:placeholder="`${$t('input')}${$t('i18n.translation')}`"
class="!w-[180px]"
clearable
/>
</el-form-item>
<el-form-item :label="$t('i18n.typeName')" prop="typeName">
<el-input
v-model="i18nStore.form.typeName"
:placeholder="`${$t('input')}${$t('i18n.typeName')}`"
class="!w-[180px]"
clearable
/>
</el-form-item>
<el-form-item>
<el-button
:icon="useRenderIcon('ri:search-line')"
:loading="i18nStore.loading"
type="primary"
@click="onSearch"
>
{{ $t('search') }}
</el-button>
<el-button :icon="useRenderIcon(Refresh)" @click="resetForm(pageFormRef)">
{{ $t('buttons.reset') }}
</el-button>
</el-form-item>
</el-form>
2025-04-25 16:21:15 +08:00
</ReAuth>
2024-09-29 16:52:09 +08:00
2025-04-24 13:43:37 +08:00
<PureTableBar
:columns="columns"
:title="$t('multilingualManagement')"
@fullscreen="tableRef.setAdaptive()"
@refresh="onSearch"
>
<template #buttons>
<!-- 下载多语言配置 -->
<el-dropdown v-if="hasAuth(auth.download)" class="mr-1" type="primary">
2025-04-25 16:21:15 +08:00
<el-button :icon="useRenderIcon(Download)" plain type="primary">
2025-04-24 13:43:37 +08:00
{{ $t('download_configuration') }}
</el-button>
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item @click="downloadI18nSetting('json')">{{ $t('download_json') }}</el-dropdown-item>
<el-dropdown-item @click="downloadI18nSetting('excel')">{{ $t('download_excel') }}</el-dropdown-item>
</el-dropdown-menu>
</template>
</el-dropdown>
2025-04-09 13:10:17 +08:00
2025-04-27 22:16:06 +08:00
<!-- 更新多语言配置 -->
2025-04-24 13:43:37 +08:00
<el-dropdown v-if="hasAuth(auth.update)" class="mr-1" type="primary">
<el-button :icon="useRenderIcon(Upload)" plain type="primary">{{ $t('file_import') }}</el-button>
2025-04-24 13:43:37 +08:00
<template #dropdown>
<el-dropdown-menu>
<el-dropdown-item @click="updateI18nSetting('json')">{{ $t('use_json_update') }}</el-dropdown-item>
<el-dropdown-item @click="updateI18nSetting('excel')">{{ $t('use_excel_update') }}</el-dropdown-item>
</el-dropdown-menu>
</template>
</el-dropdown>
2025-04-09 14:19:36 +08:00
2025-04-24 13:43:37 +08:00
<!-- 添加多语言 -->
2025-04-25 16:21:15 +08:00
<el-button v-if="hasAuth(auth.add)" :icon="useRenderIcon(AddFill)" plain type="primary" @click="onAdd">
2025-04-24 13:43:37 +08:00
{{ $t('addNew') }}
</el-button>
2025-04-24 13:43:37 +08:00
<!-- 批量删除按钮 -->
<el-button
v-if="hasAuth(auth.deleted)"
:disabled="!(deleteIds.length > 0)"
:icon="useRenderIcon(Delete)"
2025-04-25 16:21:15 +08:00
plain
2025-04-24 13:43:37 +08:00
type="danger"
@click="onDeleteBatch"
>
{{ $t('deleteBatches') }}
</el-button>
</template>
2024-10-01 17:08:00 +08:00
2025-04-24 13:43:37 +08:00
<template v-slot="{ size, dynamicColumns }">
<pure-table
ref="tableRef"
:adaptiveConfig="{ offsetBottom: 96 }"
:columns="dynamicColumns"
:data="i18nStore.datalist"
:header-cell-style="{
background: 'var(--el-fill-color-light)',
color: 'var(--el-text-color-primary)',
}"
:loading="i18nStore.loading"
:pagination="i18nStore.pagination"
:size="size"
adaptive
align-whole="center"
border
highlight-current-row
row-key="id"
showOverflowTooltip
stripe
table-layout="auto"
@selection-change="onSelectionChange"
@page-size-change="onPageSizeChange"
@page-current-change="onCurrentPageChange"
>
<template #createUser="{ row }">
<el-button v-show="row.createUser" link type="primary" @click="selectUserinfo(row.createUser)">
{{ row.createUsername }}
</el-button>
</template>
2025-04-24 13:43:37 +08:00
<template #updateUser="{ row }">
<el-button v-show="row.updateUser" link type="primary" @click="selectUserinfo(row.updateUser)">
{{ row.updateUsername }}
</el-button>
</template>
2025-04-24 13:43:37 +08:00
<template #operation="{ row }">
<el-button
v-if="hasAuth(auth.update)"
:icon="useRenderIcon(EditPen)"
:size="size"
class="reset-margin"
link
type="primary"
@click="onUpdate(row)"
>
{{ $t('modify') }}
</el-button>
<el-popconfirm
v-if="hasAuth(auth.deleted)"
:title="`${$t('confirmDelete')} ${row.translation}`"
@confirm="onDelete(row)"
>
<template #reference>
<el-button :icon="useRenderIcon(Delete)" :size="size" class="reset-margin" link type="primary">
{{ $t('delete') }}
</el-button>
</template>
</el-popconfirm>
</template>
</pure-table>
</template>
</PureTableBar>
</div>
2024-09-29 16:52:09 +08:00
</template>