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

27 lines
745 B

  1. <template>
  2. <up-sticky>
  3. <view class="steps-box">
  4. <up-steps :current="current" activeColor="#FFBF60">
  5. <up-steps-item title="基本考核" :iconSize="40"></up-steps-item>
  6. <up-steps-item title="培训考核"></up-steps-item>
  7. <up-steps-item title="最后准备"></up-steps-item>
  8. </up-steps>
  9. <view class="info font24 mt20">查看认证要求工作详情服务酬劳等信息 ></view>
  10. <view class="font24 mt20 tips">为保证喂养员认证顺利进行请认真填写并确保信息的真实性</view>
  11. </view>
  12. </up-sticky>
  13. </template>
  14. <script setup>
  15. defineProps({
  16. current: {
  17. type: Number,
  18. default: 1
  19. }
  20. })
  21. </script>
  22. <style scoped lang="scss">
  23. @import "index";
  24. </style>