| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="hl88-lr-empty">
- <view class="hl88-lr-empty-tag">
- <text class="hl88-lr-empty-text">{{text}}</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'LiveRoomEmpty',
- props: {
- text: {
- type: String,
- default: ''
- }
- }
- }
- </script>
- <style>
- .hl88-lr-empty{
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- align-items: center;
- justify-content: center;
- }
- .hl88-lr-empty-tag{
- background-color: rgba(255,100,0,.3);
- height: 70rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- align-items: center;
- justify-content: center;
- border-radius: 100px;
- }
- .hl88-lr-empty-text{
- font-size: 32rpx;
- color: #ffffff;
- }
- </style>
|