1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view>
- <view class="change-container">
- <view class="relative width100 height100">
- <image class="width100 height100" :src="resource.ex_end_bg" />
- </view>
- </view>
- </view>
- </template>
- <script>
- import resource from '@/utils/resource'
- export default {
- data() {
- return {
- resource,
- }
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .change-container {
- position: fixed;
- bottom: 48rpx;
- left: 30rpx;
- width: 694rpx;
- height: 732rpx;
- .contain {
- position: absolute;
- bottom: 248rpx;
- width: 100%;
- height: 100rpx;
- text-align: center;
- color: #fdcd53;
- }
- }
- </style>
|