24 lines
517 B
Vue
24 lines
517 B
Vue
|
<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>
|