1234567891011121314151617181920212223242526 |
- <template>
- <view class="nodata-box">
- <image src="@/static/img/public/7.png" mode=""></image>
- <text>{{$i18n.locale=='en'? 'No Data': '暂无数据'}}</text>
- </view>
- </template>
- <script>
- </script>
- <style scoped>
- .nodata-box{
- text-align: center;
- padding-top: 50px;
- }
- .nodata-box image{
- width: 60%;
- /* height: 200px; */
- }
- .nodata-box text{
- display: block;
- font-size: 20px;
- color: #CCE6FF;
- line-height: 40px;
- }
- </style>
|