helpDescription.vue 619 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!-- 帮助说明 -->
  2. <template>
  3. <view class="content">
  4. <image src="@/static/images/mine/banner@2x.png" mode="widthFix" class="banner"></image>
  5. <view class="content1">
  6. <image src="@/static/images/mine/content.png" mode="widthFix" class="content-img"></image>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. };
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .content {
  20. background: white;
  21. }
  22. .banner {
  23. width: 100%;
  24. }
  25. .content1 {
  26. margin: 20rpx;
  27. padding: 20rpx;
  28. background: #F4F8FF;
  29. border-radius: 20rpx;
  30. display: flex;
  31. justify-content: center;
  32. }
  33. </style>