123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <view class="no-data">
- <image src="../../static/no-data.png"></image>
- <text v-for="(text, index) in textArr" :key="index">{{text}}</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },
- props: ['textArr']
- }
- </script>
- <style lang="less">
- .no-data {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- font-size: 22.5rpx;
- line-height: 33.75rpx;
- color: #828899;
- >image {
- margin-bottom: 35rpx;
- width: 176.87rpx;
- height: 200.62rpx;
- }
- }
- </style>
|