no-none2.vue 434 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="content empty flex-center">
  3. <image src="../images/no-more2.png" mode="widthFix"></image>
  4. <view class="col">程序加载中~</view>
  5. </view>
  6. </template>
  7. <script>
  8. </script>
  9. <style>
  10. page{
  11. height: 100%;
  12. }
  13. .empty{
  14. color: #999;
  15. flex-direction: column;
  16. padding-top:200rpx;
  17. }
  18. .empty image {
  19. width:300px;
  20. height:180rpx;
  21. padding-bottom: 20rpx;
  22. /* margin: 100rpx 0 30rpx 0; */
  23. }
  24. </style>