You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
655 B
37 lines
655 B
1 year ago
|
<template>
|
||
|
<view name="empty-view" class="empty-wrapper">
|
||
|
<image src="/static/data/images/empty.png" mode="aspectFit" class="empty-image" />
|
||
|
<view class="empty-title">什么都没有了</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
mixins: [],
|
||
|
props: {},
|
||
|
didMount() {},
|
||
|
didUpdate() {},
|
||
|
didUnmount() {},
|
||
|
methods: {},
|
||
|
created: function () {}
|
||
|
};
|
||
|
</script>
|
||
|
<style>
|
||
|
.empty-wrapper {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.empty-image {
|
||
|
width: 750rpx;
|
||
|
height: 400rpx;
|
||
|
}
|
||
|
.empty-title {
|
||
|
width: 100%;
|
||
|
color: #888;
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|