24 lines
510 B
Vue
Executable File
24 lines
510 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/ic_empty_data.png" mode="aspectFill" style="width: 250rpx;height: 250rpx;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>
|