2023-03-19 16:48:27 +08:00
|
|
|
|
<template>
|
|
|
|
|
<Dialog :title="modelTitle" v-model="modelVisible">
|
|
|
|
|
<el-form
|
|
|
|
|
ref="formRef"
|
|
|
|
|
:model="formData"
|
|
|
|
|
:rules="formRules"
|
|
|
|
|
label-width="80px"
|
|
|
|
|
v-loading="formLoading"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item label="字典名称" prop="name">
|
|
|
|
|
<el-input v-model="formData.name" placeholder="请输入字典名称" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="字典类型" prop="type">
|
|
|
|
|
<el-input
|
|
|
|
|
:disabled="typeof formData.id !== 'undefined'"
|
|
|
|
|
v-model="formData.type"
|
|
|
|
|
placeholder="请输入参数名称"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
|
<el-radio-group v-model="formData.status">
|
|
|
|
|
<el-radio
|
|
|
|
|
v-for="dict in getDictOptions(DICT_TYPE.COMMON_STATUS)"
|
|
|
|
|
:key="parseInt(dict.value)"
|
|
|
|
|
:label="parseInt(dict.value)"
|
|
|
|
|
>{{ dict.label }}</el-radio
|
|
|
|
|
>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
<el-input v-model="formData.remark" type="textarea" placeholder="请输入内容" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template #footer>
|
2023-03-25 00:59:14 +08:00
|
|
|
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
|
|
|
|
<el-button @click="modelVisible = false">取 消</el-button>
|
2023-03-19 16:48:27 +08:00
|
|
|
|
</template>
|
|
|
|
|
</Dialog>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
|
|
|
|
|
import * as DictTypeApi from '@/api/system/dict/dict.type'
|
2023-03-19 22:14:55 +08:00
|
|
|
|
import { CommonStatusEnum } from '@/utils/constants'
|
|
|
|
|
|
2023-03-19 16:48:27 +08:00
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
|
|
|
|
const modelVisible = ref(false) // 弹窗的是否展示
|
|
|
|
|
const modelTitle = ref('') // 弹窗的标题
|
|
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
|
|
|
|
const formData = ref({
|
|
|
|
|
id: undefined,
|
|
|
|
|
name: '',
|
|
|
|
|
type: '',
|
2023-03-19 22:14:55 +08:00
|
|
|
|
status: CommonStatusEnum.ENABLE,
|
2023-03-19 16:48:27 +08:00
|
|
|
|
remark: ''
|
|
|
|
|
})
|
|
|
|
|
const formRules = reactive({
|
|
|
|
|
name: [{ required: true, message: '字典名称不能为空', trigger: 'blur' }],
|
|
|
|
|
type: [{ required: true, message: '字典类型不能为空', trigger: 'blur' }]
|
|
|
|
|
})
|
|
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
|
|
|
|
|
|
|
/** 打开弹窗 */
|
|
|
|
|
const openModal = async (type: string, id?: number) => {
|
|
|
|
|
modelVisible.value = true
|
|
|
|
|
modelTitle.value = t('action.' + type)
|
|
|
|
|
formType.value = type
|
|
|
|
|
resetForm()
|
|
|
|
|
// 修改时,设置数据
|
|
|
|
|
if (id) {
|
|
|
|
|
formLoading.value = true
|
|
|
|
|
try {
|
2023-03-19 22:14:55 +08:00
|
|
|
|
formData.value = await DictTypeApi.getDictType(id)
|
2023-03-19 16:48:27 +08:00
|
|
|
|
} finally {
|
|
|
|
|
formLoading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗
|
|
|
|
|
|
|
|
|
|
/** 提交表单 */
|
|
|
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
|
|
|
const submitForm = async () => {
|
|
|
|
|
// 校验表单
|
|
|
|
|
if (!formRef) return
|
|
|
|
|
const valid = await formRef.value.validate()
|
|
|
|
|
if (!valid) return
|
|
|
|
|
// 提交请求
|
|
|
|
|
formLoading.value = true
|
|
|
|
|
try {
|
2023-03-19 22:14:55 +08:00
|
|
|
|
const data = formData.value as DictTypeApi.DictTypeVO
|
2023-03-19 16:48:27 +08:00
|
|
|
|
if (formType.value === 'create') {
|
2023-03-19 22:14:55 +08:00
|
|
|
|
await DictTypeApi.createDictType(data)
|
2023-03-19 16:48:27 +08:00
|
|
|
|
message.success(t('common.createSuccess'))
|
|
|
|
|
} else {
|
2023-03-19 22:14:55 +08:00
|
|
|
|
await DictTypeApi.updateDictType(data)
|
2023-03-19 16:48:27 +08:00
|
|
|
|
message.success(t('common.updateSuccess'))
|
|
|
|
|
}
|
|
|
|
|
modelVisible.value = false
|
|
|
|
|
// 发送操作成功的事件
|
|
|
|
|
emit('success')
|
|
|
|
|
} finally {
|
|
|
|
|
formLoading.value = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 重置表单 */
|
|
|
|
|
const resetForm = () => {
|
|
|
|
|
formData.value = {
|
|
|
|
|
id: undefined,
|
|
|
|
|
type: '',
|
|
|
|
|
name: '',
|
2023-03-19 22:14:55 +08:00
|
|
|
|
status: CommonStatusEnum.ENABLE,
|
2023-03-19 16:48:27 +08:00
|
|
|
|
remark: ''
|
|
|
|
|
}
|
|
|
|
|
formRef.value?.resetFields()
|
|
|
|
|
}
|
|
|
|
|
</script>
|