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

specialDictionary.vue 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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" @tab-click="handleClick">
  8. <el-tab-pane label="药品" name="1">
  9. <drugs></drugs>
  10. </el-tab-pane>
  11. <el-tab-pane label="耗材" name="2">
  12. <consumables></consumables>
  13. </el-tab-pane>
  14. <!--<el-tab-pane label="项目" name="3">-->
  15. <!--<project></project>-->
  16. <!--</el-tab-pane>-->
  17. <!--<el-tab-pane label="检验检查项目" name="4">-->
  18. <!--<inspection></inspection>-->
  19. <!--</el-tab-pane>-->
  20. <el-tab-pane label="生产厂商" name="5">
  21. <!--<manufacturer></manufacturer>-->
  22. <manufacturer></manufacturer>
  23. </el-tab-pane>
  24. <el-tab-pane label="供应商" name="6">
  25. <!--<supplier></supplier>-->
  26. <dealer></dealer>
  27. </el-tab-pane>
  28. <el-tab-pane label="配置项字典" name="7">
  29. <configure></configure>
  30. </el-tab-pane>
  31. </el-tabs>
  32. </div>
  33. </div>
  34. </template>
  35. <script>
  36. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  37. import drugs from './components/drugs'
  38. import consumables from './components/consumables'
  39. import project from './components/project'
  40. import inspection from './components/inspection'
  41. import manufacturer from '../stock/config/manufacturer'
  42. import configure from './components/configure'
  43. import Dealer from '../stock/config/dealer'
  44. export default {
  45. name: 'specialDictionary',
  46. components: {
  47. Dealer,
  48. BreadCrumb,
  49. drugs,
  50. consumables,
  51. project,
  52. inspection,
  53. manufacturer,
  54. configure
  55. },
  56. data() {
  57. return {
  58. crumbs: [
  59. { path: false, name: '管理中心' },
  60. { path: '/data/specialDictionary', name: '专项字典' }
  61. ],
  62. activeName: '1'
  63. }
  64. }
  65. }
  66. </script>