实验室基本资料表单修改
This commit is contained in:
@ -27,8 +27,8 @@
|
||||
<el-button type="primary" @click="submitForm">提交</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<p><b>企业资料</b></p>
|
||||
<ResearchForm
|
||||
<p><b>实验室资料</b></p>
|
||||
<laboratoryForm
|
||||
v-model="form"
|
||||
:isAdd="false"
|
||||
:labelWidth="labelWidth"
|
||||
@ -42,7 +42,7 @@
|
||||
</template>
|
||||
<script setup>
|
||||
import { expert } from "@/api/identity/index";
|
||||
import ResearchForm from "@/views/identity/components/ResearchForm";
|
||||
import laboratoryForm from "@/views/identity/components/laboratoryForm";
|
||||
const data = reactive({
|
||||
formData: {},
|
||||
queryParams: {
|
||||
|
@ -7,7 +7,7 @@
|
||||
>
|
||||
<div class="form_title" v-if="showTitle">基本信息</div>
|
||||
|
||||
<el-row>
|
||||
<el-row v-if="isAdd">
|
||||
<el-col :span="24">
|
||||
<el-form-item label="实验室名称" prop="name">
|
||||
<el-input v-model="modelValue.name" :disabled="isAdd"></el-input>
|
||||
@ -15,7 +15,7 @@
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-row v-if="isAdd">
|
||||
<el-col :span="24">
|
||||
<el-form-item label="组织机构代码:" prop="code">
|
||||
<el-row type="flex" justify="space-between">
|
||||
@ -32,7 +32,7 @@
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-row v-if="isAdd">
|
||||
<el-col :span="24">
|
||||
<el-form-item label="所属单位:" prop="research_id">
|
||||
<el-select
|
||||
|
Reference in New Issue
Block a user