修改超声影像

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-option label="已分析" value="已分析" />
<el-option label="待分析" value="待分析" />
<el-option label="已审核" value="已审核" /> <el-option label="已审核" value="已审核" />
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -514,7 +515,7 @@ function nowDate(time) {
const getList = async () => { const getList = async () => {
loading.value = true loading.value = true
try { try {
// queryParams.deviceType = 'CT' queryParams.deviceType = 'CT'
const data = await PatientexamlistApi.getPatientexamlistPage(queryParams) const data = await PatientexamlistApi.getPatientexamlistPage(queryParams)
list.value = data.list list.value = data.list
total.value = data.total total.value = data.total
@ -524,13 +525,14 @@ const getList = async () => {
} }
const dicomDataSync = async () => { const dicomDataSync = async () => {
PatientexamlistApi.dicomDataSync() await PatientexamlistApi.dicomDataSync()
message.success('同步成功')
} }
/** 搜索按钮操作 */ /** 搜索按钮操作 */
const handleQuery = () => { const handleQuery = () => {
queryParams.pageNo = 1 queryParams.pageNo = 1
// queryParams.deviceType = 'CT' queryParams.deviceType = 'CT'
// //
queryParams.orgId = '' queryParams.orgId = ''
queryParams.highLevelOrgId = '' queryParams.highLevelOrgId = ''

View File

@ -514,7 +514,7 @@ function nowDate(time) {
const getList = async () => { const getList = async () => {
loading.value = true loading.value = true
try { try {
// queryParams.deviceType = 'US' queryParams.deviceType = 'US'
const data = await PatientexamlistApi.getPatientexamlistPage(queryParams) const data = await PatientexamlistApi.getPatientexamlistPage(queryParams)
list.value = data.list list.value = data.list
total.value = data.total total.value = data.total
@ -524,7 +524,8 @@ const getList = async () => {
} }
const dicomDataSync = async () => { const dicomDataSync = async () => {
PatientexamlistApi.dicomDataSync() await PatientexamlistApi.dicomDataSync()
message.success('同步成功')
} }
/** 搜索按钮操作 */ /** 搜索按钮操作 */
@ -533,7 +534,7 @@ const handleQuery = () => {
// //
queryParams.orgId = '' queryParams.orgId = ''
queryParams.highLevelOrgId = '' queryParams.highLevelOrgId = ''
// queryParams.deviceType = 'US' queryParams.deviceType = 'US'
getList() getList()
} }