123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="empty-box">
- <image src="/static/images/empty-box.png"></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-top: 200rpx;
- image{
- width: 414rpx;
- height: 240rpx;
- }
- .txt{
- font-size: 26rpx;
- color: #999;
- }
- }
- </style>
|