| 1234567891011121314151617181920212223 |
- <template>
- <view class="content">
- <image src="../../static/img/quesheng.png" class="quesheng"></image>
- <view style="color: rgba(87, 146, 240, 1);">暂无消息</view>
- </view>
- </template>
- <script>
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .quesheng{
- margin-top: 300rpx;
- width: 480rpx;
- height: 558rpx;
- }
- </style>
|