12345678910111213141516171819202122232425262728 |
- <template>
- <view class="empty-box">
- <image class="empty-img" src="../../static/images/empty.png" mode="aspectFit"></image>
- </view>
- </template>
- <script>
- export default {
- name:"empty",
- data() {
- return {
-
- };
- }
- }
- </script>
- <style scoped lang="scss">
- .empty-box{
- width: 100%;
- text-align: center;
- .empty-img{
- max-width: 100%;
- width: 720rpx;
- height: 351rpx;
- }
- }
- </style>
|