activity_ends.vue 746 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view>
  3. <view class="change-container">
  4. <view class="relative width100 height100">
  5. <image class="width100 height100" :src="resource.ex_end_bg" />
  6. </view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. import resource from '@/utils/resource'
  12. export default {
  13. data() {
  14. return {
  15. resource,
  16. }
  17. },
  18. methods: {}
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .change-container {
  23. position: fixed;
  24. bottom: 48rpx;
  25. left: 30rpx;
  26. width: 694rpx;
  27. height: 732rpx;
  28. .contain {
  29. position: absolute;
  30. bottom: 248rpx;
  31. width: 100%;
  32. height: 100rpx;
  33. text-align: center;
  34. color: #fdcd53;
  35. }
  36. }
  37. </style>