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

66 lines
1.2 KiB

  1. <template>
  2. <view class="content_ box-size">
  3. <view class="img_">
  4. <image :src="configList.pet_success.paramValueImage" mode="" style="width: 310rpx;height: 311rpx;"></image>
  5. </view>
  6. <view class="text_ level">
  7. {{ configList.pet_success.paramValueText }}
  8. </view>
  9. <view class="buttom" :style="{borderRadius:'41rpx'}" @click="onClick">
  10. 下一步
  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/end"
  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: 674rpx;
  34. height: 74rpx;
  35. justify-content: center;
  36. margin: 30rpx 0 0 10rpx;
  37. font-size: 22rpx !important;
  38. line-height: 40rpx;
  39. color: #707070;
  40. }
  41. .buttom{
  42. width: 594rpx;
  43. height: 94rpx;
  44. display: grid;
  45. place-items: center;
  46. background-color: #FFBF60;
  47. margin: 250rpx 0 0 40rpx;
  48. font-size: 30rpx;
  49. color: #FFFFFF;
  50. }
  51. }
  52. .level{
  53. display: flex;
  54. }
  55. </style>