123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <template>
- <view class="page-box">
- <view class="centre">
- <image v-if="globalImages" :src="globalImages + 'imgs/static/image/empty.png'" mode=""></image>
- <view class="tips">
- {{content}}
- </view>
- </view>
- </view>
- </template>
- <script>
- import { waitForGlobalImages } from '@/utils/globalImageLoader'
- export default {
- props: {
- content: {
- type: String,
- default: '暂无内容'
- }
- },
- data() {
- return {
- globalImages: '',
- }
- },
- onLoad() {
- waitForGlobalImages().then((path) => {
- console.log('✅ 全局图片路径:', path)
- this.globalImages = path
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .page-box {
- // position: relative;
- // left: 0;
- height: 50vh;
- }
- .centre {
- position: absolute;
- left: 0;
- top:0;
- right: 0;
- bottom: 0;
- margin: auto;
- height: 400rpx;
- text-align: center;
- // padding: 200rpx auto;
- font-size: 32rpx;
- image {
- width: 387rpx;
- height: 341rpx;
- // margin-bottom: 20rpx;
- margin: 0 auto 20rpx;
- // border: 1px dotted #000000;
- }
- .tips {
- font-size: 32rpx;
- color: #2F3044;
- margin-top: 20rpx;
- font-weight: 700;
- }
- .btn {
- margin: 80rpx auto;
- width: 600rpx;
- border-radius: 32rpx;
- line-height: 90rpx;
- color: #ffffff;
- font-size: 34rpx;
- background: #5074FF;
- }
- }
- </style>
|