index.vue 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <div class="page_inventoryManagement">
  3. <div class="inventoryManagementTitle">
  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. <van-cell center title="其他入库单">
  26. <van-switch v-model="checked" slot="right-icon" size="24" />
  27. </van-cell>
  28. <van-cell center title="其他退货单">
  29. <van-switch v-model="checked" slot="right-icon" size="24" />
  30. </van-cell>
  31. <van-cell center title="其他出库单">
  32. <van-switch v-model="checked" slot="right-icon" size="24" />
  33. </van-cell>
  34. <van-cell center title="库存查询">
  35. <van-switch v-model="checked" slot="right-icon" size="24" />
  36. </van-cell>
  37. <van-cell center title="出入库明细">
  38. <van-switch v-model="checked" slot="right-icon" size="24" />
  39. </van-cell>
  40. <van-cell center title="库存配置">
  41. <van-switch v-model="checked" slot="right-icon" size="24" />
  42. </van-cell>
  43. </div>
  44. </div>
  45. </template>
  46. <style lang="scss" scoped>
  47. .page_inventoryManagement {
  48. height: 100%;
  49. overflow-y: auto;
  50. background: #fafafa;
  51. .inventoryManagementTitle {
  52. background: #fff;
  53. padding: 0 1.125rem;
  54. height: 3.125rem;
  55. display: flex;
  56. align-items: center;
  57. }
  58. .jiantou {
  59. font-size: 1.5rem;
  60. font-weight: 600;
  61. margin-right: 7rem;
  62. }
  63. .titleName {
  64. font-size: 1.125rem;
  65. font-weight: 600;
  66. }
  67. .allTitle {
  68. margin: 1rem 0;
  69. .van-cell__title {
  70. font-weight: bold;
  71. font-size: 1rem;
  72. color: #313234;
  73. }
  74. }
  75. .allTitle1 {
  76. .van-cell__title {
  77. font-weight: bold;
  78. font-size: 1rem;
  79. color: #313234;
  80. }
  81. }
  82. .allBox {
  83. margin-bottom: 1rem;
  84. .van-cell__title {
  85. font-size: 1rem;
  86. color: #313234;
  87. }
  88. }
  89. }
  90. </style>