introduce.vue 476 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. <back></back>
  4. <u-image style="width: 100vw" src="https://guosen-bucket-ldt.obs.cn-south-1.myhuaweicloud.com:443/3fedb75f548b492baca7a0526c595f21-intro.png" mode="widthFix"></u-image>
  5. </view>
  6. </template>
  7. <script>
  8. import back from "@/components/back.vue"
  9. export default {
  10. components:{
  11. back
  12. },
  13. data() {
  14. return {
  15. show:false
  16. }
  17. },
  18. onLoad(options) {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. </style>