howupload.vue 500 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="howupload">
  3. <custom-nav :title="pageTitle"></custom-nav>
  4. <view class="content">
  5. <image src="https://api.jiuweiyun.cn/public/uploads/icon/helpupload.png" mode=""></image>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. pageTitle: '如何上传图片'
  14. };
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .howupload {
  20. @include page();
  21. height: 100%;
  22. overflow: auto;
  23. image {
  24. width: 100%;
  25. height: 1441rpx;
  26. }
  27. }
  28. </style>