other.vue 445 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="nodata-box">
  3. <image src="@/static/img/public/7.png" mode=""></image>
  4. <text>{{$i18n.locale=='en'? 'No Data': '暂无数据'}}</text>
  5. </view>
  6. </template>
  7. <script>
  8. </script>
  9. <style scoped>
  10. .nodata-box{
  11. text-align: center;
  12. padding-top: 50px;
  13. }
  14. .nodata-box image{
  15. width: 60%;
  16. /* height: 200px; */
  17. }
  18. .nodata-box text{
  19. display: block;
  20. font-size: 20px;
  21. color: #CCE6FF;
  22. line-height: 40px;
  23. }
  24. </style>