index.vue 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <div class="page_SCRM">
  3. <div class="SCRMTitle">
  4. <i class="iconfont icon-zuojiantou jiantou"></i>
  5. <span class="titleName">SCRM</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="文章管理" is-link></van-cell>
  18. <van-cell center title="营销工具" is-link></van-cell>
  19. <van-cell center title="微网站" is-link></van-cell>
  20. <van-cell center title="系统设置" is-link></van-cell>
  21. </div>
  22. </div>
  23. </template>
  24. <style lang="scss" scoped>
  25. .page_SCRM {
  26. height: 100%;
  27. overflow-y: auto;
  28. background: #fafafa;
  29. .SCRMTitle {
  30. background: #fff;
  31. padding: 0 1.125rem;
  32. height: 3.125rem;
  33. display: flex;
  34. align-items: center;
  35. }
  36. .jiantou {
  37. font-size: 1.5rem;
  38. font-weight: 600;
  39. margin-right: 8rem;
  40. }
  41. .titleName {
  42. font-size: 1.125rem;
  43. font-weight: 600;
  44. }
  45. .allTitle {
  46. margin: 1rem 0;
  47. .van-cell__title {
  48. font-weight: bold;
  49. font-size: 1rem;
  50. color: #313234;
  51. }
  52. }
  53. .allTitle1 {
  54. .van-cell__title {
  55. font-weight: bold;
  56. font-size: 1rem;
  57. color: #313234;
  58. }
  59. }
  60. .allBox {
  61. margin-bottom: 1rem;
  62. .van-cell__title {
  63. font-size: 1rem;
  64. color: #313234;
  65. }
  66. }
  67. }
  68. </style>