123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="no-data-box">
- <image class="no-data-icon" src="../../../static/logo.png" mode=""></image>
- <text class="no-data-text">暂无数据</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .no-data-box{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding-top: 98rpx;
- .no-data-icon{
- width: 334rpx;
- height: 262rpx;
- }
- .no-data-text{
- padding-top: 23rpx;
- font-size: 28rpx;
- font-family: PingFang SC, PingFang SC-Bold;
- font-weight: 700;
- color: #808080;
- line-height: 40rpx;
- }
- }
- </style>
|