index.vue 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <div class="page_dialysisManagement">
  3. <div class="dialysisManagementTitle">
  4. <i class="iconfont icon-zuojiantou jiantou"></i>
  5. <span class="titleName">透析管理</span>
  6. </div>
  7. <div class="allTitle">
  8. <van-cell center title="全部权限">
  9. <van-switch v-model="checked" slot="right-icon" size="24" />
  10. </van-cell>
  11. </div>
  12. <div class="allTitle1">
  13. <van-cell center title="功能权限配置"></van-cell>
  14. </div>
  15. <div class="allBox">
  16. <van-cell center title="透析记录" is-link></van-cell>
  17. <van-cell center title="透析监测">
  18. <van-switch v-model="checked" slot="right-icon" size="24" />
  19. </van-cell>
  20. <van-cell center title="透析医嘱">
  21. <van-switch v-model="checked" slot="right-icon" size="24" />
  22. </van-cell>
  23. <van-cell center title="临时排班">
  24. <van-switch v-model="checked" slot="right-icon" size="24" />
  25. </van-cell>
  26. <van-cell center title="数据看板">
  27. <van-switch v-model="checked" slot="right-icon" size="24" />
  28. </van-cell>
  29. </div>
  30. </div>
  31. </template>
  32. <style lang="scss" scoped>
  33. .page_dialysisManagement {
  34. height: 100%;
  35. overflow-y: auto;
  36. background: #fafafa;
  37. .dialysisManagementTitle {
  38. background: #fff;
  39. padding: 0 1.125rem;
  40. height: 3.125rem;
  41. display: flex;
  42. align-items: center;
  43. }
  44. .jiantou {
  45. font-size: 1.5rem;
  46. font-weight: 600;
  47. margin-right: 7rem;
  48. }
  49. .titleName {
  50. font-size: 1.125rem;
  51. font-weight: 600;
  52. }
  53. .allTitle {
  54. margin: 1rem 0;
  55. .van-cell__title {
  56. font-weight: bold;
  57. font-size: 1rem;
  58. color: #313234;
  59. }
  60. }
  61. .allTitle1 {
  62. .van-cell__title {
  63. font-weight: bold;
  64. font-size: 1rem;
  65. color: #313234;
  66. }
  67. }
  68. .allBox {
  69. margin-bottom: 1rem;
  70. .van-cell__title {
  71. font-size: 1rem;
  72. color: #313234;
  73. }
  74. }
  75. }
  76. </style>