|
|
|
@ -1,20 +1,35 @@ |
|
|
|
<template> |
|
|
|
<div> |
|
|
|
<el-card> |
|
|
|
<div style="display: flex;"> |
|
|
|
<div :style="'display: block; width:' + (window.pageWidth - 120 - 70) + 'px;'"> |
|
|
|
<PatientRegisterQueryNobtn orgEnable="Y"/> |
|
|
|
<div style="display: flex;"> |
|
|
|
<div :style="'width:' + (window.pageWidth - 120 - 70)*3/4 + 'px;'"> |
|
|
|
<div class="publiccss">体检报告</div> |
|
|
|
<div style="display: flex; margin-top: 20px"> |
|
|
|
<div |
|
|
|
:style=" |
|
|
|
'display: block; width:' + (window.pageWidth - 120 - 70) + 'px;' |
|
|
|
" |
|
|
|
> |
|
|
|
<PatientRegisterQueryNobtn orgEnable="Y" /> |
|
|
|
<div style="display: flex"> |
|
|
|
<div |
|
|
|
:style=" |
|
|
|
'width:' + ((window.pageWidth - 120 - 70) * 3) / 4 + 'px;' |
|
|
|
" |
|
|
|
> |
|
|
|
<PatientRegisterListNobtn /> |
|
|
|
</div> |
|
|
|
<div :style="'margin-left: 2px;width:' + (window.pageWidth - 120 - 70 - 8)/4 + 'px;'"> |
|
|
|
<div |
|
|
|
:style=" |
|
|
|
'margin-left: 2px;width:' + |
|
|
|
(window.pageWidth - 120 - 70 - 8) / 4 + |
|
|
|
'px;' |
|
|
|
" |
|
|
|
> |
|
|
|
<RegisterCheckStatus /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<SumAsbItemStatus /> |
|
|
|
</div> |
|
|
|
<div style=" margin-left: 10px;width:110px;"> |
|
|
|
<div style="margin-left: 10px; width: 110px"> |
|
|
|
<BtnReport /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -25,7 +40,13 @@ |
|
|
|
import moment from "moment"; |
|
|
|
import { mapState, mapActions } from "vuex"; |
|
|
|
import { getapi, postapi, putapi, deletapi } from "@/api/api"; |
|
|
|
import { tcdate,dddw, objCopy, arrayReduce, arrayExistObj } from "@/utlis/proFunc"; |
|
|
|
import { |
|
|
|
tcdate, |
|
|
|
dddw, |
|
|
|
objCopy, |
|
|
|
arrayReduce, |
|
|
|
arrayExistObj, |
|
|
|
} from "@/utlis/proFunc"; |
|
|
|
|
|
|
|
import PatientRegisterQueryNobtn from "../../components/report/PatientRegisterQueryNobtn.vue"; |
|
|
|
import PatientRegisterListNobtn from "../../components/report/PatientRegisterListNobtn.vue"; |
|
|
|
@ -42,9 +63,7 @@ export default { |
|
|
|
BtnReport, |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
|
|
|
|
}; |
|
|
|
return {}; |
|
|
|
}, |
|
|
|
|
|
|
|
created() { |
|
|
|
@ -52,9 +71,9 @@ export default { |
|
|
|
}, |
|
|
|
|
|
|
|
//挂载完成 |
|
|
|
mounted() { }, |
|
|
|
mounted() {}, |
|
|
|
computed: { |
|
|
|
...mapState(["window", "dict","patientRegister"]), |
|
|
|
...mapState(["window", "dict", "patientRegister"]), |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
//数据初始化 |
|
|
|
@ -173,7 +192,6 @@ export default { |
|
|
|
this.query(); |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|
|