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

43 lines
1.0 KiB

<template>
<view class="query">
<up-empty
mode="car"
icon="https://cdn.catmdogd.com/Work/image/work/icon5.png"
:width="60"
:height="60"
:text="text"
:textSize="16"
textColor="#000000"
>
</up-empty>
<view class="tips">
审核留言:-您好呀感谢您的认真作答~从您的回答中我们感受到了您对宠物的用心相信您可以胜任宠物喂养员这份小小的兼职!希望您能在布丁Pudding给更多毛孩子带去您的关爱!
</view>
</view>
<submitBut text="下一步" @click="handleClick" :disabled="false"></submitBut>
</template>
<script setup>
import submitBut from "../../../components/submitBut/index.vue"
import {ref} from "vue"
const text = ref("培训考试审核中")
const handleClick = () => {
}
</script>
<style scoped lang="scss">
.query {
height: calc(100vh - 200rpx);
background: #FFFFFF;
padding: 100rpx 40rpx;
}
.tips {
line-height: 44rpx;
margin-top: 40rpx;
color: #c0c4cc;
}
</style>