264 lines
6.9 KiB
Vue
264 lines
6.9 KiB
Vue
<template>
|
|
<el-form
|
|
ref="formRef"
|
|
:model="modelValue"
|
|
:rules="rules"
|
|
:label-width="labelWidth + 'px'"
|
|
>
|
|
<div class="form_title" v-if="showTitle">基本信息</div>
|
|
|
|
<el-row v-if="isAdd">
|
|
<el-col :span="24">
|
|
<el-form-item label="企业logo:">
|
|
<ImageUpload v-model="modelValue.image" :limit="1" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-row v-if="isAdd">
|
|
<el-col :span="24">
|
|
<el-form-item label="单位名称" prop="name">
|
|
<el-input v-model="modelValue.name"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-row v-if="isAdd">
|
|
<el-col :span="24">
|
|
<el-form-item label="组织机构代码:" prop="code">
|
|
<el-row type="flex" justify="space-between">
|
|
<el-col :span="20">
|
|
<el-input v-model="modelValue.code"></el-input>
|
|
</el-col>
|
|
<el-col :span="3">
|
|
<el-button type="primary" @click="">查找</el-button>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item label="企业类型:" prop="kind">
|
|
<el-select v-model="modelValue.kind" placeholder="请选择">
|
|
<el-option
|
|
v-for="item in enterpriseOptions"
|
|
:key="item.key"
|
|
:label="item.value"
|
|
:value="item.key"
|
|
>
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-form-item label="核心成果核心产品:" prop="product">
|
|
<el-input v-model="modelValue.product"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<CityOptions
|
|
v-model="modelValue"
|
|
:labelWidth="labelWidth"
|
|
ref="cityFormRef"
|
|
/>
|
|
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item label="详细地址:">
|
|
<el-input v-model="modelValue.address"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<FieldOptions
|
|
v-model="modelValue"
|
|
:labelWidth="labelWidth"
|
|
ref="fieldFormRef"
|
|
/>
|
|
|
|
<InputBoxAdd
|
|
:labelWidth="labelWidth"
|
|
v-model="modelValue"
|
|
title="关键词"
|
|
placeholder="应用场景关键词+技术产品关键词"
|
|
fieldKey="keywords"
|
|
ref="keywordsFormRef"
|
|
/>
|
|
<InputBoxAdd
|
|
v-if="isAdd"
|
|
:labelWidth="labelWidth"
|
|
v-model="modelValue"
|
|
title="生产方向"
|
|
placeholder="请输入生产方向"
|
|
fieldKey="directions"
|
|
ref="directionsFormRef"
|
|
/>
|
|
|
|
<el-row>
|
|
<!-- <el-col :span="24">
|
|
<el-form-item label="邀请码:">
|
|
<el-input v-model="modelValue.inviter_code"></el-input>
|
|
</el-form-item>
|
|
</el-col> -->
|
|
<el-col :span="24">
|
|
<el-form-item label="企业网站:">
|
|
<el-input v-model="modelValue.url"></el-input>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-row v-if="isAdd">
|
|
<el-col :span="24">
|
|
<el-form-item label="营业执照:" prop="license">
|
|
<ImageUpload
|
|
v-model="modelValue.license"
|
|
:isShowTip="false"
|
|
:limit="1"
|
|
/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-form-item label="单位简介" prop="introduce">
|
|
<WangEditor v-model="modelValue.introduce" :minHeight="300" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</template>
|
|
|
|
<script setup name="EnterpriseForm">
|
|
import CityOptions from "../CityOptions";
|
|
import FieldOptions from "../FieldOptions";
|
|
import InputBoxAdd from "../InputBoxAdd";
|
|
// import { researchSelect, laboratorySelect } from "@/api/identity/index";
|
|
import WangEditor from "@/components/WangEditor";
|
|
import { enterpriseOptions } from "@/utils/parameter";
|
|
import { toRefs } from "vue";
|
|
|
|
const props = defineProps({
|
|
modelValue: Object,
|
|
isAdd: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
showTitle: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
labelWidth: {
|
|
type: Number,
|
|
default: 120,
|
|
},
|
|
});
|
|
const { modelValue, isAdd, showTitle, labelWidth } = toRefs(props);
|
|
const data = reactive({
|
|
rules: {
|
|
product: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
name: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
kind: [{ required: true, message: "请选择", trigger: "change" }],
|
|
code: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
mobile: [
|
|
{ required: true, message: "请输入", trigger: "blur" },
|
|
{
|
|
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
message: "请输入正确的手机号码",
|
|
trigger: "blur",
|
|
},
|
|
],
|
|
research_id: [{ required: true, message: "请选择", trigger: "change" }],
|
|
tenant_id: [
|
|
{
|
|
required: true,
|
|
message: "请选择",
|
|
trigger: ["blur", "change"],
|
|
},
|
|
],
|
|
school: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
education: [{ required: true, message: "请选择", trigger: "change" }],
|
|
major: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
job: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
title: [{ required: true, message: "请输入", trigger: "blur" }],
|
|
work_at: [
|
|
{
|
|
required: true,
|
|
message: "从业时间不能为空",
|
|
trigger: ["change", "blur"],
|
|
},
|
|
],
|
|
license: [
|
|
{
|
|
required: true,
|
|
message: "请上传",
|
|
trigger: ["blur", "change"],
|
|
},
|
|
],
|
|
introduce: [
|
|
{
|
|
required: true,
|
|
message: "请输入",
|
|
trigger: ["change", "blur"],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
const { rules } = toRefs(data);
|
|
|
|
const formRef = ref();
|
|
const cityFormRef = ref();
|
|
const fieldFormRef = ref();
|
|
const keywordsFormRef = ref();
|
|
const directionsFormRef = ref();
|
|
|
|
const validateForm = async () => {
|
|
let formValid;
|
|
try {
|
|
formValid = await formRef.value.validate();
|
|
} catch (error) {
|
|
formValid = false;
|
|
}
|
|
const cityFormValid = await cityFormRef.value.validateForm(); // 城市选择表单验证
|
|
const fieldFormValid = await fieldFormRef.value.validateForm(); // 领域选择表单验证
|
|
const keywordsFormValid = await keywordsFormRef.value.validateForm(); // 关键词表单验证
|
|
console.log(cityFormValid);
|
|
if (isAdd.value) {
|
|
const directionsFormValid = await directionsFormRef.value.validateForm();
|
|
return (
|
|
formValid &&
|
|
cityFormValid &&
|
|
fieldFormValid &&
|
|
keywordsFormValid &&
|
|
directionsFormValid
|
|
);
|
|
} else {
|
|
return formValid && cityFormValid && fieldFormValid && keywordsFormValid;
|
|
}
|
|
};
|
|
defineExpose({
|
|
validateForm,
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.form_title {
|
|
font-weight: 700;
|
|
margin-bottom: 30px;
|
|
}
|
|
// 上传图片框限制
|
|
// ::v-deep .el-upload--picture-card {
|
|
// width: 120px;
|
|
// height: 120px;
|
|
// line-height: 120px;
|
|
// }
|
|
.el-select,
|
|
.el-date-editor {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
</style>
|