12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="nodatadiv">
- <view class="">
- <u--image :showLoading="true"
- src="https://fsy.shengsi.gov.cn/file/20240619/4d6038aac7114ddface2354cd2e8e1ee.png" width="220rpx"
- height="150rpx" @click="click"></u--image>
- </view>
- <view class="nodata">
- 暂无数据
- </view>
- </view>
- </template>
- <script>
- </script>
- <style>
- .nodata {
- margin-top: 40rpx;
- font-size: 30rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #333333;
- }
- .nodatadiv {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- /* background-color: #fff; */
- background-color: transparent;
- padding-top: 20vh;
- }
- </style>
|