123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <template>
- <el-row :gutter="5" style="height: 100%;">
- <el-col :span="8" style="height: auto;">
- <PageLayer>
- <template #main class="hd-cl">
- <el-row :gutter="5">
- <el-descriptions :column="2" border style="width:100%;">
- <el-descriptions-item label="门诊号" width="15%">
- {{ crmEmrPatientVo.hisMzNo }}
- </el-descriptions-item>
- <el-descriptions-item label="住院号" width="15%">
- {{ crmEmrPatientVo.hisZyNo }}
- </el-descriptions-item>
- </el-descriptions>
- </el-row>
- <el-row :gutter="5">
- <el-descriptions :column="1" border style="width:100%;">
- <el-descriptions-item label="证件号" width="30%">
- {{ crmEmrPatientVo.socialNo }}
- </el-descriptions-item>
- </el-descriptions>
- </el-row>
- <el-row :gutter="5">
- <el-descriptions :column="1" border style="width:100%;">
- <el-descriptions-item label="慢病类型" width="30%">
- {{
- crmEmrPatientVo.chronicDiseaseName.substring(0,
- crmEmrPatientVo.chronicDiseaseName.lastIndexOf(","))
- }}
- </el-descriptions-item>
- </el-descriptions>
- </el-row>
- <el-row :gutter="5">
- <el-descriptions :column="2" border style="width:100%;">
- <el-descriptions-item label="姓名" width="15%">
- {{ crmEmrPatientVo.pName }}
- </el-descriptions-item>
- <el-descriptions-item label="病人来源" width="15%">
- {{ crmEmrPatientVo.ptName }}
- </el-descriptions-item>
- </el-descriptions>
- </el-row>
- <el-row :gutter="5">
- <el-descriptions :column="2" border style="width:100%;">
- <el-descriptions-item label="性别" width="15%">
- {{ crmEmrPatientVo.sexValue }}
- </el-descriptions-item>
- <el-descriptions-item label="年龄" width="15%">
- {{ crmEmrPatientVo.age === null ? '' : crmEmrPatientVo.age + '岁' }}
- </el-descriptions-item>
- </el-descriptions>
- </el-row>
- <el-row :gutter="5" style="padding-top: 5px;">
- <el-tabs type="border-card" v-model="tabType" class="small_tabs" @tab-click="queryCrmEmdrData"
- style="width:100%;">
- <el-tab-pane label="慢病模板" name="0">
- <el-table :data="emrTemplateData" @row-click="rowClick">
- <el-table-column type="index" label="序号" width="50"></el-table-column>
- <el-table-column label="名称" prop="name"></el-table-column>
- </el-table>
- </el-tab-pane>
- <el-tab-pane label="历史模板" name="3">
- <el-input v-model="filterText" placeholder="搜索" style="width: 100%;">
- <template #prepend>关键字</template>
- </el-input>
- <el-tree style="width: 100%;" ref="treeRef" class="filter-tree" :data="treeData"
- :props="defaultProps" @node-click="handleNodeClick" node-key="id" highlight-current
- default-expand-all :filter-node-method="filterNode"/>
- </el-tab-pane>
- </el-tabs>
- </el-row>
- </template>
- </PageLayer>
- </el-col>
- <el-col :span="16" style="height: auto;">
- <PageLayer>
- <template #header class="hd-cl">
- <el-input v-model="textCode" placeholder="请输入证件号/门诊号/住院号" style="width: 320px;">
- <template #prepend>关键字</template>
- </el-input>
- <el-button type="primary" icon="Search" @click="selectCrmPatientMiByCode" style="margin-left: 10px">查询
- </el-button>
- <el-button type="success" @click="saveData">保存</el-button>
- <el-button icon="Printer" type="primary" @click="handlePrint"> 打印</el-button>
- </template>
- <template #main>
- <div ref="emrDivRef" style="width: 100% ; height: 100%">
- </div>
- </template>
- </PageLayer>
- </el-col>
- </el-row>
- </template>
- <script setup lang="ts">
- import {onMounted, ref, nextTick, watch, onActivated, onUnmounted} from "vue";
- import PageLayer from '@/layout/PageLayer.vue'
- import {clone} from '@/utils/clone'
- import {useEmrInit, UseEmrInitReturn} from "@/utils/emr/emr-init-v2";
- import {
- getCrmEmrModel,
- queryCrmEmrTree,
- queryCrmPatientInfoByCode,
- saveCrmEmrModel
- } from "@/api/chronic-disease/chronic-disease-questionnaire";
- import {userInfoStore} from "@/utils/store-public";
- import {ElMessageBox, ElTree, ElMessage} from 'element-plus'
- import {stringIsBlank} from "@/utils/blank-utils";
- import {getServerDateApi, getUuid} from "@/api/public-api";
- import router from "@/router";
- import {useCompRef} from "@/utils/useCompRef";
- import {onDeactivated} from "@vue/runtime-core";
- import {xcMessage} from "@/utils/xiaochan-element-plus";
- const textCode = ref('')
- const tabType = ref('0')
- const emrEvent = {
- 'contextUpdate': (evt, contextMap, component, context) => {
- const element = component.getAttribute('element')
- if (element) {
- console.log(element.name)
- }
- }
- }
- export interface Property {
- editorVersion?: string;
- creator?: string;
- modifyTime?: string;
- createTime?: string;
- modifier?: string;
- reviewer?: string;
- reviewTime?: string;
- }
- export interface Version {
- name?: string;
- properties?: Property;
- }
- export interface emrTemplateType {
- documentId?: string,
- parent?: string;
- code?: string;
- versions?: Version[];
- sortNumber?: number;
- name?: string;
- description?: string;
- _id?: string;
- type?: string;
- labels?: string[];
- }
- const emrTemplateData = ref<emrTemplateType[]>()
- const emrTemplateEditData = ref<emrTemplateType[]>()
- const emrDivRef = ref<HTMLDivElement>()
- let editor: UseEmrInitReturn;
- const selectionStatus = ref(false)
- const categoryCode = ref<string>('')
- const mzEmrName = ref<string>('')
- const parent = ref<string>('')
- const rowClick = async (row: emrTemplateType) => {
- selectionStatus.value = true
- categoryCode.value = row.code as string
- mzEmrName.value = row.name as string
- parent.value = row.parent as string
- if (tabType.value == '0') {
- await editor.loadAndSetDocument({
- categoryId: row._id,
- categoryCode: row.code,
- })
- } else {
- await editor.loadAndSetDocument({
- documentId: row.documentId
- })
- }
- editor.editor.setEditorMode('form')
- }
- const saveData = () => {
- const validator = editor.editor.getValidator();
- const valid = validator.valid(true);
- if (valid) {
- xcMessage.error('请检查必填项或者填写值是否正确!')
- return
- }
- if (!((tabType.value == '0' || tabType.value == '2') && selectionStatus.value)) {
- return ElMessage.error('请选择数据,只有慢病模板才能保存!')
- }
- ElMessageBox.confirm('请确认是否保存', {
- cancelButtonText: '取消',
- confirmButtonText: '确定',
- })
- .then(() => {
- clickSaveData()
- })
- .catch(() => {
- })
- }
- const clickSaveData = async () => {
- // 解析 id
- let id = await analysisIframeSrcSearch()
- let data: any = {
- pId: crmEmrPatientVo.value.pId,
- pType: crmEmrPatientVo.value.pType,
- emrDocumentId: id,
- emrCategoryCode: categoryCode.value,
- visitTimes: crmEmrPatientVo.value.visitTimes,
- emrName: mzEmrName.value,
- name: mzEmrName.value,
- parent: parent.value,
- inputId: crmEmrPatientVo.value.userIdCode,
- inputDept: crmEmrPatientVo.value.deptCode,
- documentData: null
- }
- let newDate = await getServerDateApi();
- const document = editor.editor.getDocument();
- document.properties.categoryCode = data.emrCategoryCode
- document.properties.patientId = data.pId + "-" + data.visitTimes;
- document._id = data.emrDocumentId
- data.documentData = document
- if (document.properties.creator) {
- document.properties.modifier = crmEmrPatientVo.value.userIdCode
- document.properties.modifierId = crmEmrPatientVo.value.userName
- document.properties.modifyTime = newDate
- } else {
- document.properties.creator = crmEmrPatientVo.value.userIdCode
- document.properties.creatorId = crmEmrPatientVo.value.userName
- document.properties.createTime = newDate
- }
- saveCrmEmrModel(data).then((res: any) => {
- selectCrmPatientMiByCode()
- queryCrmEmdrData(null, null)
- })
- }
- const analysisIframeSrcSearch = async () => {
- let id = getId()
- let temp: string
- if (stringIsBlank(id)) {
- // 这个是 唯一 id 调用服务的雪花算法
- temp = await getUuid()
- } else {
- temp = id
- }
- return temp
- }
- const getId = () => {
- if (editor) {
- return editor.editor.documentData._id
- }
- return null
- }
- const appContext = () => {
- return {
- endpoints: {
- app: "/bdp/dataservice/api",
- his: import.meta.env.VITE_BASE_URL,
- },
- input: {
- user: userInfoStore.value.code,
- name: userInfoStore.value.name
- },
- login: {
- token: userInfoStore.value.token,
- user: {
- id: userInfoStore.value.code,
- name: userInfoStore.value.name
- }
- },
- data: {
- '姓名': crmEmrPatientVo.value.pName,
- '性别': [{code: crmEmrPatientVo.value.sex, name: crmEmrPatientVo.value.sexValue}],
- '年龄': crmEmrPatientVo.value.age,
- '电话号码': crmEmrPatientVo.value.relTel,
- '住址': crmEmrPatientVo.value.detailAdress,
- '身份证号码': crmEmrPatientVo.value.socialNo,
- '家属电话': crmEmrPatientVo.value.relNameTel,
- '首次建卡时间': crmEmrPatientVo.value.createDate,
- '随访医生': [{code: crmEmrPatientVo.value.userIdCode, name: crmEmrPatientVo.value.userName}],
- }
- }
- }
- const handlePrint = () => {
- editor.editor.execute("print", {
- value: {
- showPreview: false,
- }
- })
- }
- const crmEmrPatientVo = ref<any>({
- pId: '',
- pType: '',
- hisMzNo: '',
- hisZyNo: '',
- visitTimes: null,
- userIdCode: '',
- userName: '',
- deptCode: '',
- deptName: '',
- pName: '',
- sex: '',
- sexValue: '',
- age: null,
- relTel: '',
- socialNo: '',
- relNameTel: '',
- chronicDiseaseName: '',
- detailAdress: '',
- createDate: '',
- ptName: '',
- type: null,
- })
- const treeData = ref<Tree[]>()
- const selectCrmPatientMiByCode = () => {
- queryCrmPatientInfoByCode(textCode.value).then((res: any) => {
- crmEmrPatientVo.value = res
- router.push({
- name: 'chronicDiseaseQuestionnaire',
- query: {
- id: textCode.value
- }
- })
- })
- }
- const queryCrmEmdrData = async (tab: any, event: any) => {
- tabType.value = tab === null ? '0' : tab.props.name
- let type = Number.parseInt(tabType.value)
- selectionStatus.value = false
- if (type == 0) {
- await getCrmEmrModel().then((res: any) => {
- let tem = [] as Array<emrTemplateType>
- if (res) {
- for (let i = 0; i < res.length; i++) {
- if (res[i].parent != null) {
- tem.push(res[i])
- }
- }
- }
- emrTemplateData.value = tem
- })
- } else {
- crmEmrPatientVo.value['type'] = type
- queryCrmEmrTree(crmEmrPatientVo.value).then((res: any) => {
- treeData.value = res
- })
- }
- }
- interface Tree {
- [key: string]: any
- }
- const filterText = ref('')
- const treeRef = useCompRef(ElTree)
- const defaultProps = {
- children: 'children',
- label: 'name',
- }
- watch(filterText, (val) => {
- treeRef.value!.filter(val)
- })
- const filterNode = (value: string, data: Tree) => {
- if (!value) return true
- return data.name.includes(value)
- }
- const handleNodeClick = (node: any, object: any, event: any) => {
- selectionStatus.value = true
- editor.editor.setEditorMode('readonly')
- editor.loadAndSetDocument({
- documentId: node.emrDocumentId
- })
- }
- let tempDocument = null
- onDeactivated(() => {
- tempDocument = editor.editor.getDocument()
- })
- onActivated(async () => {
- const id = router.currentRoute.value.query.id as string
- if (id) {
- if (textCode.value !== id) {
- tempDocument = null
- }
- textCode.value = id
- selectCrmPatientMiByCode()
- }
- await nextTick()
- useEmrInit(emrDivRef.value, {appContext, event: emrEvent}).then((res: any) => {
- editor = res
- if (tempDocument) {
- editor.editor.setDocument(tempDocument)
- tempDocument = null
- }
- })
- })
- onMounted(async () => {
- await queryCrmEmdrData(null, null)
- })
- </script>
|