quesheng.vue 410 B

1234567891011121314151617181920212223
  1. <template>
  2. <view class="content">
  3. <image src="../../static/img/quesheng.png" class="quesheng"></image>
  4. <view style="color: rgba(87, 146, 240, 1);">暂无消息</view>
  5. </view>
  6. </template>
  7. <script>
  8. </script>
  9. <style>
  10. .content {
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .quesheng{
  17. margin-top: 300rpx;
  18. width: 480rpx;
  19. height: 558rpx;
  20. }
  21. </style>