|
|
- <template>
- <view class="content_ box-size">
- <view class="img_">
- <image src="../../static/examination/approved.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 = () => {
- uni.navigateTo({
- url: "/otherPages/authentication/examination/end"
- })
- }
-
- </script>
-
- <style scoped lang="scss">
-
- .content_{
- font-size: 28rpx;
- color: #707070;
-
- .img_{
- width: 310rpx;
- height: 311rpx;
- margin: 80rpx 0 0 190rpx;
- }
-
- .text_{
- width: 674rpx;
- height: 74rpx;
- justify-content: center;
- margin: 30rpx 0 0 10rpx;
- font-size: 22rpx !important;
- line-height: 40rpx;
- color: #707070;
- }
-
- .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>
|