diff --git a/src/views/tblist/patientexamlist/index.vue b/src/views/tblist/patientexamlist/index.vue index b4d621d2..03e8c99d 100644 --- a/src/views/tblist/patientexamlist/index.vue +++ b/src/views/tblist/patientexamlist/index.vue @@ -111,6 +111,7 @@ + @@ -514,7 +515,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 @@ -524,13 +525,14 @@ const getList = async () => { } const dicomDataSync = async () => { - PatientexamlistApi.dicomDataSync() + await PatientexamlistApi.dicomDataSync() + message.success('同步成功') } /** 搜索按钮操作 */ 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 2c144a41..6edf6be0 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 @@ -524,7 +524,8 @@ const getList = async () => { } const dicomDataSync = async () => { - PatientexamlistApi.dicomDataSync() + await PatientexamlistApi.dicomDataSync() + message.success('同步成功') } /** 搜索按钮操作 */ @@ -533,7 +534,7 @@ const handleQuery = () => { //获取到当前登陆用户的机构时 要进行赋值 queryParams.orgId = '' queryParams.highLevelOrgId = '' - // queryParams.deviceType = 'US' + queryParams.deviceType = 'US' getList() }