banner-page.vue 823 B

123456789101112131415161718192021222324
  1. <template>
  2. <ax-body blank="0" hideIndicatorArea>
  3. <view class="page-background"><image src="@/static/img/my-bg.svg" mode="widthFix"></image></view>
  4. <view class="image-box">
  5. <image class="image-bg" :src="image_bgs" mode="widthFix"></image>
  6. <image class="image-bg" style="margin-top: -20rpx;" :src="image_bg" mode="widthFix"></image>
  7. </view>
  8. </ax-body>
  9. </template>
  10. <script>
  11. export default {
  12. data(){
  13. return {
  14. image_bgs:'https://hyxhsh.oss-cn-chengdu.aliyuncs.com/63b7c68b71a69169d1b33f92/store/bdb/user/avatar/aDqt1XamIpNIbb02da799fbd9ab857ecb59304bdeb45.jpg/1.jpg',
  15. image_bg:'https://hyxhsh.oss-cn-chengdu.aliyuncs.com/63b7c68b71a69169d1b33f92/store/bdb/user/avatar/bMb4w0IRfi5Md70c3a069a1db244bfea4f227e60f837.jpg/1.jpg'
  16. }
  17. }
  18. }
  19. </script>
  20. <style scoped>
  21. @import url('banner-page');
  22. </style>