| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <view class="slot">
- <!-- <view class="img"><image :src="'../static/nodata/' + type + '.png'" mode="widthFix"></image></view>
- <view class="tip">{{ returnTip(tip) }}</view> -->
- <u-empty :text="returnTip(tip)" :mode="type"></u-empty>
- </view>
- </template>
- <script>
- export default {
- name: 'no-data',
- props: {
- // 类型,缺省图片名称,路径:/static/nodata/...
- type: {
- type: String,
- default: 'list'
- },
- // 自定义文本
- tip: {
- type: String,
- default: ''
- }
- },
- data() {
- return {
- ops: [
- { type: 'list', tip: '暂无数据' },
- // { type: 'collection', tip: '暂无收藏' },
- // { type: 'fans', tip: '暂无粉丝' },
- // { type: 'network', tip: '暂无网络' },
- { type: 'order', tip: '暂无订单' },
- // { type: 'news', tip: '暂无消息' },
- // { type: 'result', tip: '暂无搜索结果' }
- ]
- };
- },
- methods: {
- returnTip(tip) {
- if (tip) {
- return tip;
- } else {
- return this.ops.filter(item => item.type == this.type)[0].tip;
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .slot {
- width: 100%;
- // height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- align-content: center;
- flex-wrap: wrap;
- margin-top: 100rpx;
- .img {
- width: 400rpx;
- height: auto;
- image {
- width: 100%;
- height: auto;
- }
- }
- .tip {
- margin-top: 48rpx;
- width: 100%;
- text-align: center;
- font-size: 30rpx;
- font-weight: 400;
- color: $app-theme-text-color;
- }
- }
- </style>
|