|
|
<template> <div style="display: flex;"> <table width="100%"> <tr> <td width="90%"> <PatientRegisterBase/> </td> <td rowspan="2" width="10%"> <ButtonList/> </td> </tr> <tr height="700px"> <td width="90%" style="valign:top;"> <el-tabs style="margin-left: 10px" v-model="tabChoosed"> <el-tab-pane label="综述建议" name="1"> <div> <SumSug/> <SumPREdit/> </div> </el-tab-pane> <el-tab-pane label="明细结果" name="2"> <CheckDetails/> </el-tab-pane> <el-tab-pane label="危急值" name="3"> </el-tab-pane> <el-tab-pane label="项目对比" name="4"> <SumItemsType/> </el-tab-pane> <el-tab-pane label="横向对比" name="5"> <SumItems/> </el-tab-pane> <el-tab-pane label="历次综述" name="6"> <SumHistory/> </el-tab-pane> </el-tabs> </td> </tr> </table> </div></template><script>import { mapState, mapActions } from "vuex";import { getapi, postapi, putapi, deletapi } from "@/api/api";import { tcdate } from "../../utlis/proFunc";
import PatientRegisterBase from "../../components/doctorCheck/PatientRegisterBase.vue";import ButtonList from "../../components/sumDoctorCheck/ButtonList.vue";import SumSug from "../../components/sumDoctorCheck/SumSug.vue";import SumPREdit from "../../components/sumDoctorCheck/SumPREdit.vue";import CheckDetails from "../../components/sumDoctorCheck/CheckDetails.vue";import SumItemsType from "../../components/sumDoctorCheck/SumItemsType.vue";import SumItems from "../../components/sumDoctorCheck/SumItems.vue";import SumHistory from "../../components/sumDoctorCheck/SumHistory.vue";export default { components: { PatientRegisterBase, ButtonList, SumSug, SumPREdit, CheckDetails, SumItemsType, SumItems, SumHistory, }, data() { return { tabChoosed: "1", }; },
created() {},
//挂载完成
mounted() { this.dictInit(); },
computed: { ...mapState(["dict", "patientRegister", "customerOrg"]), },
methods: { ...mapActions(["getCustomerOrgGroup"]), //数据初始化
dictInit() { //性别
getapi("/api/app/sex").then((res) => { if (res.code == 1) { this.dict.sex = res.data; } });
//体检中心
getapi("/api/app/organization-units/organization-unit-by-is-peis").then( (res) => { if (res.code == 1) { this.dict.organization = res.data; } } );
//体检单位
getapi("/api/app/customer-org/in-filter").then((res) => { if (res.code == 1) { this.dict.customerOrg = res.data.items; } });
//体检类别
getapi("/api/app/medical-type/in-filter").then((res) => { if (res.code == 1) { this.dict.medicalType = res.data.items; } });
//人员类别
getapi("/api/app/personnel-type/in-filter").then((res) => { if (res.code == 1) { this.dict.personnelType = res.data.items; } });
//婚姻状况
getapi("/api/app/marital-statuses").then((res) => { if (res.code == 1) { this.dict.maritalStatus = res.data.items; } });
//性激素期
getapi("/api/app/sex-hormone-term/in-filter").then((res) => { if (res.code == 1) { this.dict.sexHormoneTerm = res.data.items; } });
//民族
getapi("/api/app/nation/in-filter").then((res) => { if (res.code == 1) { this.dict.nation = res.data.items; } });
//籍惯 ,出生地
getapi("/api/app/birth-place/in-filter").then((res) => { if (res.code == 1) { this.dict.birthPlace = res.data.items; } });
//套餐
getapi("/api/app/medical-package/in-filter").then((res) => { if (res.code == 1) { this.dict.medicalPackage = res.data.items; } });
//分组,所有分组,不限单位,不限次数
getapi("/api/app/customer-org-group").then((res) => { if (res.code == 1) { this.dict.customerOrgGroupAll = res.data.items; } });
//支付方式
getapi("/api/app/pay-mode").then((res) => { if (res.code == 1) { this.dict.payMode = res.data; } });
//体检类别 树结构
getapi("/api/app/item-type/by-code-all").then((res) => { if (res.code == 1) { this.dict.itemTypeTree = res.data; tcdate(this.dict.itemTypeTree); } });
getapi("/api/app/asbitem/in-filter?Filter").then((res) => { if (res.code == 1) { this.dict.asbItemAll = res.data.items; } });
console.log("dict", this.dict); }, },
//监听事件()
watch: { //1级单位值改变,分组改变
"patientRegister.query.CustomerOrgParentId"(newVal, oldVal) { console.log( "watch patientRegister.query.CustomerOrgParentId newVal:", newVal, " oldVal:", oldVal ); if (newVal != oldVal && newVal !== this.dict.personOrgId) { this.getCustomerOrgGroup(newVal); } }, },};</script><style scoped>.box { display: flex;}</style>
|