index.vue 1.7KB

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