You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="noDate"> <view class="img"> <image src="https://jiangxijiakao-1.oss-cn-hangzhou.aliyuncs.com/complain/2023-10-09/1696832739095-nodata.png" mode=""></image> </view> <view class="text"> <slot> <text>暂无数据</text> </slot> </view> </view> </template>
<script> </script>
<style lang="scss" scoped> .noDate { display: flex; align-items: center; justify-content: center; flex-direction: column; padding-bottom: 40rpx; } .img { width: 438rpx;height: 286rpx; } .text { font-size: 26rpx; color: #999; margin-top: 60rpx; } </style>
|