123456789101112131415161718192021222324 |
- <template>
- <ax-body blank="0" hideIndicatorArea>
- <view class="page-background"><image src="@/static/img/my-bg.svg" mode="widthFix"></image></view>
- <view class="image-box">
- <image class="image-bg" :src="image_bgs" mode="widthFix"></image>
- <image class="image-bg" style="margin-top: -20rpx;" :src="image_bg" mode="widthFix"></image>
- </view>
- </ax-body>
- </template>
- <script>
- export default {
- data(){
- return {
- image_bgs:'https://hyxhsh.oss-cn-chengdu.aliyuncs.com/63b7c68b71a69169d1b33f92/store/bdb/user/avatar/aDqt1XamIpNIbb02da799fbd9ab857ecb59304bdeb45.jpg/1.jpg',
- image_bg:'https://hyxhsh.oss-cn-chengdu.aliyuncs.com/63b7c68b71a69169d1b33f92/store/bdb/user/avatar/bMb4w0IRfi5Md70c3a069a1db244bfea4f227e60f837.jpg/1.jpg'
- }
- }
- }
- </script>
- <style scoped>
- @import url('banner-page');
- </style>
|