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

99 lines
2.8 KiB

3 months ago
  1. <template>
  2. <view class="po-r">
  3. <image class="bg" src="" mode=""></image>
  4. <view class="po-a content w-100">
  5. <view class="top bg-fff">
  6. <view class="com-title size-32 fw700 flex-rowl">
  7. 您选择的宠物类型
  8. </view>
  9. <image class="mt32" src="../../../static/images/ydd/img1.png" mode="widthFix"></image>
  10. </view>
  11. <view class="text po-r bg-fff">
  12. <text
  13. class="size-28">即将开始基础养宠经验考核该环节是对喂养员科学养宠经验及理念的基础考核考核题目均为选择判断题题目较为简单;大多为科学养宠所涉及的常识题以客观事实判定标准答案;小部分题目为平台对喂养员的要求以平台自行判定标准答案!</text>
  14. <view class="po-a flex-rowl tips">
  15. <image class="ml16" src="@/static/images/ydd/icon1.png" mode="widthFix"></image>
  16. <text class="size-28 ml16">养宠考试说明</text>
  17. </view>
  18. </view>
  19. <view class="text po-r bg-fff mb150">
  20. <text
  21. class="size-28">即将开始基础养宠经验考核该环节是对喂养员科学养宠经验及理念的基础考核考核题目均为选择判断题题目较为简单;大多为科学养宠所涉及的常识题以客观事实判定标准答案;小部分题目为平台对喂养员的要求以平台自行判定标准答案!</text>
  22. <view class="po-a flex-rowl tips">
  23. <image class="ml16" src="@/static/images/ydd/icon2.png" mode="widthFix"></image>
  24. <text class="size-28 ml16">考试注意事项</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="footer-btn flex-colc">
  29. <view class="size-22 color-777">
  30. 剩余考试次数:3
  31. </view>
  32. <view class="btn" @click="toNext">
  33. 开始考试
  34. </view>
  35. </view>
  36. </view>
  37. </template>
  38. <script setup>
  39. const content =
  40. `即将开始基础养宠经验考核,该环节是对喂养员科学养宠经验及理念的基础考核,考核题目均为选择判断题,题目较为简单;大多为科学养宠所涉及的常识题,以客观事实判定标准答案;小部分题目为平台对喂养员的要求,以平台自行判定标准答案!`
  41. const toNext = () => {
  42. uni.navigateTo({
  43. url: "/otherPages/authentication/examination/base"
  44. })
  45. }
  46. </script>
  47. <style lang="scss" scoped>
  48. .mb150 {
  49. margin-bottom: 150rpx;
  50. }
  51. .text {
  52. padding: 50rpx 37rpx;
  53. border-radius: 20rpx;
  54. margin-top: 43px;
  55. }
  56. .tips {
  57. width: 302rpx;
  58. height: 67rpx;
  59. background-color: #FFEBCE;
  60. top: -28rpx;
  61. left: 20rpx;
  62. border-radius: 0 90rpx 0 0;
  63. image {
  64. width: 40rpx;
  65. }
  66. }
  67. .content {
  68. padding: 16rpx;
  69. width: 718rpx;
  70. left: 0;
  71. top: 0;
  72. }
  73. .bg {
  74. width: 750rpx;
  75. height: 432px;
  76. background-image: linear-gradient(to bottom, #FFBF60, #f5f5f5);
  77. }
  78. .top {
  79. padding: 46rpx 17rpx 17rpx;
  80. margin: 16rpx;
  81. border-radius: 20rpx;
  82. image {
  83. width: 198rpx;
  84. }
  85. }
  86. </style>