xinelu-applet-ui/pages/message/message.vue

23 lines
261 B
Vue
Raw Normal View History

2023-09-20 10:42:44 +08:00
<template>
2023-11-02 11:04:42 +08:00
<view class="body">
<u-empty mode="order" icon-size='220' text="暂无信息"></u-empty>
2023-09-20 10:42:44 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2023-11-08 14:10:01 +08:00
2023-09-20 10:42:44 +08:00
};
}
}
</script>
<style lang="scss">
2023-11-08 14:10:01 +08:00
.body {
2023-11-02 11:04:42 +08:00
margin-top: 50%;
2023-09-20 10:42:44 +08:00
2023-11-08 14:10:01 +08:00
}
2023-09-20 10:42:44 +08:00
</style>