更新通证权益相关页面

This commit is contained in:
zhangmanman
2021-09-23 17:38:46 +08:00
parent 0d77682f00
commit db42cc974c
21 changed files with 17666 additions and 57851 deletions

View File

@@ -1,6 +1,6 @@
<template>
<view>
<view class="returnCont">
<view class="returnCont">
<block v-if="list.length > 0">
<view class="returnList" v-for="(item, index) in list" :key="index">
<view class="MallRefundsTemplate">
<view class="top">
@@ -35,6 +35,10 @@
<view v-else class="nowPay" @click="$Router.push({name: 'storeOrderDetails', params: {id: item.refund_id, type: 'return'}})">查看详情</view>
</view>
</view>
</block>
<view v-else class="pack-center">
<image src="/static/icons/order-null.png"></image>
<view>{{toast}}</view>
</view>
</view>
</template>
@@ -50,7 +54,12 @@
return new Array
}
},
listType: ''
listType: '',
// 列表空提示
toast : {
type : String,
default : '暂无订单数据 -_-!'
}
},
created() {}
}
@@ -225,4 +234,18 @@
margin-top: 20rpx;
}
}
// 暂无订单
.pack-center {
text-align: center;
font-size: $title-size-sm;
color: $text-gray;
padding-top: 50%;
image {
width: $uni-img-size-lg * 2;
height:$uni-img-size-lg * 2;
border-radius: $uni-border-radius-circle;
margin-bottom: $margin;
}
}
</style>