Files
FirstUI-vue/pages/component/data/empty/empty.vue
2023-08-17 21:28:49 +08:00

44 lines
1.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号18 614 07 25 49身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<template>
<view class="fui-wrap">
<view class="fui-page__hd">
<view class="fui-page__title">Empty</view>
<view class="fui-page__desc">Empty 缺省页页面的信息内容为空或信息响应异常的状态</view>
</view>
<view class="fui-page__bd">
<fui-empty :src="`${resUrl}/component/empty/img_data_3x.png`" title="暂无数据" descr="功能开发中,敬请期待!">
<fui-button text="返回首页" :size="28" width="336rpx" height="84rpx" radius="100rpx" background="#fff"
:margin="['64rpx','0']" borderColor="#465CFF" color="#465CFF" @click="goIndex"></fui-button>
</fui-empty>
<fui-empty :src="`${resUrl}/component/empty/img_news_3x.png`" title="暂无新消息" marginTop="64"></fui-empty>
<fui-empty :src="`${resUrl}/component/empty/img_address_3x.png`" title="暂无地址信息" marginTop="64">
</fui-empty>
<fui-empty :src="`${resUrl}/component/empty/img_network_3x.png`" title="请检查网络设置!" marginTop="64">
</fui-empty>
<fui-empty :src="`${resUrl}/component/empty/img_order_3x.png`" title="暂无订单" marginTop="64"></fui-empty>
<fui-empty :src="`${resUrl}/component/empty/img_search_3x.png`" title="没有找到搜索的内容额~" marginTop="64">
</fui-empty>
</view>
</view>
</template>
<script>
export default {
data() {
return {
resUrl: this.fui.resUrl()
}
},
methods: {
goIndex() {
this.fui.href('/pages/tabbar/index/index', true)
}
}
}
</script>
<style>
page {
background-color: #fff;
}
</style>