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

42 lines
1.0 KiB

  1. <template>
  2. <view class="query">
  3. <up-empty
  4. mode="car"
  5. icon="https://cdn.catmdogd.com/Work/image/work/icon5.png"
  6. :width="60"
  7. :height="60"
  8. :text="text"
  9. :textSize="16"
  10. textColor="#000000"
  11. >
  12. </up-empty>
  13. <view class="tips">
  14. 审核留言:-您好呀感谢您的认真作答~从您的回答中我们感受到了您对宠物的用心相信您可以胜任宠物喂养员这份小小的兼职!希望您能在布丁Pudding给更多毛孩子带去您的关爱!
  15. </view>
  16. </view>
  17. <submitBut text="下一步" @click="handleClick" :disabled="false"></submitBut>
  18. </template>
  19. <script setup>
  20. import submitBut from "../../../components/submitBut/index.vue"
  21. import {ref} from "vue"
  22. const text = ref("培训考试审核中")
  23. const handleClick = () => {
  24. }
  25. </script>
  26. <style scoped lang="scss">
  27. .query {
  28. height: calc(100vh - 200rpx);
  29. background: #FFFFFF;
  30. padding: 100rpx 40rpx;
  31. }
  32. .tips {
  33. line-height: 44rpx;
  34. margin-top: 40rpx;
  35. color: #c0c4cc;
  36. }
  37. </style>