实验室入驻
This commit is contained in:
@ -40,7 +40,7 @@ export function expert(data) {
|
|||||||
data
|
data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
// 专家入驻
|
// 科研机构入驻
|
||||||
export function research(data) {
|
export function research(data) {
|
||||||
return request({
|
return request({
|
||||||
url: '/enterprise/v1/settled/research',
|
url: '/enterprise/v1/settled/research',
|
||||||
@ -48,3 +48,12 @@ export function research(data) {
|
|||||||
data
|
data
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 实验室入驻
|
||||||
|
export function laboratory(data) {
|
||||||
|
return request({
|
||||||
|
url: '/enterprise/v1/settled/laboratory',
|
||||||
|
method:'post',
|
||||||
|
data
|
||||||
|
});
|
||||||
|
}
|
||||||
235
src/views/identity/components/laboratoryForm/index.vue
Normal file
235
src/views/identity/components/laboratoryForm/index.vue
Normal file
@ -0,0 +1,235 @@
|
|||||||
|
<template>
|
||||||
|
<el-form
|
||||||
|
ref="formRef"
|
||||||
|
:model="modelValue"
|
||||||
|
:rules="rules"
|
||||||
|
:label-width="labelWidth + 'px'"
|
||||||
|
>
|
||||||
|
<div class="form_title" v-if="showTitle">基本信息</div>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="实验室名称" prop="name">
|
||||||
|
<el-input v-model="modelValue.name" :disabled="isAdd"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<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" :disabled="isAdd"></el-input>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="3">
|
||||||
|
<el-button type="primary" @click="" :disabled="isAdd"
|
||||||
|
>查找</el-button
|
||||||
|
>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="所属单位:" prop="research_id">
|
||||||
|
<el-select
|
||||||
|
v-model="modelValue.research_id"
|
||||||
|
filterable
|
||||||
|
placeholder="请选择"
|
||||||
|
>
|
||||||
|
<el-option
|
||||||
|
v-for="item in researchOptions"
|
||||||
|
:key="item.id"
|
||||||
|
:label="item.name"
|
||||||
|
:value="item.id"
|
||||||
|
>
|
||||||
|
</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<CityOptions v-model="modelValue" :labelWidth="labelWidth" ref="cityForm" />
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="详细地址:">
|
||||||
|
<el-input
|
||||||
|
v-model="modelValue.address"
|
||||||
|
placeholder="请输入详细地址"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="实验室网站:">
|
||||||
|
<el-input
|
||||||
|
v-model="modelValue.url"
|
||||||
|
placeholder="请输入实验室网站"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<FieldOptions
|
||||||
|
v-model="modelValue"
|
||||||
|
:labelWidth="labelWidth"
|
||||||
|
ref="fieldForm"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<InputBoxAdd
|
||||||
|
:labelWidth="labelWidth"
|
||||||
|
v-model="modelValue"
|
||||||
|
title="关键词"
|
||||||
|
placeholder="应用场景关键词+技术产品关键词"
|
||||||
|
fieldKey="keywords"
|
||||||
|
ref="keywordsForm"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<InputBoxAdd
|
||||||
|
:labelWidth="labelWidth"
|
||||||
|
v-model="modelValue"
|
||||||
|
title="研究方向"
|
||||||
|
placeholder="请输入研究方向"
|
||||||
|
fieldKey="researchs"
|
||||||
|
ref="directionsForm"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="实验室简介" prop="introduce">
|
||||||
|
<Editor
|
||||||
|
v-model="modelValue.introduce"
|
||||||
|
:minHeight="150"
|
||||||
|
ref="introduceRef"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import CityOptions from "../CityOptions";
|
||||||
|
import FieldSingle from "../FieldSingle";
|
||||||
|
import FieldOptions from "../FieldOptions";
|
||||||
|
import InputBoxAdd from "../InputBoxAdd";
|
||||||
|
import { researchSelect } from "@/api/identity/index";
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
CityOptions,
|
||||||
|
FieldSingle,
|
||||||
|
FieldOptions,
|
||||||
|
InputBoxAdd,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
modelValue: Object,
|
||||||
|
isAdd: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
showTitle: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
labelWidth: {
|
||||||
|
type: Number,
|
||||||
|
default: 120,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
researchOptions: [],
|
||||||
|
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"],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
submitForm() {
|
||||||
|
let flag = false;
|
||||||
|
this.$refs["formRef"].validate((valid) => {
|
||||||
|
const cityForm = this.$refs.cityForm.submitForm(); // 城市
|
||||||
|
const fieldForm = this.$refs.fieldForm.submitForm();
|
||||||
|
const keywordsForm = this.$refs.keywordsForm.submitForm();
|
||||||
|
const directionsForm = this.$refs.directionsForm.submitForm();
|
||||||
|
if (valid && cityForm && fieldForm && keywordsForm && directionsForm) {
|
||||||
|
flag = !flag;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return flag;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
researchSelect().then(({ data }) => {
|
||||||
|
this.researchOptions = data;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</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>
|
||||||
@ -1,3 +1,33 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>laboratory</div>
|
<div class="app-container">
|
||||||
|
<el-card shadow="always" style="width: 55%; margin: 0 auto">
|
||||||
|
<LaboratoryForm
|
||||||
|
v-model="form"
|
||||||
|
:isAdd="false"
|
||||||
|
:labelWidth="labelWidth"
|
||||||
|
ref="laboratoryForm"
|
||||||
|
/>
|
||||||
|
<div :style="{ marginLeft: labelWidth + 'px' }">
|
||||||
|
<el-button @click="$router.go(-1)">取消</el-button>
|
||||||
|
<el-button type="primary" @click="submitForm">提交</el-button>
|
||||||
|
</div>
|
||||||
|
</el-card>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<script setup>
|
||||||
|
import { laboratory } from "@/api/identity/index";
|
||||||
|
import LaboratoryForm from "./components/LaboratoryForm";
|
||||||
|
const { proxy } = getCurrentInstance();
|
||||||
|
const labelWidth = 140;
|
||||||
|
const form = reactive({});
|
||||||
|
function submitForm(status) {
|
||||||
|
if (proxy.$refs.laboratoryForm.submitForm()) {
|
||||||
|
laboratory(form).then((res) => {
|
||||||
|
proxy.$modal.msgSuccess("新增成功");
|
||||||
|
proxy.$router.go(-1);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.log("校验未通过");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user