|
|
@ -64,7 +64,10 @@ |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="12"> |
|
|
<el-col :span="12"> |
|
|
<el-form-item label="名称" prop="displayName"> |
|
|
<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-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="12"> |
|
|
<el-col :span="12"> |
|
|
@ -128,7 +131,7 @@ |
|
|
<el-button type="primary" @click="addoredit">确 定</el-button> |
|
|
<el-button type="primary" @click="addoredit">确 定</el-button> |
|
|
</span> |
|
|
</span> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
<div style="margin-top:20px"> |
|
|
|
|
|
|
|
|
<div style="margin-top: 20px"> |
|
|
<span style="margin-top: 10px; padding: 5px; margin-left: 15%" |
|
|
<span style="margin-top: 10px; padding: 5px; margin-left: 15%" |
|
|
>项目类别</span |
|
|
>项目类别</span |
|
|
> |
|
|
> |
|
|
@ -236,7 +239,7 @@ |
|
|
</el-card> |
|
|
</el-card> |
|
|
</div> |
|
|
</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> |
|
|
<el-button type="primary" @click="addll">新增</el-button> |
|
|
<div style="margin-top: 10px"> |
|
|
<div style="margin-top: 10px"> |
|
|
<el-button type="primary" @click="editreport">编辑</el-button> |
|
|
<el-button type="primary" @click="editreport">编辑</el-button> |
|
|
@ -647,6 +650,10 @@ export default { |
|
|
this.dialogVisible = true; |
|
|
this.dialogVisible = true; |
|
|
this.title = 1; |
|
|
this.title = 1; |
|
|
this.form = {}; |
|
|
this.form = {}; |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.$refs.refinput.focus(); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
//获取标本类型id |
|
|
//获取标本类型id |
|
|
specimenlist(this.pages).then((res) => { |
|
|
specimenlist(this.pages).then((res) => { |
|
|
this.sampleTypeId = res.data.items; |
|
|
this.sampleTypeId = res.data.items; |
|
|
|