You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.7 KiB
138 lines
4.7 KiB
2 months ago
|
<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="enterpriseId">
|
||
|
<el-input v-model="formData.enterpriseId" placeholder="请输入企业ID" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="资质名称,例如:排污许可证、环保合格证" prop="qualificationName">
|
||
|
<el-input v-model="formData.qualificationName" placeholder="请输入资质名称,例如:排污许可证、环保合格证" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="资质到期日期" prop="expiryDate">
|
||
|
<el-date-picker
|
||
|
v-model="formData.expiryDate"
|
||
|
type="date"
|
||
|
value-format="x"
|
||
|
placeholder="选择资质到期日期"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="资质描述,详细说明资质信息" prop="qualificationDescription">
|
||
|
<Editor v-model="formData.qualificationDescription" height="150px" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="修改人" prop="updateBy">
|
||
|
<el-input v-model="formData.updateBy" placeholder="请输入修改人" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="创建人" prop="createBy">
|
||
|
<el-input v-model="formData.createBy" placeholder="请输入创建人" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="办理日期" prop="handleDate">
|
||
|
<el-date-picker
|
||
|
v-model="formData.handleDate"
|
||
|
type="date"
|
||
|
value-format="x"
|
||
|
placeholder="选择办理日期"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="资质编号" prop="enterpriseAuth">
|
||
|
<el-input v-model="formData.enterpriseAuth" 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 { EnterpriseQualificationApi, EnterpriseQualificationVO } from '@/api/qualification'
|
||
|
|
||
|
/** 企业资质 表单 */
|
||
|
defineOptions({ name: 'EnterpriseQualificationForm' })
|
||
|
|
||
|
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,
|
||
|
enterpriseId: undefined,
|
||
|
qualificationName: undefined,
|
||
|
expiryDate: undefined,
|
||
|
qualificationDescription: undefined,
|
||
|
updateBy: undefined,
|
||
|
createBy: undefined,
|
||
|
handleDate: undefined,
|
||
|
enterpriseAuth: undefined,
|
||
|
})
|
||
|
const formRules = reactive({
|
||
|
qualificationName: [{ 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 EnterpriseQualificationApi.getEnterpriseQualification(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 EnterpriseQualificationVO
|
||
|
if (formType.value === 'create') {
|
||
|
await EnterpriseQualificationApi.createEnterpriseQualification(data)
|
||
|
message.success(t('common.createSuccess'))
|
||
|
} else {
|
||
|
await EnterpriseQualificationApi.updateEnterpriseQualification(data)
|
||
|
message.success(t('common.updateSuccess'))
|
||
|
}
|
||
|
dialogVisible.value = false
|
||
|
// 发送操作成功的事件
|
||
|
emit('success')
|
||
|
} finally {
|
||
|
formLoading.value = false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/** 重置表单 */
|
||
|
const resetForm = () => {
|
||
|
formData.value = {
|
||
|
id: undefined,
|
||
|
enterpriseId: undefined,
|
||
|
qualificationName: undefined,
|
||
|
expiryDate: undefined,
|
||
|
qualificationDescription: undefined,
|
||
|
updateBy: undefined,
|
||
|
createBy: undefined,
|
||
|
handleDate: undefined,
|
||
|
enterpriseAuth: undefined,
|
||
|
}
|
||
|
formRef.value?.resetFields()
|
||
|
}
|
||
|
</script>
|