修改查询条件
This commit is contained in:
parent
d05f0eb2ba
commit
2d036816bc
@ -790,7 +790,7 @@ const loadPatientData = async (patient) => {
|
||||
ultrasound: { finding: '未见异常', diagnosis: '未见异常' },
|
||||
ecg: { finding: '详见报告单', diagnosis: '详见报告单' },
|
||||
blood: { summary: '' },
|
||||
urine: { summary: '' },
|
||||
urine: { summary: '未见异常' },
|
||||
biochemical: { summary: '' }
|
||||
}
|
||||
|
||||
@ -965,7 +965,7 @@ const handlePatientSelect = async (patient) => {
|
||||
ultrasound: { finding: '未见异常', diagnosis: '未见异常' },
|
||||
ecg: { finding: '详见报告单', diagnosis: '详见报告单' },
|
||||
blood: { summary: '' },
|
||||
urine: { summary: '' },
|
||||
urine: { summary: '未见异常' },
|
||||
biochemical: { summary: '' },
|
||||
summary: { summary: '' }
|
||||
}
|
||||
@ -1685,7 +1685,7 @@ const handleRefresh = async (e) => {
|
||||
ultrasound: { finding: '未见异常', diagnosis: '未见异常' },
|
||||
ecg: { finding: '详见报告单', diagnosis: '详见报告单' },
|
||||
blood: { summary: '' },
|
||||
urine: { summary: '' },
|
||||
urine: { summary: '未见异常' },
|
||||
biochemical: { summary: '' }
|
||||
}
|
||||
|
||||
|
@ -33,6 +33,7 @@
|
||||
end-placeholder="结束日期"
|
||||
value-format="YYYY-MM-DD HH:mm:ss"
|
||||
:default-time="[new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 1, 1, 23, 59, 59)]"
|
||||
:default-value="[new Date(), new Date()]"
|
||||
clearable
|
||||
class="!w-320px"
|
||||
/>
|
||||
@ -121,6 +122,8 @@
|
||||
import { PatientApi, type PatientVO } from '@/api/inspect/inspectpatient'
|
||||
// 使用相对路径导入组件
|
||||
import ReportPreview from './components/ReportPreview.vue'
|
||||
import dayjs from 'dayjs'
|
||||
|
||||
defineOptions({ name: 'ReportPrint' })
|
||||
//打印预览相关变量
|
||||
const printDialogVisible = ref(false)
|
||||
@ -136,7 +139,10 @@ const queryParams = reactive({
|
||||
pageSize: 10,
|
||||
medicalSn: undefined as string | undefined,
|
||||
pname: undefined as string | undefined,
|
||||
medicalDateTime: [],
|
||||
medicalDateTime: [
|
||||
dayjs().startOf('day').format('YYYY-MM-DD HH:mm:ss'),
|
||||
dayjs().endOf('day').format('YYYY-MM-DD HH:mm:ss')
|
||||
],
|
||||
status: 1
|
||||
})
|
||||
const queryFormRef = ref() // 搜索的表单
|
||||
|
Loading…
Reference in New Issue
Block a user