index.vue 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <template>
  2. <div class="page_microWebsite">
  3. <div class="microWebsiteTitle">
  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="微网站">
  17. <van-switch v-model="checked" slot="right-icon" size="24" />
  18. </van-cell>
  19. <van-cell center title="医护管理">
  20. <van-switch v-model="checked" slot="right-icon" size="24" />
  21. </van-cell>
  22. </div>
  23. </div>
  24. </template>
  25. <style lang="scss" scoped>
  26. .page_microWebsite {
  27. height: 100%;
  28. overflow-y: auto;
  29. background: #fafafa;
  30. .microWebsiteTitle {
  31. background: #fff;
  32. padding: 0 1.125rem;
  33. height: 3.125rem;
  34. display: flex;
  35. align-items: center;
  36. }
  37. .jiantou {
  38. font-size: 1.5rem;
  39. font-weight: 600;
  40. margin-right: 7.5rem;
  41. }
  42. .titleName {
  43. font-size: 1.125rem;
  44. font-weight: 600;
  45. }
  46. .allTitle {
  47. margin: 1rem 0;
  48. .van-cell__title {
  49. font-weight: bold;
  50. font-size: 1rem;
  51. color: #313234;
  52. }
  53. }
  54. .allTitle1 {
  55. .van-cell__title {
  56. font-weight: bold;
  57. font-size: 1rem;
  58. color: #313234;
  59. }
  60. }
  61. .allBox {
  62. margin-bottom: 1rem;
  63. .van-cell__title {
  64. font-size: 1rem;
  65. color: #313234;
  66. }
  67. }
  68. }
  69. </style>