|
|
|
@ -39,7 +39,7 @@
|
|
|
|
|
</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex" style="margin-top: 20px">
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex" style="margin-top:50px">
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="所属供应商:" label-width="150px" prop="customerId">
|
|
|
|
|
<el-select
|
|
|
|
@ -48,8 +48,9 @@
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
disabled
|
|
|
|
|
placeholder="请选择供应商"
|
|
|
|
|
:remote-method="findMethod" disabled
|
|
|
|
|
:remote-method="findMethod"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
@change="supChange"
|
|
|
|
@ -72,8 +73,8 @@
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
disabled
|
|
|
|
|
reserve-keyword
|
|
|
|
|
disabled
|
|
|
|
|
placeholder="请选择生产企业"
|
|
|
|
|
:remote-method="findPMMethod"
|
|
|
|
|
:loading="loading"
|
|
|
|
@ -94,63 +95,41 @@
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="注册/备案号:" label-width="150px" prop="recordCode">
|
|
|
|
|
<el-form-item label="产品通用名称:" label-width="150px" prop="recordProductName">
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
disabled
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.recordCode" disabled
|
|
|
|
|
v-model="inputQuery.recordProductName"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="注册/备案产品名称:" label-width="150px" prop="recordProductName">
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.recordProductName" disabled
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="注册/备案人名称:" label-width="150px" prop="recordPeopleName">
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容" disabled
|
|
|
|
|
v-model="inputQuery.recordPeopleName"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="代理人名称:" label-width="150px" prop="agentName">
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
disabled
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.agentName" disabled
|
|
|
|
|
v-model="inputQuery.recordPeopleName"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="医疗器械管理类别:" label-width="150px" prop="productManageType">
|
|
|
|
|
<el-form-item label="产品类别:" label-width="150px" prop="hchzsb">
|
|
|
|
|
<el-select
|
|
|
|
|
size="small"
|
|
|
|
|
v-model="inputQuery.productManageType" disabled
|
|
|
|
|
placeholder="医疗器械管理类别"
|
|
|
|
|
disabled
|
|
|
|
|
v-model="inputQuery.hchzsb"
|
|
|
|
|
placeholder="产品类别"
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
>
|
|
|
|
|
<el-option label="Ⅰ类" value="1"></el-option>
|
|
|
|
|
<el-option label="Ⅱ类" value="2"></el-option>
|
|
|
|
|
<el-option label="Ⅲ类" value="3"></el-option>
|
|
|
|
|
<el-option label="耗材" value="耗材"></el-option>
|
|
|
|
|
<el-option label="设备" value="设备"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -158,43 +137,79 @@
|
|
|
|
|
<el-form-item label="器械类别:" label-width="150px" prop="productType">
|
|
|
|
|
<el-select
|
|
|
|
|
size="small"
|
|
|
|
|
v-model="inputQuery.productType" disabled
|
|
|
|
|
placeholder="医疗器械管理类别"
|
|
|
|
|
v-model="inputQuery.productType"
|
|
|
|
|
placeholder="器械类别"
|
|
|
|
|
disabled
|
|
|
|
|
style="width: 100%;"
|
|
|
|
|
>
|
|
|
|
|
<el-option label="器械" value="1"></el-option>
|
|
|
|
|
<el-option label="诊断试剂" value="2"></el-option>
|
|
|
|
|
<el-option label="器械" value="器械"></el-option>
|
|
|
|
|
<el-option label="诊断试剂" value="诊断试剂"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="注册/备案号:" label-width="150px" prop="recordCode">
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.recordCode"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="器械目录分类编码:" label-width="150px" prop="productDirectoryCode">
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.productDirectoryCode" disabled
|
|
|
|
|
disabled
|
|
|
|
|
v-model="inputQuery.productDirectoryCode"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<!-- <el-col :span="10" class="el-col">-->
|
|
|
|
|
<!-- <el-form-item label="代理人名称:" label-width="150px" prop="agentName">-->
|
|
|
|
|
<!-- <el-input-->
|
|
|
|
|
<!-- size="small"-->
|
|
|
|
|
<!-- placeholder="请输入内容"-->
|
|
|
|
|
<!-- v-model="inputQuery.agentName"-->
|
|
|
|
|
<!-- @input="change()"-->
|
|
|
|
|
<!-- ></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
|
<el-form-item label="规格型号:" label-width="150px" prop="specification">
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="产品描述:" label-width="150px" prop="cpms">
|
|
|
|
|
<el-input
|
|
|
|
|
type="textarea"
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.specification" disabled
|
|
|
|
|
v-model="inputQuery.cpms"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="10" class="el-col">
|
|
|
|
|
<el-form-item label="规格型号:" label-width="150px" prop="specification" >
|
|
|
|
|
<el-input
|
|
|
|
|
size="small"
|
|
|
|
|
type="textarea"
|
|
|
|
|
autosize
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.specification"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
|
<el-form-item label="备注:" label-width="150px" prop="remark">
|
|
|
|
@ -202,7 +217,7 @@
|
|
|
|
|
type="textarea"
|
|
|
|
|
size="small"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.remark" disabled
|
|
|
|
|
v-model="inputQuery.remark"
|
|
|
|
|
@input="change()"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|