index.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="container">
  3. <view class="main-out-box">
  4. <view class="main-inner-box">
  5. <u-cell-group :border="false">
  6. <u-cell size="large" :border="false" icon="setting-fill" title="系统设置" isLink url=""></u-cell>
  7. <u-cell size="large" :border="false" icon="setting-fill" title="权限设置" isLink url=""></u-cell>
  8. <u-cell size="large" :border="false" icon="setting-fill" title="切换身份" isLink url=""></u-cell>
  9. </u-cell-group>
  10. </view>
  11. </view>
  12. <view class="policy-out-box">
  13. <view class="policy-inner-box">
  14. <u-cell-group :border="false">
  15. <u-cell size="large" :border="false" icon="setting-fill" title="隐私管理" isLink url=""></u-cell>
  16. </u-cell-group>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <style lang="scss" scoped>
  22. .container {
  23. min-height: 100vh;
  24. background-color: #efefef;
  25. .main-out-box {
  26. // margin-top: 20rpx;
  27. padding: 20rpx 16rpx;
  28. box-sizing: border-box;
  29. .main-inner-box {
  30. background-color: $uni-bg-color;
  31. border-radius: 20rpx;
  32. }
  33. }
  34. .policy-out-box {
  35. // margin-top: 20rpx;
  36. padding: 20rpx 16rpx;
  37. box-sizing: border-box;
  38. .policy-inner-box {
  39. background-color: $uni-bg-color;
  40. border-radius: 20rpx;
  41. }
  42. }
  43. }
  44. </style>