123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="empty-content">
- <image class="empty-content-image" :src="staticUrl+'icon_order_empty@2x.png'" mode="aspectFit"></image>
- <text class="error-text">您还没有任何的订单哟~</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- staticUrl:this.global.staticUrl,
- }
- },
- created(){
-
- },
- computed: {
-
- },
- }
- </script>
- <style lang="scss">
- .empty-content {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- margin: auto;
- background: $bg-color;
- z-index: 999;
- &-image {
- width: 386rpx;
- height: 286rpx;
- }
- .error-text{
- font-size: $font-size-28;
- color: $text-color;
- line-height: 88rpx;
- }
- }
- </style>
|