|
|
- <template>
- <view class="content_">
- <view class="img_">
- <image src="../../static/examination/examine.png" mode="" style="width: 310rpx;height: 311rpx;"></image>
- </view>
- <view class="text level">
- 平台会在三个工作日内完成审核,请及时查看审核结果!
- </view>
- <view class="buttom" :style="{borderRadius:'41rpx'}" @click="onClick">
- 我知道了
- </view>
- </view>
- </template>
-
- <script setup>
-
- const onClick = () => {
- // todo
- }
-
- </script>
-
- <style scoped lang="scss">
-
- .content_{
- font-size: 28rpx;
- color: #707070;
-
- .img_{
- width: 310rpx;
- height: 311rpx;
- margin: 80rpx 0 0 190rpx;
- }
-
- .text{
- width: 420rpx;
- height: 74rpx;
- justify-content: center;
- margin: 30rpx 0 0 140rpx;
- }
-
- .buttom{
- width: 594rpx;
- height: 94rpx;
- display: grid;
- place-items: center;
- background-color: #FFBF60;
- margin: 250rpx 0 0 40rpx;
- font-size: 30rpx;
- color: #FFFFFF;
- }
- }
-
- .level{
- display: flex;
- }
-
-
- </style>
|