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

64 lines
1.1 KiB

  1. <template>
  2. <view class="content_">
  3. <view class="img_">
  4. <image src="../../static/examination/unqualified.png" mode="" style="width: 310rpx;height: 311rpx;"></image>
  5. </view>
  6. <view class="flex-rowc tools">
  7. <view class="flex-rowc btn" :style="{borderRadius:'41rpx'}" @click="onClick">
  8. <text>查看错题原因</text>
  9. <up-icon class="icon" name="arrow-right-double" color="#FFFFFF" size="23rpx"></up-icon>
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script setup>
  15. const onClick = () => {
  16. uni.navigateTo({
  17. url: "/otherPages/authentication/examination/errorDetail"
  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: 420rpx;
  32. height: 74rpx;
  33. justify-content: center;
  34. margin: 30rpx 0 0 140rpx;
  35. }
  36. .tools {
  37. margin-top: 327rpx;
  38. }
  39. .btn{
  40. width: 594rpx;
  41. background-color: #FFBF60;
  42. color: #FFFFFF;
  43. padding: 27rpx 0;
  44. font-size: 30rpx;
  45. line-height: 40rpx;
  46. .icon {
  47. margin-left: 10rpx;
  48. }
  49. }
  50. }
  51. .level{
  52. display: flex;
  53. }
  54. </style>