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

28 lines
745 B

<template>
<up-sticky>
<view class="steps-box">
<up-steps :current="current" activeColor="#FFBF60">
<up-steps-item title="基本考核" :iconSize="40"></up-steps-item>
<up-steps-item title="培训考核"></up-steps-item>
<up-steps-item title="最后准备"></up-steps-item>
</up-steps>
<view class="info font24 mt20">查看认证要求工作详情服务酬劳等信息 ></view>
<view class="font24 mt20 tips">为保证喂养员认证顺利进行请认真填写并确保信息的真实性</view>
</view>
</up-sticky>
</template>
<script setup>
defineProps({
current: {
type: Number,
default: 1
}
})
</script>
<style scoped lang="scss">
@import "index";
</style>