12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="empty-box">
- <image :src="icon" style="width: 296rpx; height: 296rpx;"></image>
- <view class="ft14 cl-notice mt20">
- {{title}}
- </view>
- </view>
- </template>
- <script>
- export default{
- props:{
- title:{
- type:String,
- default:'暂无普通用户优惠券',
- },icon:{
- type:String,
- default:"/static/img/common/empty.png"
- }
- },
- data(){
- return {
-
- }
- }
- }
- </script>
- <style>
- .empty-box{
- padding: 60rpx;
- text-align: center;
- }
- </style>
|