178 lines
4.8 KiB
Vue
178 lines
4.8 KiB
Vue
<template>
|
|
<el-dialog
|
|
v-model="visible"
|
|
:title="dialogType === 'add' ? $t('page.form.dialogTitleAdd') : $t('page.form.dialogTitleEdit')"
|
|
width="600px"
|
|
align-center
|
|
:close-on-click-modal="false"
|
|
@close="handleClose"
|
|
>
|
|
<el-form ref="formRef" :model="formData" :rules="rules" label-width="120px">
|
|
<el-form-item :label="$t('page.form.group')" prop="group">
|
|
<el-input
|
|
v-model="formData.group"
|
|
:placeholder="$t('page.form.placeholderGroup')"
|
|
:disabled="dialogType === 'edit'"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('page.form.title')" prop="title">
|
|
<el-input v-model="formData.title" :placeholder="$t('page.form.placeholderTitleZh')" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('page.form.titleEn')" prop="title_en">
|
|
<el-input v-model="formData.title_en" :placeholder="$t('page.form.placeholderTitleEn')" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('page.form.configName')" prop="name">
|
|
<el-input
|
|
v-model="formData.name"
|
|
:placeholder="$t('page.form.placeholderConfigName')"
|
|
:disabled="dialogType === 'edit'"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('page.form.value')" prop="value">
|
|
<el-input v-model="formData.value" type="textarea" :rows="5" :placeholder="$t('page.form.placeholderValueZh')" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('page.form.valueEn')" prop="value_en">
|
|
<el-input v-model="formData.value_en" type="textarea" :rows="5" :placeholder="$t('page.form.placeholderValueEn')" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<el-button @click="handleClose">{{ $t('common.cancel') }}</el-button>
|
|
<el-button type="primary" @click="handleSubmit">{{ $t('table.form.submit') }}</el-button>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import api from '../../../api/config/index'
|
|
import { ElMessage } from 'element-plus'
|
|
import type { FormInstance, FormRules } from 'element-plus'
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
const { t } = useI18n()
|
|
|
|
interface Props {
|
|
modelValue: boolean
|
|
dialogType: string
|
|
data?: Record<string, any>
|
|
}
|
|
|
|
interface Emits {
|
|
(e: 'update:modelValue', value: boolean): void
|
|
(e: 'success'): void
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
modelValue: false,
|
|
dialogType: 'add',
|
|
data: undefined
|
|
})
|
|
|
|
const emit = defineEmits<Emits>()
|
|
|
|
const formRef = ref<FormInstance>()
|
|
|
|
/**
|
|
* 弹窗显示状态双向绑定
|
|
*/
|
|
const visible = computed({
|
|
get: () => props.modelValue,
|
|
set: (value) => emit('update:modelValue', value)
|
|
})
|
|
|
|
/**
|
|
* 表单验证规则
|
|
*/
|
|
const rules = computed<FormRules>(() => ({
|
|
group: [{ required: true, message: t('page.form.ruleGroupRequired'), trigger: 'blur' }],
|
|
title: [{ required: true, message: t('page.form.ruleTitleRequired'), trigger: 'blur' }],
|
|
title_en: [{ max: 255, message: t('page.form.ruleTitleEnMax'), trigger: 'blur' }],
|
|
name: [{ required: true, message: t('page.form.ruleConfigNameRequired'), trigger: 'blur' }],
|
|
value: [{ required: true, message: t('page.form.ruleValueRequired'), trigger: 'blur' }]
|
|
}))
|
|
|
|
/**
|
|
* 初始数据
|
|
*/
|
|
const initialFormData = {
|
|
id: null,
|
|
value: '',
|
|
value_en: '',
|
|
name: '',
|
|
group: '',
|
|
title: '',
|
|
title_en: ''
|
|
}
|
|
|
|
/**
|
|
* 表单数据
|
|
*/
|
|
const formData = reactive({ ...initialFormData })
|
|
|
|
/**
|
|
* 监听弹窗打开,初始化表单数据
|
|
*/
|
|
watch(
|
|
() => props.modelValue,
|
|
(newVal) => {
|
|
if (newVal) {
|
|
initPage()
|
|
}
|
|
}
|
|
)
|
|
|
|
/**
|
|
* 初始化页面数据
|
|
*/
|
|
const initPage = async () => {
|
|
// 先重置为初始值
|
|
Object.assign(formData, initialFormData)
|
|
// 如果有数据,则填充数据
|
|
if (props.data) {
|
|
await nextTick()
|
|
initForm()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 初始化表单数据
|
|
*/
|
|
const initForm = () => {
|
|
if (props.data) {
|
|
for (const key in formData) {
|
|
if (props.data[key] != null && props.data[key] != undefined) {
|
|
;(formData as any)[key] = props.data[key]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 关闭弹窗并重置表单
|
|
*/
|
|
const handleClose = () => {
|
|
visible.value = false
|
|
formRef.value?.resetFields()
|
|
}
|
|
|
|
/**
|
|
* 提交表单
|
|
*/
|
|
const handleSubmit = async () => {
|
|
if (!formRef.value) return
|
|
try {
|
|
await formRef.value.validate()
|
|
if (props.dialogType === 'add') {
|
|
await api.save(formData)
|
|
ElMessage.success(t('page.form.saveSuccess'))
|
|
} else {
|
|
await api.update(formData)
|
|
ElMessage.success(t('page.form.updateSuccess'))
|
|
}
|
|
emit('success')
|
|
handleClose()
|
|
} catch (error) {
|
|
console.log('表单验证失败:', error)
|
|
}
|
|
}
|
|
</script>
|