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

108 lines
2.3 KiB

  1. <template>
  2. <!-- <view>伴宠师认证</view> -->
  3. <view class="box">
  4. <view class="content bg-fff">
  5. <view class="">
  6. <view class="label size-22 level" :style="{borderRadius:'10rpx'}">
  7. 选择题
  8. </view>
  9. <view class="">
  10. <view class="size-28 mt32 mb20">
  11. 1猫咪每天在地上走路时不时还会打滚 身上是很不干净的最好每个星期洗次澡
  12. </view>
  13. <view class="size-28 color-777 p20 daan mb24">
  14. A
  15. </view>
  16. <view class="size-28 color-777 p20 daan active mb24">
  17. B
  18. </view>
  19. </view>
  20. </view>
  21. <view class="mt60">
  22. <view class="label size-22 level" :style="{borderRadius:'10rpx'}">
  23. 主观题
  24. </view>
  25. <view class="">
  26. <view class="size-28 mt32 mb20">
  27. 1喂养服务流程:如果您收到一笔喂养猫咪的订单备注猫咪性格怕生请问您会如何进行服务?请详细描述您的全部服务流程(若服务宠物不包含猫咪可回答)
  28. </view>
  29. <view class="size-28 color-777 p20 daan">
  30. <textarea value="" placeholder="" />
  31. <text :style="{color:'#FF2A2A'}">字数低于700字不予合格</text>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="footer-btn buttom ">
  38. <view class="size-22 color-777 ">
  39. 剩余考试机会<text :style="{color:'#FF8DC6'}">3</text>
  40. </view>
  41. <view class="btn">
  42. 重新考试
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. </script>
  48. <style lang="scss" scoped>
  49. .active {
  50. color: #FFBF60;
  51. background-color: rgb(255, 241, 240);
  52. }
  53. .daan {
  54. background-color: #F3F3F3;
  55. border-radius: 50rpx;
  56. }
  57. .p20 {
  58. padding: 20px;
  59. }
  60. .box {
  61. // background-image: linear-gradient(to bottom, #ffbf60, #f2f2f2);
  62. padding: 16rpx;
  63. .step {
  64. width: 720rpx;
  65. height: 32rpx;
  66. border-radius: 32rpx;
  67. background-color: #D9D9D9;
  68. .in {
  69. width: 50%;
  70. height: 32rpx;
  71. background-color: #ffbf60;
  72. border-radius: 32rpx;
  73. }
  74. }
  75. }
  76. .content {
  77. border-radius: 20rpx;
  78. padding: 15rpx 20rpx;
  79. .label {
  80. width: 86rpx;
  81. padding: 5rpx 15rpx;
  82. color: #fff;
  83. background-color: #FFBF60;
  84. justify-content: center;
  85. }
  86. }
  87. .level {
  88. display: flex;
  89. }
  90. .subjectivity {
  91. height: auto;
  92. }
  93. .buttom {
  94. display: grid;
  95. place-items: center;
  96. }
  97. </style>