Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

his_patient_info.vue 804B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb :crumbs="crumbs"></bread-crumb>
  5. </div>
  6. <div class="app-container">
  7. <el-tabs v-model="activeName">
  8. <el-tab-pane label="人员信息查询" name="1">
  9. <hisPatient></hisPatient>
  10. </el-tab-pane>
  11. <el-tab-pane label="人员定点备案" name="2">
  12. </el-tab-pane>
  13. </el-tabs>
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  19. export default {
  20. name: 'specialDictionary',
  21. components: {
  22. BreadCrumb,
  23. },
  24. data() {
  25. return {
  26. crumbs: [
  27. { path: false, name: 'His工具' },
  28. { path: '/data/specialDictionary', name: '人员信息' }
  29. ],
  30. activeName: '1'
  31. }
  32. }
  33. }
  34. </script>