| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="empty-state">
- <image class="img" src="/static/images/undraw.png" alt="" />
- <view class="r">
- <view class="title" v-if="title" v-t="title" />
- <view class="title" v-else v-t="'Documentary.tradingCenter.item143'" />
- </view>
- </view>
- </template>
- <script setup lang="ts">
- const props = defineProps({
- title: { type: String, default: '' }
- });
- </script>
- <style scoped lang="scss">
- @import "@/uni.scss";
- .empty-state {
- display: flex;
- padding: px2rpx(31) px2rpx(20);
- justify-content: center;
- align-items: center;
- border-radius: 12px;
- gap: px2rpx(24);
- .img {
- width: px2rpx(100) !important;
- height: px2rpx(98) !important;
- flex-shrink: 0;
- }
- .title {
- color: #fff;
- font-family: Roboto;
- font-size: px2rpx(26);
- font-style: normal;
- font-weight: 600;
- line-height: px2rpx(44);
- margin-bottom: px2rpx(8);
- }
- .text {
- color: #474747;
- font-family: Roboto;
- font-size: px2rpx(14);
- font-style: normal;
- font-weight: 400;
- line-height: px2rpx(20);
- letter-spacing: px2rpx(0.07);
- }
- }
- </style>
|