z-nodata.vue 396 B

12345678910111213141516171819202122
  1. <template>
  2. <view class="">
  3. <image class="nodata" mode="widthFix" :src="state=='nodata'?require('../../static/nomessage.png'):require('../../static/norecord.png')"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default{
  8. name:'z-nodata',
  9. props:{
  10. state:String
  11. }
  12. }
  13. </script>
  14. <style lang="scss" scoped>
  15. .nodata{
  16. width: 457rpx;
  17. margin-left: 147rpx;
  18. margin-top: 40rpx;
  19. }
  20. </style>