序列-数量,标题修改

This commit is contained in:
旺仔 2024-08-16 12:29:27 +08:00
parent 3964129d1a
commit 5ec730ca8b
2 changed files with 14 additions and 16 deletions

View File

@ -298,7 +298,7 @@
width="180px" width="180px"
/> />
<el-table-column label="设备类型" align="center" prop="deviceType" /> <el-table-column label="设备类型" align="center" prop="deviceType" />
<el-table-column label="Se/Im" align="center" prop="seDc" width="80px" /> <el-table-column label="序列/数量" align="center" prop="seDc" width="80px" />
<el-table-column label="检查项目名称" align="center" prop="examItemName" width="180px" /> <el-table-column label="检查项目名称" align="center" prop="examItemName" width="180px" />
<el-table-column label="报告状态" align="center" prop="reportstatus" width="100px"> <el-table-column label="报告状态" align="center" prop="reportstatus" width="100px">
@ -450,25 +450,24 @@ const exportLoading = ref(false) // 导出的加载中
/** 影像组件 */ /** 影像组件 */
const dicomViewRef = ref() const dicomViewRef = ref()
const opendicomViewFrom= (id: number, orgid: string, regid: string,examId:string) => { const opendicomViewFrom = (id: number, orgid: string, regid: string, examId: string) => {
dicomViewRef.value.open(id, orgid, regid,examId) dicomViewRef.value.open(id, orgid, regid, examId)
} }
/** 表格行点击 */ /** 表格行点击 */
const clickNumber = ref(0) const clickNumber = ref(0)
function handleEdit(row) { function handleEdit(row) {
console.log(111111121212) console.log(111111121212)
if(!row.deviceType.includes("US"))//US if (!row.deviceType.includes('US')) {
{ //US
opendicomViewFrom(row.id,row.orgId,row.regId,row.examId) opendicomViewFrom(row.id, row.orgId, row.regId, row.examId)
/* clickNumber.value++; /* clickNumber.value++;
if (clickNumber.value == 2) { if (clickNumber.value == 2) {
} }
clickNumber.value = 0; */ clickNumber.value = 0; */
} }
} }
/** aaaaa **/ /** aaaaa **/

View File

@ -297,7 +297,7 @@
width="180px" width="180px"
/> />
<el-table-column label="设备类型" align="center" prop="deviceType" /> <el-table-column label="设备类型" align="center" prop="deviceType" />
<el-table-column label="Se/Im" align="center" prop="seDc" width="80px" /> <el-table-column label="序列/数量" align="center" prop="seDc" width="80px" />
<el-table-column label="检查项目名称" align="center" prop="examItemName" width="160px" /> <el-table-column label="检查项目名称" align="center" prop="examItemName" width="160px" />
<el-table-column label="报告状态" align="center" prop="reportstatus" width="100px"> <el-table-column label="报告状态" align="center" prop="reportstatus" width="100px">
@ -457,17 +457,16 @@ const openultrForm = (id: number, orgid: string, regid: string) => {
const clickNumber = ref(0) const clickNumber = ref(0)
function handleEdit(row) { function handleEdit(row) {
console.log(111111121212) console.log(111111121212)
if(row.deviceType.includes("US"))//US if (row.deviceType.includes('US')) {
{ //US
openultrForm(row.id,row.orgId,row.regId) openultrForm(row.id, row.orgId, row.regId)
/* clickNumber.value++; /* clickNumber.value++;
if (clickNumber.value == 2) { if (clickNumber.value == 2) {
} }
clickNumber.value = 0; */ clickNumber.value = 0; */
} }
} }
/** aaaaa **/ /** aaaaa **/