12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="empty-box">
- <image src="/static/images/noData.png"></image>
- <!-- <image src="../subPackages/static/images/noData.png" mode=""></image> -->
- <view class="txt">{{title}}</view>
- </view>
- </template>
-
- <script>
- export default{
- props: {
- title: {
- type: String,
- default: '暂无记录',
- },
- },
- }
-
- </script>
-
- <style lang="scss">
- .empty-box{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- margin: 100rpx 0;
- image{
- width: 600rpx;
- height: 440rpx;
- }
- .txt{
- color: #03BE5E;
- }
- }
- </style>
|