猫妈狗爸伴宠师小程序前端代码
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.

58 lines
991 B

  1. <template>
  2. <view class="content_">
  3. <view class="img_">
  4. <image src="../../static/examination/examine.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. // todo
  17. }
  18. </script>
  19. <style scoped lang="scss">
  20. .content_{
  21. font-size: 28rpx;
  22. color: #707070;
  23. .img_{
  24. width: 310rpx;
  25. height: 311rpx;
  26. margin: 80rpx 0 0 190rpx;
  27. }
  28. .text{
  29. width: 420rpx;
  30. height: 74rpx;
  31. justify-content: center;
  32. margin: 30rpx 0 0 140rpx;
  33. }
  34. .buttom{
  35. width: 594rpx;
  36. height: 94rpx;
  37. display: grid;
  38. place-items: center;
  39. background-color: #FFBF60;
  40. margin: 250rpx 0 0 40rpx;
  41. font-size: 30rpx;
  42. color: #FFFFFF;
  43. }
  44. }
  45. .level{
  46. display: flex;
  47. }
  48. </style>