|
|
- <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>
|