banner-page.vue 564 B

12345678910111213141516171819202122
  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_bg" mode="widthFix"></image>
  6. </view>
  7. </ax-body>
  8. </template>
  9. <script>
  10. export default {
  11. data(){
  12. return {
  13. image_bg:'https://hyxhsh.oss-cn-chengdu.aliyuncs.com/63b7c68b71a69169d1b33f92/store/bdb/user/avatar/bMb4w0IRfi5Md70c3a069a1db244bfea4f227e60f837.jpg/1.jpg'
  14. }
  15. }
  16. }
  17. </script>
  18. <style scoped>
  19. @import url('banner-page');
  20. </style>