Browse Source

doctor

master
pengjun 2 years ago
parent
commit
1482c5e045
  1. 8
      src/components/doctorCheck/CheckItemList.vue
  2. 6
      src/components/doctorCheck/PatientRegisterList.vue
  3. 2
      src/components/report/CusOrgOCX.vue

8
src/components/doctorCheck/CheckItemList.vue

@ -159,9 +159,9 @@ export default {
}) })
// //
getapi('/api/app/common-char/in-filter').then(res => {
postapi('/api/app/CommonChar/GetCommonCharList',{}).then(res => {
if(res.code >= 0){ if(res.code >= 0){
this.symbols = res.data.items
this.symbols = res.data
} }
}) })
}, },
@ -284,6 +284,8 @@ export default {
// //
computeFun(index) { computeFun(index) {
//
let haveComputeFun = false
let checkItem = this.doctorCheck.checkItemList[index] let checkItem = this.doctorCheck.checkItemList[index]
console.log('checkItem', checkItem) console.log('checkItem', checkItem)
let body = { let body = {
@ -296,7 +298,9 @@ export default {
itemId: e.itemId, itemId: e.itemId,
result: e.result result: e.result
}) })
if(e.isCalculationItem == 'Y') haveComputeFun = true
}); });
if(!haveComputeFun) return //
let lfind = -1 let lfind = -1
postapi('/api/app/diagnosisfunction/getcalculationfunctionresult', body).then(res => { postapi('/api/app/diagnosisfunction/getcalculationfunctionresult', body).then(res => {
if (res.code != -1) { if (res.code != -1) {

6
src/components/doctorCheck/PatientRegisterList.vue

@ -8,10 +8,10 @@
style="font-size: 24px;color: red;cursor:pointer;"></i> style="font-size: 24px;color: red;cursor:pointer;"></i>
</el-tooltip> </el-tooltip>
</div> </div>
<div class="query">
<el-input placeholder="请选择体检单位" v-model="patientRegister.query.cusOrgOCX" style="width:268px;" size="small" disabled>
<el-button slot="append" icon="el-icon-search" @click="report.dialogCusOrgOCX = true" style="font-size: 20px;min-width:40px;margin: -10px;"></el-button>
<div class="query" style="display: flex;">
<el-input placeholder="请选择体检单位" v-model="patientRegister.query.cusOrgOCX" style="width:238px;" size="small" disabled>
</el-input> </el-input>
<el-button icon="el-icon-search" @click="report.dialogCusOrgOCX = true" style="font-size: 20px;height:30px;min-width:30px; padding: 5px 5px;" size="small"></el-button>
</div> </div>
<div class="query"> <div class="query">

2
src/components/report/CusOrgOCX.vue

@ -1,6 +1,6 @@
<template> <template>
<div style="display: flex;"> <div style="display: flex;">
<div v-if="useCusOrg" style="width: 180px;height:520px;overflow: scroll;border: 1px solid;">
<div v-if="useCusOrg" style="width: 180px;height:520px;overflow: scroll;border: 1px solid #EEE;">
<el-tree :data="patientRegister.customerOrgTreeAll" :props="customerOrg.treeprops" @node-click="handleNode" /> <el-tree :data="patientRegister.customerOrgTreeAll" :props="customerOrg.treeprops" @node-click="handleNode" />
</div> </div>

Loading…
Cancel
Save