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()
}