|
|
|
@ -64,7 +64,10 @@ |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="名称" prop="displayName"> |
|
|
|
<el-input v-model="form.displayName"></el-input> |
|
|
|
<el-input |
|
|
|
v-model="form.displayName" |
|
|
|
ref="refinput" |
|
|
|
></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
@ -128,40 +131,40 @@ |
|
|
|
<el-button type="primary" @click="addoredit">确 定</el-button> |
|
|
|
</span> |
|
|
|
</el-dialog> |
|
|
|
<div style="margin-top:20px"> |
|
|
|
<span style="margin-top: 10px; padding: 5px; margin-left: 15%" |
|
|
|
>项目类别</span |
|
|
|
> |
|
|
|
<el-select |
|
|
|
v-model="values" |
|
|
|
placeholder="请选择" |
|
|
|
@change="ischangs" |
|
|
|
style="margin-top: 5px" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="item in projectid" |
|
|
|
:key="item.id" |
|
|
|
:label="item.displayName" |
|
|
|
:value="item.id" |
|
|
|
<div style="margin-top: 20px"> |
|
|
|
<span style="margin-top: 10px; padding: 5px; margin-left: 15%" |
|
|
|
>项目类别</span |
|
|
|
> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
<!-- --> |
|
|
|
<span style="margin-left: 10%; padding: 5px">搜索选择</span> |
|
|
|
<el-select |
|
|
|
filterable |
|
|
|
v-model="flitvalues" |
|
|
|
placeholder="请选择" |
|
|
|
style="margin-top: 5px" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="item in filetelists" |
|
|
|
:key="item.id" |
|
|
|
:label="item.displayName" |
|
|
|
:value="item.id" |
|
|
|
<el-select |
|
|
|
v-model="values" |
|
|
|
placeholder="请选择" |
|
|
|
@change="ischangs" |
|
|
|
style="margin-top: 5px" |
|
|
|
> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
<el-option |
|
|
|
v-for="item in projectid" |
|
|
|
:key="item.id" |
|
|
|
:label="item.displayName" |
|
|
|
:value="item.id" |
|
|
|
> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
<!-- --> |
|
|
|
<span style="margin-left: 10%; padding: 5px">搜索选择</span> |
|
|
|
<el-select |
|
|
|
filterable |
|
|
|
v-model="flitvalues" |
|
|
|
placeholder="请选择" |
|
|
|
style="margin-top: 5px" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="item in filetelists" |
|
|
|
:key="item.id" |
|
|
|
:label="item.displayName" |
|
|
|
:value="item.id" |
|
|
|
> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<!-- 111 --> |
|
|
|
<div style="display: flex; padding: 10px"> |
|
|
|
@ -236,7 +239,7 @@ |
|
|
|
</el-card> |
|
|
|
</div> |
|
|
|
<!-- 按钮区域 --> |
|
|
|
<div style="margin-left: 10px;margin-top:4rem"> |
|
|
|
<div style="margin-left: 10px; margin-top: 4rem"> |
|
|
|
<el-button type="primary" @click="addll">新增</el-button> |
|
|
|
<div style="margin-top: 10px"> |
|
|
|
<el-button type="primary" @click="editreport">编辑</el-button> |
|
|
|
@ -647,6 +650,10 @@ export default { |
|
|
|
this.dialogVisible = true; |
|
|
|
this.title = 1; |
|
|
|
this.form = {}; |
|
|
|
this.$nextTick(() => { |
|
|
|
this.$refs.refinput.focus(); |
|
|
|
}); |
|
|
|
|
|
|
|
//获取标本类型id |
|
|
|
specimenlist(this.pages).then((res) => { |
|
|
|
this.sampleTypeId = res.data.items; |
|
|
|
|