pengjun 1 year ago
parent
commit
464f01f2e5
  1. 2
      src/components/doctorCheck/PatientRegisterList.vue
  2. 32
      src/components/follow/FollowList.vue
  3. 2
      src/components/follow/follow.vue
  4. 2
      src/views/charge/charge.vue
  5. 2
      src/views/customerOrg/patientLis.vue
  6. 3
      src/views/customerOrg/patientRegister.vue
  7. 2
      src/views/customerOrg/patientRegisterRecover.vue
  8. 2
      src/views/customerOrg/patientRegisterRefuse.vue
  9. 2
      src/views/customerOrg/patientRegisterSign.vue
  10. 27
      src/views/doctorCheck/doctorCheck.vue

2
src/components/doctorCheck/PatientRegisterList.vue

@ -316,7 +316,7 @@ export default {
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

32
src/components/follow/FollowList.vue

@ -92,34 +92,6 @@
</div>
</template>
</el-table-column>
<!--
"sexHormoneTermId": "00000000-0000-0000-0000-000000000000",
"interposeMeasure": null,
"medicalConclusionId": "00000000-0000-0000-0000-000000000000",
"reportPrintTimes": 0,
"isMedicalStart": "N",
"medicalStartDate": "6/28/2023",
"isRecoverGuide": "N",
"summaryDate": "",
"summaryDoctor": null,
"isAudit": "N",
"auditDoctor": null,
"auditDate": "",
"isNameHide": "N",
"isPhoneFollow": "N",
"thirdInfo": null,
"guidePrintTimes": null,
"remark": null,
"medicalCenterId": "00000000-0000-0000-0000-000000000000",
"customerOrgRegisterId": "00000000-0000-0000-0000-000000000000",
"lastModifierName": "",
"lastModificationTime": null,
"lastModifierId": null,
"creatorId": null,
"id": "3a0c196d-a6d0-37fe-5c32-4806bdc4530f"
-->
</el-table>
<div style="display: flex;justify-content:space-between;">
<div></div>
@ -135,10 +107,10 @@
<el-tab-pane label="危急值" name="1">
</el-tab-pane>
<el-tab-pane label="随访计划" name="2">
<el-tab-pane label="电话随访" name="2">
<FollowPlan />
</el-tab-pane>
<el-tab-pane label="随访记录" name="3">
<el-tab-pane label="短信随访" name="3">
<FollowPlan />
</el-tab-pane>
</el-tabs>

2
src/components/follow/follow.vue

@ -138,7 +138,7 @@ export default {
});
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

2
src/views/charge/charge.vue

@ -1169,7 +1169,7 @@ export default {
});
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

2
src/views/customerOrg/patientLis.vue

@ -146,7 +146,7 @@ export default {
});
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

3
src/views/customerOrg/patientRegister.vue

@ -149,7 +149,8 @@ export default {
});
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
// getapi("/api/app/customerorggroup/getlistinfilter")
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

2
src/views/customerOrg/patientRegisterRecover.vue

@ -160,7 +160,7 @@ export default {
});
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

2
src/views/customerOrg/patientRegisterRefuse.vue

@ -147,7 +147,7 @@ export default {
});
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

2
src/views/customerOrg/patientRegisterSign.vue

@ -154,7 +154,7 @@ export default {
});
//
getapi("/api/app/customerorggroup/getlistinfilter").then((res) => {
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => {
if (res.code > -1) {
this.dict.customerOrgGroupAll = res.data;
}

27
src/views/doctorCheck/doctorCheck.vue

@ -16,38 +16,40 @@
<div style="display: flex;">
<div :style="`width:${window.pageWidth - 120}px;`">
<div style="display: flex;justify-content:space-between;z-index:-1;">
<div>
<div>
<PatientRegisterBase />
</div>
<div style="width: 100px;"></div>
</div>
<div style="display: flex;">
<el-tabs v-model="activeName" tab-position="bottom" style="width: 200px;">
<el-tab-pane label="组合项目" name="asbitem">
<RegisterCheckList />
<el-tab-pane label="组合项目" name="asbitem">
<RegisterCheckList />
</el-tab-pane>
<el-tab-pane :label="LocalConfig.doctorCheck.isQueue == 'Y' ? '叫号' : ''" name="call"
:disabled="LocalConfig.doctorCheck.isQueue != 'Y'">
<QueueCheckList />
:disabled="LocalConfig.doctorCheck.isQueue != 'Y'">
<QueueCheckList />
</el-tab-pane>
</el-tabs>
<div :style="'width:' + (window.pageWidth - 200 - 110 - 15) + 'px;'">
<div :style="'margin-left: 2px;width:' + (window.pageWidth - 200 - 110 - 15 - 2) + 'px;'">
<div :style="'margin-left: 2px;width:' + (window.pageWidth - 200 - 110 - 15 - 2) + 'px;'">
<CheckItemList :isCheckPicture="isCheckPicture" :doctor_check_check_charge="doctor_check_check_charge"
:registerCheckId="dataTransOpts.tableS.register_check.id" />
:registerCheckId="dataTransOpts.tableS.register_check.id" />
</div>
<div v-if="isCheckPicture" class="demo-image__preview"
:style="'margin-top: 2px;margin-left: 2px;height:110px;width:' + (window.pageWidth - 200 - 110 - 45 - 2) + 'px;'">
<CheckPicture :doctorBtnDisabled="doctorBtnDisabled" />
:style="'margin-top: 2px;margin-left: 2px;height:110px;width:' + (window.pageWidth - 200 - 110 - 45 - 2) + 'px;'">
<CheckPicture :doctorBtnDisabled="doctorBtnDisabled" />
</div>
<div :style="'margin-top: 2px;margin-left: 2px;width:' + (window.pageWidth - 200 - 110 - 15 - 2) + 'px;'">
<CheckSumSug :registerCheckId="dataTransOpts.tableS.register_check.id" :isCheckPicture="isCheckPicture"
:optGrant="optGrant" :addSummary="addSummary" :btnMakeDiagnosis="btnMakeDiagnosis" :save="save"
:audit="audit" :unAudit="unAudit" :btnLineUp="btnLineUp" :doctorBtnDisabled="doctorBtnDisabled" />
</div>
<div :style="'margin-top: 2px;width:' + (window.pageWidth - 200 - 110 - 15 - 2) + 'px;'">
<RegisterCheckEdit :registerCheckId="dataTransOpts.tableS.register_check.id" />
<div :style="'margin-top: 2px;width:' + (window.pageWidth - 200 - 110 - 15 - 2) + 'px;'">
<RegisterCheckEdit :registerCheckId="dataTransOpts.tableS.register_check.id" />
</div>
</div>
</div>
@ -62,7 +64,7 @@
<div>
<!-- 危急值 -->
<el-dialog title="危急值" :visible.sync="dialogWin.FollowCriticalCheck" width="800px"
:show-close="false" :close-on-click-modal="false" :append-to-body="true">
:show-close="false" :close-on-click-modal="false" :append-to-body="true">
<FollowCriticalCheck />
</el-dialog>
</div>
@ -301,6 +303,7 @@ export default {
// this.patientRegister.customerOrgTreeAll = res.data;
// tcdate(this.patientRegister.customerOrgTreeAll)
// });
postapi('/api/app/CustomerOrg/GetCustomerOrgByParentId', { parentId: null })
.then(res => {
if (res.code > -1) {

Loading…
Cancel
Save