123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
-
- <view class="content-wrapper">
- <view class="item">
- <view class="title">
- 1、点击右上角“三个点”按钮。
- </view>
- <view class="">
- <image :src="`${$imgUrl}personal-center/permission1.png`" style='height: 136rpx;width: 100%;'>
- </image>
- </view>
- </view>
- <view class="item">
- <view class="title">
- 2、点击“设置”,进行权限管理。
- </view>
- <view class="">
- <image :src="`${$imgUrl}personal-center/permission2.png`" style='height: 237rpx;width: 100%;'>
- </image>
- </view>
- </view>
- <view class="detail-content">
- 如您进行了权限修改,请点击“重新进入小程序”后再生效。
- </view>
- </view>
- </template>
-
- <script>
- </script>
-
- <style lang="scss" scoped>
- .content-wrapper {
- background: #EEF7F7;
-
- .item {
- margin-top: 30rpx;
- padding: 30rpx;
- background-color: white;
-
- .title {
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 60rpx;
- margin-bottom: 30rpx;
- }
- }
-
- .detail-content {
- margin-top: 60rpx;
- padding: 30rpx;
- font-size: 30rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 60rpx;
- }
- }
- </style>
|