helpDescription.vue 468 B

12345678910111213141516171819202122232425
  1. <!-- 帮助说明 -->
  2. <template>
  3. <view class="content flex-center">
  4. <image class="img" src="@/static/images/help/banner@2x.png" mode="widthFix"></image>
  5. <image class="img" src="@/static/images/help/tu1@2x.png" mode="widthFix"></image>
  6. <image class="img" src="@/static/images/help/zy.png" mode="widthFix"></image>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. };
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. .img{
  19. width: 100%;
  20. }
  21. </style>