猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.3 KiB

  1. <template>
  2. <view class="content_ box-size">
  3. <view class="img_">
  4. <image src="../../static/examination/approved.png" mode="" style="width: 310rpx;height: 311rpx;"></image>
  5. </view>
  6. <view class="text_ level">
  7. 审核留言:-您好呀感谢您的认真作答~从您的回答中我们感受到了您对宠物的用心相信您可以胜任宠物喂养员这份小小的工作!希望您能在猫妈狗爸给更多毛孩子带去您的关爱!
  8. </view>
  9. <view class="buttom" :style="{borderRadius:'41rpx'}" @click="onClick">
  10. 下一步
  11. </view>
  12. </view>
  13. </template>
  14. <script setup>
  15. const onClick = () => {
  16. uni.navigateTo({
  17. url: "/otherPages/authentication/examination/end"
  18. })
  19. }
  20. </script>
  21. <style scoped lang="scss">
  22. .content_{
  23. font-size: 28rpx;
  24. color: #707070;
  25. .img_{
  26. width: 310rpx;
  27. height: 311rpx;
  28. margin: 80rpx 0 0 190rpx;
  29. }
  30. .text_{
  31. width: 674rpx;
  32. height: 74rpx;
  33. justify-content: center;
  34. margin: 30rpx 0 0 10rpx;
  35. font-size: 22rpx !important;
  36. line-height: 40rpx;
  37. color: #707070;
  38. }
  39. .buttom{
  40. width: 594rpx;
  41. height: 94rpx;
  42. display: grid;
  43. place-items: center;
  44. background-color: #FFBF60;
  45. margin: 250rpx 0 0 40rpx;
  46. font-size: 30rpx;
  47. color: #FFFFFF;
  48. }
  49. }
  50. .level{
  51. display: flex;
  52. }
  53. </style>