修改超声影像

This commit is contained in:
lxd 2024-08-15 15:13:47 +08:00
parent 2a895ae364
commit 2f1c5c838a
2 changed files with 9 additions and 6 deletions

View File

@ -111,6 +111,7 @@
<el-option label="待分检" value="待分检" />
<el-option label="已分检" value="已分检" />
<el-option label="已分析" value="已分析" />
<el-option label="待分析" value="待分析" />
<el-option label="已审核" value="已审核" />
</el-select>
</el-form-item>
@ -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 = ''

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