From 2a895ae364006973d2f8fb30032dac929373bc04 Mon Sep 17 00:00:00 2001 From: lxd <1004405501@qq.com> Date: Thu, 15 Aug 2024 13:58:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B6=85=E5=A3=B0=E5=BD=B1?= =?UTF-8?q?=E5=83=8F=E7=9B=B8=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/dicom/dicomViewPc1.html | 4 ++-- src/views/tblist/patientexamlist/index.vue | 6 +++--- src/views/tblist/patientexamlistultrasonic/index.vue | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/public/static/dicom/dicomViewPc1.html b/public/static/dicom/dicomViewPc1.html index b2313046..33c24f27 100644 --- a/public/static/dicom/dicomViewPc1.html +++ b/public/static/dicom/dicomViewPc1.html @@ -102,8 +102,8 @@ .series_img { border: 0px solid green; - width: 70px; - height: 70px; + width: 30px; + height: 30px; } .series_img_active { diff --git a/src/views/tblist/patientexamlist/index.vue b/src/views/tblist/patientexamlist/index.vue index ef020a9a..b4d621d2 100644 --- a/src/views/tblist/patientexamlist/index.vue +++ b/src/views/tblist/patientexamlist/index.vue @@ -451,7 +451,7 @@ const dicomViewRef = ref() const opendicomViewFrom= (id: number, orgid: string, regid: string,examId:string) => { dicomViewRef.value.open(id, orgid, regid,examId) - +} /** 表格行点击 */ const clickNumber = ref(0) function handleEdit(row) { @@ -514,7 +514,7 @@ function nowDate(time) { const getList = async () => { loading.value = true try { - queryParams.deviceType = 'CT' + // queryParams.deviceType = 'CT' const data = await PatientexamlistApi.getPatientexamlistPage(queryParams) list.value = data.list total.value = data.total @@ -530,7 +530,7 @@ const dicomDataSync = async () => { /** 搜索按钮操作 */ const handleQuery = () => { queryParams.pageNo = 1 - queryParams.deviceType = 'CT' + // queryParams.deviceType = 'CT' //获取到当前登陆用户的机构时 要进行赋值 queryParams.orgId = '' queryParams.highLevelOrgId = '' diff --git a/src/views/tblist/patientexamlistultrasonic/index.vue b/src/views/tblist/patientexamlistultrasonic/index.vue index aa9bad6e..2c144a41 100644 --- a/src/views/tblist/patientexamlistultrasonic/index.vue +++ b/src/views/tblist/patientexamlistultrasonic/index.vue @@ -514,7 +514,7 @@ function nowDate(time) { const getList = async () => { loading.value = true try { - queryParams.deviceType = 'US' + // queryParams.deviceType = 'US' const data = await PatientexamlistApi.getPatientexamlistPage(queryParams) list.value = data.list total.value = data.total @@ -533,7 +533,7 @@ const handleQuery = () => { //获取到当前登陆用户的机构时 要进行赋值 queryParams.orgId = '' queryParams.highLevelOrgId = '' - queryParams.deviceType = 'US' + // queryParams.deviceType = 'US' getList() }