| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="content" >
- <image :src="top_bg" mode="" class="top-bg"></image>
- <view class="">
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- top_bg: this.$store.state.baseURL + '/resource/icon/base/phb-bg.png',
- }
- },
- onLoad() {
- },
- onShow() {
- console.log(this.$store.state.baseURL)
- },
- onReachBottom() {
- },
- onReady() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .top-bg {
- width: 750rpx;
- height: 742rpx;
- }
- </style>
|