修改超声影像相关

This commit is contained in:
lxd 2024-08-15 13:58:27 +08:00
parent e0ed5a7680
commit 2a895ae364
3 changed files with 7 additions and 7 deletions

View File

@ -102,8 +102,8 @@
.series_img {
border: 0px solid green;
width: 70px;
height: 70px;
width: 30px;
height: 30px;
}
.series_img_active {

View File

@ -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 = ''

View File

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