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

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <template>
  2. <div class="box">
  3. <div>
  4. <el-card style="width: 98%">
  5. <div style="display: flex">
  6. <!-- 单位树组件 -->
  7. <div style="width: 15%; border: 1px solid">
  8. <CustomerOrgTreeAll />
  9. </div>
  10. <div style="width: 85%">
  11. <!-- 单位详情 录入与编辑 -->
  12. <CustomerOrgEdit />
  13. <!-- 体检次数 联系人 -->
  14. <el-tabs style="margin-left: 10px">
  15. <!-- 体检次数 -->
  16. <el-tab-pane label="组合项目" name="first">
  17. <PatientRegisterAsbItem />
  18. </el-tab-pane>
  19. <!-- 联系人 -->
  20. <el-tab-pane label="基本信息" name="second">
  21. </el-tab-pane>
  22. </el-tabs>
  23. </div>
  24. </div>
  25. </el-card>
  26. </div>
  27. </div>
  28. </template>
  29. <script>
  30. import CustomerOrgTreeAll from "../../components/patientRegister/customerOrgTreeAll.vue";
  31. import CustomerOrgEdit from "../../components/patientRegisterSign/customerOrgEdit.vue";
  32. import PatientRegisterAsbItem from "../../components/patientRegister/patientRegisterAsbItem.vue";
  33. export default {
  34. components: {
  35. CustomerOrgTreeAll,
  36. CustomerOrgEdit,
  37. PatientRegisterAsbItem,
  38. },
  39. data() {
  40. return {};
  41. },
  42. created() {},
  43. //挂载完成
  44. mounted() {},
  45. methods: {},
  46. };
  47. </script>
  48. <style scoped>
  49. .box {
  50. display: flex;
  51. }
  52. </style>