12345678910111213141516171819202122 |
- <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_bg" mode="widthFix"></image>
- </view>
- </ax-body>
- </template>
- <script>
- export default {
- data(){
- return {
- 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>
|