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

67 lines
1.2 KiB

  1. <template>
  2. <view class="content_">
  3. <view class="img_">
  4. <image :src="configList.pet_low.paramValueImage" 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. import { store } from '@/store'
  16. const configList = store.state.system.configList
  17. const onClick = () => {
  18. uni.navigateTo({
  19. url: "/otherPages/authentication/examination/errorDetail"
  20. })
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. .content_{
  25. font-size: 28rpx;
  26. color: #707070;
  27. .img_{
  28. width: 310rpx;
  29. height: 311rpx;
  30. margin: 80rpx 0 0 190rpx;
  31. }
  32. .text{
  33. width: 420rpx;
  34. height: 74rpx;
  35. justify-content: center;
  36. margin: 30rpx 0 0 140rpx;
  37. }
  38. .tools {
  39. margin-top: 327rpx;
  40. }
  41. .btn{
  42. width: 594rpx;
  43. background-color: #FFBF60;
  44. color: #FFFFFF;
  45. padding: 27rpx 0;
  46. font-size: 30rpx;
  47. line-height: 40rpx;
  48. .icon {
  49. margin-left: 10rpx;
  50. }
  51. }
  52. }
  53. .level{
  54. display: flex;
  55. }
  56. </style>