金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
488 B

  1. <template>
  2. <view class="padding-xl margin-top-xl">
  3. <view class="flex justify-center">
  4. <image src="@/static/images/empty.png" mode="widthFix" class="no-content-img"></image>
  5. </view>
  6. <text class="block text-center margin-top">暂无数据</text>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data(){
  12. return {
  13. }
  14. },
  15. onLoad(){
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .no-content-img{
  23. width: 440rpx;
  24. height: 380rpx;
  25. }
  26. </style>