|
|
|
@ -63,7 +63,7 @@ import { getapi, postapi, putapi, deletapi } from "@/api/api"; |
|
|
|
import { arrayExistObj, getColorStr } from '@/utlis/proFunc'; |
|
|
|
export default { |
|
|
|
components: {}, |
|
|
|
props: ["patientId", "tabChoosed"], |
|
|
|
props: ["patientId", "tabChoosed","refParams"], |
|
|
|
data() { |
|
|
|
return { |
|
|
|
RegisterCheckList: [], |
|
|
|
@ -84,8 +84,15 @@ export default { |
|
|
|
...mapState(['window', 'dict', 'dataTransOpts', 'doctorCheck', 'sumDoctorCheck']), |
|
|
|
|
|
|
|
divHeight() { |
|
|
|
let tempHeight = this.window.pageHeight < 600 ? 600 : this.window.pageHeight |
|
|
|
return tempHeight - 195 |
|
|
|
let tableHeight = 465 |
|
|
|
switch (this.refParams.place) { |
|
|
|
case 'summary': //总检处 |
|
|
|
tableHeight = (this.window.pageHeight < 600 ? 600 : this.window.pageHeight) - 195 |
|
|
|
break; |
|
|
|
default: |
|
|
|
break; |
|
|
|
} |
|
|
|
return tableHeight |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|