用户管理增加返修审核

This commit is contained in:
lxd 2024-12-23 09:58:06 +08:00
parent 48a93cf55f
commit 21520b88b7
4 changed files with 20 additions and 7 deletions

View File

@ -20,6 +20,7 @@ export interface UserVO {
isimageexamine:string isimageexamine:string
doctorID:string doctorID:string
doctorname:string doctorname:string
isrepairexamine:string
} }
// 查询用户管理列表 // 查询用户管理列表

View File

@ -1,6 +1,6 @@
<template> <template>
<el-dialog v-model="dialogVisible" title="历史对比" :fullscreen="true" @close="close"> <el-dialog v-model="dialogVisible" :fullscreen="true" @close="close">
<div class="common-layout" style="height: 90vh"> <div class="common-layout" style="height: 94vh">
<el-container style="height: 99%"> <el-container style="height: 99%">
<el-header height="92px" style="margin-bottom: 10px"> <el-header height="92px" style="margin-bottom: 10px">
@ -132,8 +132,8 @@
</el-button> </el-button>
<span style="font-size: 15px; margin-bottom: 10px">网格</span> <span style="font-size: 15px; margin-bottom: 10px">网格</span>
</div> </div>
<el-aside width="48%" style="margin-left: 20px; padding: 0px"> <el-aside width="48%" style="margin-left: 10px; padding: 0px">
<el-tabs type="border-card" style="height: 97%"> <el-tabs type="border-card" style="height: 97%; ">
<el-tab-pane :label="snapshotTime1"> <el-tab-pane :label="snapshotTime1">
<!--心电图--> <!--心电图-->
<ECGhtml <ECGhtml
@ -401,4 +401,8 @@ defineOptions({ name: 'ECGWarningDialog' })
/* 当值等于 currenttime 时的样式 */ /* 当值等于 currenttime 时的样式 */
color: red; /* 例如,将文字颜色改为红色 */ color: red; /* 例如,将文字颜色改为红色 */
} }
.el-tabs--border-card>.el-tabs__content
{
padding: 3px;
}
</style> </style>

View File

@ -996,7 +996,7 @@ defineExpose({ open }) // 提供 open 方法,用于打开弹窗
.page-item-ecg { .page-item-ecg {
padding: 1mm 0.8mm 1mm 0.6mm; padding: 1mm 0.8mm 1mm 0.6mm;
max-width: 1184px; max-width: 1184px;
margin: 6vh auto 0 auto; margin: 1vh auto 0 auto;
border: 2px solid #ccc; border: 2px solid #ccc;
border-radius: 8px; border-radius: 8px;
} }

View File

@ -130,7 +130,14 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </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-row>
<el-col :span="24"> <el-col :span="24">
<el-form-item label="备注"> <el-form-item label="备注">
@ -182,7 +189,8 @@ const formData = ref({
isexamine: '', isexamine: '',
isimageexamine: '', isimageexamine: '',
doctorID: '', doctorID: '',
doctorname: '' doctorname: '',
isrepairexamine:''
}) })
const formRules = reactive<FormRules>({ const formRules = reactive<FormRules>({
username: [{ required: true, message: '用户名称不能为空', trigger: 'blur' }], username: [{ required: true, message: '用户名称不能为空', trigger: 'blur' }],