123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="howupload">
- <custom-nav :title="pageTitle"></custom-nav>
- <view class="content">
- <image src="https://api.jiuweiyun.cn/public/uploads/icon/helpupload.png" mode=""></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pageTitle: '如何上传图片'
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .howupload {
- @include page();
- height: 100%;
- overflow: auto;
- image {
- width: 100%;
- height: 1441rpx;
- }
- }
- </style>
|