about.vue 337 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="about">
  3. <image src="https://rl-zk-image.oss-cn-hangzhou.aliyuncs.com/image/about.png"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style lang="scss" scoped>
  17. .about image{
  18. width: 750rpx;
  19. height: 1938rpx;
  20. }
  21. </style>