index.vue 827 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <template>
  2. <view class="banner-ad">
  3. <view class="device-detail__header">
  4. <u-icon
  5. size="36"
  6. class="arrow-left"
  7. name="arrow-left"
  8. @click="handleBack"
  9. ></u-icon>
  10. </view>
  11. <image :src="bannerURL" mode="" class="banner-image"></image>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. bannerURL: 'https://s3.hnyfwlw.com/webstaticimg/bigdata_app/newImg/home/shuifei.jpg',
  19. }
  20. },
  21. methods: {
  22. handleBack(){
  23. uni.navigateBack({
  24. delta: 1,
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style scoped lang="scss">
  31. .banner-ad {
  32. height: 320vh;
  33. width: 100%;
  34. .device-detail__header{
  35. position: absolute;
  36. top: 32rpx;
  37. left: 32rpx;
  38. z-index: 999;
  39. color:#fff;
  40. }
  41. .banner-image{
  42. width: 100%;
  43. height: 100%;
  44. }
  45. }
  46. </style>