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

59 lines
1.1 KiB

  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. <image src="/static/images/ydd/examine.png" mode="" style="width: 310rpx;height: 311rpx;"></image>
  6. </view>
  7. <view class="text level">
  8. 平台会在三个工作日内完成审核请及时查看审核结果
  9. </view>
  10. <view class="buttom" :style="{borderRadius:'41rpx'}" @click="onClick">
  11. 我知道了
  12. </view>
  13. </view>
  14. </template>
  15. <script setup>
  16. const onClick = () => {
  17. // todo
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. .content_{
  22. font-size: 28rpx;
  23. color: #707070;
  24. .img_{
  25. width: 310rpx;
  26. height: 311rpx;
  27. margin: 80rpx 0 0 190rpx;
  28. }
  29. .text{
  30. width: 420rpx;
  31. height: 74rpx;
  32. justify-content: center;
  33. margin: 30rpx 0 0 140rpx;
  34. }
  35. .buttom{
  36. width: 594rpx;
  37. height: 94rpx;
  38. display: grid;
  39. place-items: center;
  40. background-color: #FFBF60;
  41. margin: 250rpx 0 0 40rpx;
  42. font-size: 30rpx;
  43. color: #FFFFFF;
  44. }
  45. }
  46. .level{
  47. display: flex;
  48. }
  49. </style>