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

calling.vue 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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="first">
  9. <before-dialysis-calling></before-dialysis-calling>
  10. </el-tab-pane>
  11. <el-tab-pane label="上机叫号" name="second">
  12. <computer-calling></computer-calling>
  13. </el-tab-pane>
  14. <el-tab-pane label="诊台配置" name="third">
  15. <treatment-configure></treatment-configure>
  16. </el-tab-pane>
  17. <el-tab-pane label="叫号配置" name="fourth">
  18. <calling-configure></calling-configure>
  19. </el-tab-pane>
  20. </el-tabs>
  21. </div>
  22. </div>
  23. </template>
  24. <script>
  25. import BreadCrumb from "../components/bread-crumb";
  26. import beforeDialysisCalling from './components/beforeDialysisCalling'
  27. import computerCalling from './components/computerCalling'
  28. import treatmentConfigure from "./components/treatmentConfigure"
  29. import callingConfigure from './components/callingConfigure'
  30. export default {
  31. components:{
  32. BreadCrumb,
  33. beforeDialysisCalling,
  34. computerCalling,
  35. treatmentConfigure,
  36. callingConfigure
  37. },
  38. data(){
  39. return{
  40. crumbs: [
  41. { path: false, name: "透析管理" },
  42. { path: "dialysis/board", name: "透析叫号" }
  43. ],
  44. activeName:'first'
  45. }
  46. },
  47. methods:{
  48. }
  49. }
  50. </script>