phb.vue 559 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="content" >
  3. <image :src="top_bg" mode="" class="top-bg"></image>
  4. <view class="">
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. top_bg: this.$store.state.baseURL + '/resource/icon/base/phb-bg.png',
  13. }
  14. },
  15. onLoad() {
  16. },
  17. onShow() {
  18. console.log(this.$store.state.baseURL)
  19. },
  20. onReachBottom() {
  21. },
  22. onReady() {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. .top-bg {
  30. width: 750rpx;
  31. height: 742rpx;
  32. }
  33. </style>