109 lines
3.5 KiB
Vue
109 lines
3.5 KiB
Vue
<template>
|
||
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||
<el-form
|
||
ref="formRef"
|
||
:model="formData"
|
||
:rules="formRules"
|
||
label-width="100px"
|
||
v-loading="formLoading"
|
||
>
|
||
<el-form-item label="岗位关联ID" prop="postId">
|
||
<el-input v-model="formData.postId" placeholder="请输入岗位关联ID" />
|
||
</el-form-item>
|
||
<el-form-item label="职责" prop="responsibility">
|
||
<el-input v-model="formData.responsibility" placeholder="请输入职责" />
|
||
</el-form-item>
|
||
<el-form-item label="任务" prop="task">
|
||
<el-input v-model="formData.task" placeholder="请输入任务" />
|
||
</el-form-item>
|
||
<el-form-item label="时间分配" prop="timeAllocation">
|
||
<el-input v-model="formData.timeAllocation" placeholder="请输入时间分配" />
|
||
</el-form-item>
|
||
</el-form>
|
||
<template #footer>
|
||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||
</template>
|
||
</Dialog>
|
||
</template>
|
||
<script setup lang="ts">
|
||
import { PostResponsibilityApi, PostResponsibilityVO } from '@/api/system/postresponsibility'
|
||
|
||
/** 岗位职责 表单 */
|
||
defineOptions({ name: 'PostResponsibilityForm' })
|
||
|
||
const { t } = useI18n() // 国际化
|
||
const message = useMessage() // 消息弹窗
|
||
|
||
const dialogVisible = ref(false) // 弹窗的是否展示
|
||
const dialogTitle = ref('') // 弹窗的标题
|
||
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||
const formData = ref({
|
||
id: undefined,
|
||
postId: undefined,
|
||
responsibility: undefined,
|
||
task: undefined,
|
||
timeAllocation: undefined
|
||
})
|
||
const formRules = reactive({
|
||
postId: [{ required: true, message: '岗位关联ID不能为空', trigger: 'blur' }],
|
||
responsibility: [{ required: true, message: '职责不能为空', trigger: 'blur' }],
|
||
task: [{ required: true, message: '任务不能为空', trigger: 'blur' }]
|
||
})
|
||
const formRef = ref() // 表单 Ref
|
||
|
||
/** 打开弹窗 */
|
||
const open = async (type: string, id?: number) => {
|
||
dialogVisible.value = true
|
||
dialogTitle.value = t('action.' + type)
|
||
formType.value = type
|
||
resetForm()
|
||
// 修改时,设置数据
|
||
if (id) {
|
||
formLoading.value = true
|
||
try {
|
||
formData.value = await PostResponsibilityApi.getPostResponsibility(id)
|
||
} finally {
|
||
formLoading.value = false
|
||
}
|
||
}
|
||
}
|
||
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||
|
||
/** 提交表单 */
|
||
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||
const submitForm = async () => {
|
||
// 校验表单
|
||
await formRef.value.validate()
|
||
// 提交请求
|
||
formLoading.value = true
|
||
try {
|
||
const data = formData.value as unknown as PostResponsibilityVO
|
||
if (formType.value === 'create') {
|
||
await PostResponsibilityApi.createPostResponsibility(data)
|
||
message.success(t('common.createSuccess'))
|
||
} else {
|
||
await PostResponsibilityApi.updatePostResponsibility(data)
|
||
message.success(t('common.updateSuccess'))
|
||
}
|
||
dialogVisible.value = false
|
||
// 发送操作成功的事件
|
||
emit('success')
|
||
} finally {
|
||
formLoading.value = false
|
||
}
|
||
}
|
||
|
||
/** 重置表单 */
|
||
const resetForm = () => {
|
||
formData.value = {
|
||
id: undefined,
|
||
postId: undefined,
|
||
responsibility: undefined,
|
||
task: undefined,
|
||
timeAllocation: undefined
|
||
}
|
||
formRef.value?.resetFields()
|
||
}
|
||
</script> |