123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="howshare">
- <custom-nav :title="pageTitle"></custom-nav>
- <view class="content">
- <image src="https://api.jiuweiyun.cn/public/uploads/icon/helpshare.png" mode=""></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pageTitle: '如何分享',
- scrollViewHeight: 0
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .howshare {
- @include page();
- .content {
- height: 100%;
- overflow: auto;
- image {
- width: 100%;
- height: 1740rpx;
- }
- }
- }
- </style>
|