2025-11-03 13:48:00 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="qualification-form">
|
|
|
|
|
|
<el-form
|
|
|
|
|
|
:model="formData"
|
|
|
|
|
|
:rules="rules"
|
|
|
|
|
|
ref="qualificationForm"
|
|
|
|
|
|
label-width="110px"
|
|
|
|
|
|
label-position="top"
|
|
|
|
|
|
class="form-wrapper"
|
|
|
|
|
|
>
|
|
|
|
|
|
<!-- 资质证书上传 -->
|
|
|
|
|
|
<el-form-item label="资质证书附件" prop="files">
|
|
|
|
|
|
<UploadFile
|
2025-11-17 19:31:42 +08:00
|
|
|
|
ref="uploadFileComp"
|
|
|
|
|
|
:fileList="formData.files"
|
|
|
|
|
|
:fileUploadRule="qualificationUploadRule"
|
|
|
|
|
|
@file-change="handleFileChange"
|
|
|
|
|
|
@del-file="handleDelFile"
|
|
|
|
|
|
:uploadType="uploadType"
|
|
|
|
|
|
:maxFileTips="maxFileTips"
|
|
|
|
|
|
type="qualification_certificate"
|
2025-11-03 13:48:00 +08:00
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 证书名称 -->
|
|
|
|
|
|
<el-form-item label="证书名称" prop="certificateName">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="formData.certificateName"
|
|
|
|
|
|
placeholder="文件上传后自动提取"
|
|
|
|
|
|
class="form-control"
|
|
|
|
|
|
maxlength="50"
|
|
|
|
|
|
></el-input>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 证书编号 -->
|
|
|
|
|
|
<el-form-item label="证书编号" prop="certificateCode">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="formData.certificateCode"
|
|
|
|
|
|
placeholder="文件上传后自动提取"
|
|
|
|
|
|
class="form-control"
|
|
|
|
|
|
maxlength="32"
|
|
|
|
|
|
></el-input>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 发证日期 -->
|
|
|
|
|
|
<el-form-item label="发证日期" prop="certificateDate">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="formData.certificateDate"
|
|
|
|
|
|
type="date"
|
|
|
|
|
|
placeholder="文件上传后自动提取"
|
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
|
class="form-control"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 证书有效截止日期 -->
|
|
|
|
|
|
<el-form-item label="证书有效截止日期" prop="certificateEndDate">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="formData.certificateEndDate"
|
|
|
|
|
|
type="date"
|
|
|
|
|
|
placeholder="文件上传后自动提取"
|
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
|
class="form-control"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 发证机构 -->
|
|
|
|
|
|
<el-form-item label="发证机构" prop="certificateInstitution">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="formData.certificateInstitution"
|
|
|
|
|
|
placeholder="文件上传后自动提取"
|
|
|
|
|
|
class="form-control"
|
|
|
|
|
|
maxlength="64"
|
|
|
|
|
|
></el-input>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 资质类型 -->
|
|
|
|
|
|
<el-form-item label="资质类型" prop="qualificationType">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="formData.qualificationType"
|
|
|
|
|
|
placeholder="请选择资质类型"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
class="form-control"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="item in qualificationTypeOptions"
|
|
|
|
|
|
:key="item.value"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:value="item.value"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import UploadFile from '@/views/common/UploadFile.vue'
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 工具函数:安全获取数组
|
|
|
|
|
|
const safeGetArray = (value) => Array.isArray(value) ? value : []
|
|
|
|
|
|
|
2025-11-03 13:48:00 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: 'QualificationFormChild',
|
|
|
|
|
|
components: { UploadFile },
|
|
|
|
|
|
dicts: ['identification_tag'],
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
2025-11-18 18:03:22 +08:00
|
|
|
|
uploadType: 'jpg、png、pdf',
|
2025-11-03 13:48:00 +08:00
|
|
|
|
maxFileTips: '100MB',
|
|
|
|
|
|
ocrRuleList: ['qualification_certificate'], // 资质证书OCR识别规则
|
|
|
|
|
|
fileUploadList: [],
|
|
|
|
|
|
// OCR识别结果映射关系
|
|
|
|
|
|
ocrResultParams: {
|
|
|
|
|
|
"证书名称": "certificateName",
|
|
|
|
|
|
"证书编号": "certificateCode",
|
|
|
|
|
|
"发证日期": "certificateDate",
|
|
|
|
|
|
"证书有效截止日期": "certificateEndDate",
|
|
|
|
|
|
"发证机构": "certificateInstitution"
|
|
|
|
|
|
},
|
|
|
|
|
|
formData: {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
files: [], // 证书文件列表
|
2025-11-03 13:48:00 +08:00
|
|
|
|
certificateName: '',
|
|
|
|
|
|
certificateCode: '',
|
|
|
|
|
|
certificateDate: '',
|
|
|
|
|
|
certificateEndDate: '',
|
|
|
|
|
|
certificateInstitution: '',
|
|
|
|
|
|
qualificationType: '',
|
2025-11-17 19:31:42 +08:00
|
|
|
|
delFileList: [] // 被删除的文件路径列表(关键:记录替换/删除的文件)
|
2025-11-03 13:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
qualificationTypeOptions: [],
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
files: [
|
|
|
|
|
|
{ required: true, message: '请上传资质证书附件', trigger: 'change' }
|
|
|
|
|
|
],
|
|
|
|
|
|
certificateName: [
|
|
|
|
|
|
{ required: true, message: '请输入证书名称', trigger: 'blur' }
|
|
|
|
|
|
],
|
|
|
|
|
|
certificateCode: [
|
|
|
|
|
|
{ required: true, message: '请输入证书编号', trigger: 'blur' }
|
|
|
|
|
|
],
|
|
|
|
|
|
certificateDate: [
|
|
|
|
|
|
{ required: true, message: '请选择发证日期', trigger: 'change' }
|
|
|
|
|
|
],
|
|
|
|
|
|
certificateEndDate: [
|
|
|
|
|
|
{ required: true, message: '请选择有效截止日期', trigger: 'change' }
|
|
|
|
|
|
],
|
|
|
|
|
|
qualificationType: [
|
|
|
|
|
|
{ required: true, message: '请选择资质类型', trigger: 'change' }
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
qualificationUploadRule() {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
return this.fileUploadList[0] || {};
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
'dict.type.identification_tag': {
|
|
|
|
|
|
handler(newVal) {
|
|
|
|
|
|
if (newVal && newVal.length > 0) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
this.addOcrRule();
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
immediate: true
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 加载资质类型字典
|
2025-11-03 13:48:00 +08:00
|
|
|
|
loadQualificationTypeDict() {
|
|
|
|
|
|
this.getDicts('qualification_type').then(response => {
|
|
|
|
|
|
this.qualificationTypeOptions = response.data.map(item => ({
|
|
|
|
|
|
label: item.dictLabel,
|
|
|
|
|
|
value: item.dictValue
|
2025-11-17 19:31:42 +08:00
|
|
|
|
}));
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}).catch(error => {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
console.error('加载资质类型字典失败:', error);
|
|
|
|
|
|
});
|
2025-11-03 13:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 接收父组件数据并回显(优化:确保文件路径完整)
|
2025-11-03 13:48:00 +08:00
|
|
|
|
setFormData(data) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 1. 过滤“资质证书类型”的文件
|
|
|
|
|
|
const qualificationFiles = safeGetArray(data.fileList)
|
|
|
|
|
|
.filter(file => file && file.businessType === 'qualification_certificate')
|
|
|
|
|
|
.map(file => ({
|
2025-11-03 13:48:00 +08:00
|
|
|
|
...file,
|
2025-11-17 19:31:42 +08:00
|
|
|
|
uid: file.uid || Date.now() + Math.random().toString(36).substr(2, 9), // 唯一ID
|
|
|
|
|
|
name: file.fileName || file.name || '未命名文件',
|
|
|
|
|
|
lsFilePath: file.lsFilePath || file.fileUrl || '', // 预览路径
|
|
|
|
|
|
filePath: file.filePath || file.uploadPath || '', // 存储路径(用于删除)
|
|
|
|
|
|
status: 'success', // 标记为已上传
|
|
|
|
|
|
// 补充上传组件所需的响应结构(删除时需要)
|
2025-11-03 13:48:00 +08:00
|
|
|
|
response: {
|
|
|
|
|
|
fileRes: {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
uploadPath: file.filePath || file.uploadPath || '',
|
|
|
|
|
|
filePath: file.filePath || file.uploadPath || ''
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-17 19:31:42 +08:00
|
|
|
|
}));
|
2025-11-03 13:48:00 +08:00
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 2. 赋值表单数据
|
2025-11-03 13:48:00 +08:00
|
|
|
|
this.formData = {
|
|
|
|
|
|
...data,
|
2025-11-17 19:31:42 +08:00
|
|
|
|
files: qualificationFiles,
|
|
|
|
|
|
delFileList: [] // 重置删除列表
|
2025-11-03 13:48:00 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 3. 触发上传组件刷新
|
2025-11-03 13:48:00 +08:00
|
|
|
|
this.$nextTick(() => {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
if (this.$refs.uploadFileComp?.updatePreview) {
|
|
|
|
|
|
this.$refs.uploadFileComp.updatePreview(qualificationFiles);
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 处理文件变更(新增/替换文件时触发)
|
|
|
|
|
|
handleFileChange(files) {
|
|
|
|
|
|
// 标记文件业务类型
|
|
|
|
|
|
const markedFiles = files.map(file => ({
|
|
|
|
|
|
...file,
|
|
|
|
|
|
businessType: 'qualification_certificate'
|
|
|
|
|
|
}));
|
|
|
|
|
|
this.formData.files = markedFiles;
|
2025-11-03 13:48:00 +08:00
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 处理替换场景:当上传新文件时,旧文件会被自动删除,需记录旧文件路径
|
|
|
|
|
|
this.handleReplaceFile(markedFiles);
|
2025-11-03 13:48:00 +08:00
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 触发OCR识别
|
|
|
|
|
|
this.handleOcrResult(markedFiles);
|
|
|
|
|
|
},
|
2025-11-03 13:48:00 +08:00
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 关键:处理文件替换场景(新文件上传时,旧文件需加入删除列表)
|
|
|
|
|
|
handleReplaceFile(newFiles) {
|
|
|
|
|
|
// 新文件的唯一标识(uid)集合
|
|
|
|
|
|
const newUids = newFiles.map(file => file.uid);
|
|
|
|
|
|
// 旧文件中不在新文件列表的,即为被替换的文件
|
|
|
|
|
|
const replacedFiles = this.formData.files.filter(oldFile =>
|
|
|
|
|
|
!newUids.includes(oldFile.uid)
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
// 将被替换的文件路径加入删除列表(去重)
|
|
|
|
|
|
replacedFiles.forEach(file => {
|
|
|
|
|
|
const filePath = file.response?.fileRes?.uploadPath || file.filePath;
|
|
|
|
|
|
if (filePath && !this.formData.delFileList.includes(filePath)) {
|
|
|
|
|
|
this.formData.delFileList.push(filePath);
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
2025-11-17 19:31:42 +08:00
|
|
|
|
});
|
2025-11-03 13:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 处理文件删除(用户主动删除时触发)
|
2025-11-03 13:48:00 +08:00
|
|
|
|
handleDelFile(file) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
const filePath = file.response?.fileRes?.uploadPath || file.filePath;
|
2025-11-03 13:48:00 +08:00
|
|
|
|
if (filePath && !this.formData.delFileList.includes(filePath)) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
this.formData.delFileList.push(filePath);
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
// 删除文件后清空关联字段
|
|
|
|
|
|
if (this.formData.files.length === 0) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
this.formData.certificateName = '';
|
|
|
|
|
|
this.formData.certificateCode = '';
|
|
|
|
|
|
this.formData.certificateDate = '';
|
|
|
|
|
|
this.formData.certificateEndDate = '';
|
|
|
|
|
|
this.formData.certificateInstitution = '';
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 表单验证
|
|
|
|
|
|
validate() {
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
|
if (!this.$refs.qualificationForm) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
reject(new Error('表单实例未加载完成'));
|
|
|
|
|
|
return;
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.$refs.qualificationForm.validate((valid) => {
|
|
|
|
|
|
if (valid) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
resolve(this.formData); // 返回包含delFileList的完整数据
|
2025-11-03 13:48:00 +08:00
|
|
|
|
} else {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
reject(new Error('资质证书信息填写不完整'));
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
2025-11-17 19:31:42 +08:00
|
|
|
|
});
|
|
|
|
|
|
});
|
2025-11-03 13:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 重置表单(优化:确保删除列表被清空)
|
2025-11-03 13:48:00 +08:00
|
|
|
|
resetForm() {
|
|
|
|
|
|
this.$nextTick(async () => {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 清空上传组件的文件
|
|
|
|
|
|
if (this.$refs.uploadFileComp) {
|
|
|
|
|
|
this.$refs.uploadFileComp.clearFiles();
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 重置表单字段
|
2025-11-03 13:48:00 +08:00
|
|
|
|
if (this.$refs.qualificationForm) {
|
|
|
|
|
|
this.$refs.qualificationForm.resetFields();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 清空删除列表和文件列表
|
2025-11-03 13:48:00 +08:00
|
|
|
|
this.formData = {
|
|
|
|
|
|
...this.formData,
|
2025-11-17 19:31:42 +08:00
|
|
|
|
files: [],
|
|
|
|
|
|
delFileList: [],
|
2025-11-03 13:48:00 +08:00
|
|
|
|
certificateName: '',
|
|
|
|
|
|
certificateCode: '',
|
|
|
|
|
|
certificateDate: '',
|
|
|
|
|
|
certificateEndDate: '',
|
|
|
|
|
|
certificateInstitution: '',
|
2025-11-17 19:31:42 +08:00
|
|
|
|
qualificationType: ''
|
2025-11-03 13:48:00 +08:00
|
|
|
|
};
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 初始化OCR识别规则
|
|
|
|
|
|
addOcrRule() {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
this.ocrRuleList.forEach(item => this.ocrRule(item));
|
2025-11-03 13:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
// 获取OCR识别规则
|
|
|
|
|
|
ocrRule(type) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
const foundItem = this.dict.type.identification_tag?.find(item => item.value === type);
|
2025-11-03 13:48:00 +08:00
|
|
|
|
if (!foundItem) {
|
2025-11-17 19:31:42 +08:00
|
|
|
|
this.$message.warning(`未找到${type}的识别规则配置`);
|
|
|
|
|
|
return;
|
2025-11-03 13:48:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
this.fileUploadList.push({
|
2025-11-03 13:48:00 +08:00
|
|
|
|
fileUploadType: foundItem.value,
|
|
|
|
|
|
fields_json: foundItem.raw?.remark,
|
|
|
|
|
|
suffix: 'mainDatabase'
|
2025-11-17 19:31:42 +08:00
|
|
|
|
});
|
2025-11-03 13:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
// 处理OCR识别结果
|
|
|
|
|
|
handleOcrResult(files) {
|
|
|
|
|
|
if (!files || files.length === 0) return;
|
|
|
|
|
|
|
|
|
|
|
|
this.$bus.$emit('startUpload', '正在识别证书信息');
|
2025-11-03 13:48:00 +08:00
|
|
|
|
|
2025-11-17 19:31:42 +08:00
|
|
|
|
try {
|
|
|
|
|
|
const firstFile = files[0];
|
|
|
|
|
|
if (firstFile.response?.ocrResult) {
|
|
|
|
|
|
const ocrResult = firstFile.response.ocrResult;
|
|
|
|
|
|
if (ocrResult.status_code === 200) {
|
|
|
|
|
|
const chat_res = ocrResult.data?.chat_res;
|
|
|
|
|
|
if (chat_res && typeof chat_res === 'object') {
|
|
|
|
|
|
// 映射识别结果到表单字段
|
|
|
|
|
|
Object.keys(chat_res).forEach(key => {
|
|
|
|
|
|
const formField = this.ocrResultParams[key];
|
|
|
|
|
|
if (formField && chat_res[key]) {
|
|
|
|
|
|
this.formData[formField] = chat_res[key];
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
this.$message.success('OCR识别成功,已自动填充证书信息');
|
|
|
|
|
|
// 触发表单验证
|
|
|
|
|
|
Object.keys(this.ocrResultParams).forEach(key => {
|
|
|
|
|
|
const formField = this.ocrResultParams[key];
|
|
|
|
|
|
this.$refs.qualificationForm.validateField(formField);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$message.error(`识别失败: ${ocrResult.status_msg || '未知错误'}`);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
this.$message.error(`处理识别结果失败: ${error.message}`);
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
this.$bus.$emit('endUpload');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-03 13:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
|
|
|
this.loadQualificationTypeDict();
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.basic-info-title {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
2025-11-17 19:31:42 +08:00
|
|
|
|
margin: 0 0 20px 0;
|
2025-11-03 13:48:00 +08:00
|
|
|
|
span {
|
|
|
|
|
|
margin: 0 5px;
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
color: #333;
|
|
|
|
|
|
}
|
|
|
|
|
|
img {
|
|
|
|
|
|
width: 24px;
|
|
|
|
|
|
height: 24px;
|
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.qualification-form {
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-form {
|
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-control {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-form-item {
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
::v-deep .el-form-item__label {
|
|
|
|
|
|
color: #4e5969;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-wrapper {
|
|
|
|
|
|
padding: 24px;
|
|
|
|
|
|
background: #fff;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|