app_tree_planting/components/empty-view.vue
2023-02-09 17:47:52 +08:00

24 lines
517 B
Vue
Executable File

<template>
<view style="display: flex;justify-content: center;min-height: 100%;width: 750rpx;flex-direction: column;align-items: center;">
<image src="/static/images/ic_empty_data.png" mode="aspectFill" style="width: 200rpx;height: 200rpx;margin-top: 200rpx;"></image>
<view style="font-size: 35rpx;color: #BBBBBB;">暂无数据</view>
</view>
</template>
<script>
export default {
name: 'empty-view',
props: {},
computed: {
},
methods: {
}
}
</script>
<style>
</style>