Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

permission-management.vue 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="content-wrapper">
  3. <view class="item">
  4. <view class="title">
  5. 1、点击右上角“三个点”按钮。
  6. </view>
  7. <view class="">
  8. <image :src="`${$imgUrl}personal-center/permission1.png`" style='height: 136rpx;width: 100%;'>
  9. </image>
  10. </view>
  11. </view>
  12. <view class="item">
  13. <view class="title">
  14. 2、点击“设置”,进行权限管理。
  15. </view>
  16. <view class="">
  17. <image :src="`${$imgUrl}personal-center/permission2.png`" style='height: 237rpx;width: 100%;'>
  18. </image>
  19. </view>
  20. </view>
  21. <view class="detail-content">
  22. 如您进行了权限修改,请点击“重新进入小程序”后再生效。
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. </script>
  28. <style lang="scss" scoped>
  29. .content-wrapper {
  30. background: #EEF7F7;
  31. .item {
  32. margin-top: 30rpx;
  33. padding: 30rpx;
  34. background-color: white;
  35. .title {
  36. font-size: 30rpx;
  37. font-family: Microsoft YaHei;
  38. font-weight: 400;
  39. color: #333333;
  40. line-height: 60rpx;
  41. margin-bottom: 30rpx;
  42. }
  43. }
  44. .detail-content {
  45. margin-top: 60rpx;
  46. padding: 30rpx;
  47. font-size: 30rpx;
  48. font-family: Microsoft YaHei;
  49. font-weight: 400;
  50. color: #333333;
  51. line-height: 60rpx;
  52. }
  53. }
  54. </style>