You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
<template>
|
|
<div class="box">
|
|
<div>
|
|
<el-card style="width: 98%">
|
|
<div style="display: flex">
|
|
<!-- 单位树组件 -->
|
|
<div style="width: 15%; border: 1px solid">
|
|
<CustomerOrgTreeAll />
|
|
</div>
|
|
<div style="width: 85%">
|
|
<!-- 单位详情 录入与编辑 -->
|
|
<CustomerOrgEdit />
|
|
<!-- 体检次数 联系人 -->
|
|
<el-tabs style="margin-left: 10px">
|
|
<!-- 体检次数 -->
|
|
<el-tab-pane label="组合项目" name="first">
|
|
<PatientRegisterAsbItem />
|
|
</el-tab-pane>
|
|
<!-- 联系人 -->
|
|
<el-tab-pane label="基本信息" name="second">
|
|
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import CustomerOrgTreeAll from "../../components/patientRegister/customerOrgTreeAll.vue";
|
|
import CustomerOrgEdit from "../../components/patientRegisterSign/customerOrgEdit.vue";
|
|
import PatientRegisterAsbItem from "../../components/patientRegister/patientRegisterAsbItem.vue";
|
|
|
|
export default {
|
|
components: {
|
|
CustomerOrgTreeAll,
|
|
CustomerOrgEdit,
|
|
PatientRegisterAsbItem,
|
|
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
created() {},
|
|
|
|
//挂载完成
|
|
mounted() {},
|
|
|
|
methods: {},
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
.box {
|
|
display: flex;
|
|
}
|
|
</style>
|