用户管理增加返修审核
This commit is contained in:
parent
48a93cf55f
commit
21520b88b7
@ -20,6 +20,7 @@ export interface UserVO {
|
||||
isimageexamine:string
|
||||
doctorID:string
|
||||
doctorname:string
|
||||
isrepairexamine:string
|
||||
}
|
||||
|
||||
// 查询用户管理列表
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<el-dialog v-model="dialogVisible" title="历史对比" :fullscreen="true" @close="close">
|
||||
<div class="common-layout" style="height: 90vh">
|
||||
<el-dialog v-model="dialogVisible" :fullscreen="true" @close="close">
|
||||
<div class="common-layout" style="height: 94vh">
|
||||
<el-container style="height: 99%">
|
||||
<el-header height="92px" style="margin-bottom: 10px">
|
||||
|
||||
@ -132,8 +132,8 @@
|
||||
</el-button>
|
||||
<span style="font-size: 15px; margin-bottom: 10px">网格</span>
|
||||
</div>
|
||||
<el-aside width="48%" style="margin-left: 20px; padding: 0px">
|
||||
<el-tabs type="border-card" style="height: 97%">
|
||||
<el-aside width="48%" style="margin-left: 10px; padding: 0px">
|
||||
<el-tabs type="border-card" style="height: 97%; ">
|
||||
<el-tab-pane :label="snapshotTime1">
|
||||
<!--心电图-->
|
||||
<ECGhtml
|
||||
@ -401,4 +401,8 @@ defineOptions({ name: 'ECGWarningDialog' })
|
||||
/* 当值等于 currenttime 时的样式 */
|
||||
color: red; /* 例如,将文字颜色改为红色 */
|
||||
}
|
||||
.el-tabs--border-card>.el-tabs__content
|
||||
{
|
||||
padding: 3px;
|
||||
}
|
||||
</style>
|
||||
|
@ -996,7 +996,7 @@ defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||||
.page-item-ecg {
|
||||
padding: 1mm 0.8mm 1mm 0.6mm;
|
||||
max-width: 1184px;
|
||||
margin: 6vh auto 0 auto;
|
||||
margin: 1vh auto 0 auto;
|
||||
border: 2px solid #ccc;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
@ -130,7 +130,14 @@
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-col :span="12">
|
||||
<el-form-item label="返修审核" prop="isrepairexamine">
|
||||
<el-select v-model="formData.isrepairexamine" clearable>
|
||||
<el-option label="是" value="1" />
|
||||
<el-option label="否" value="0" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="备注">
|
||||
@ -182,7 +189,8 @@ const formData = ref({
|
||||
isexamine: '',
|
||||
isimageexamine: '',
|
||||
doctorID: '',
|
||||
doctorname: ''
|
||||
doctorname: '',
|
||||
isrepairexamine:''
|
||||
})
|
||||
const formRules = reactive<FormRules>({
|
||||
username: [{ required: true, message: '用户名称不能为空', trigger: 'blur' }],
|
||||
|
Loading…
Reference in New Issue
Block a user