| 12345678910111213141516171819202122 |
- <template>
- <view class="">
- <image class="nodata" mode="widthFix" :src="state=='nodata'?require('../../static/nomessage.png'):require('../../static/norecord.png')"></image>
- </view>
- </template>
- <script>
- export default{
- name:'z-nodata',
- props:{
- state:String
- }
- }
- </script>
- <style lang="scss" scoped>
- .nodata{
- width: 457rpx;
- margin-left: 147rpx;
- margin-top: 40rpx;
- }
- </style>
|