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

67 lines
1.2 KiB

<template>
<view class="content_ box-size">
<view class="img_">
<image :src="configList.pet_success.paramValueImage" mode="" style="width: 310rpx;height: 311rpx;"></image>
</view>
<view class="text_ level">
{{ configList.pet_success.paramValueText }}
</view>
<view class="buttom" :style="{borderRadius:'41rpx'}" @click="onClick">
下一步
</view>
</view>
</template>
<script setup>
import { store } from '@/store'
const configList = store.state.system.configList
const onClick = () => {
uni.navigateTo({
url: "/otherPages/authentication/examination/end"
})
}
</script>
<style scoped lang="scss">
.content_{
font-size: 28rpx;
color: #707070;
.img_{
width: 310rpx;
height: 311rpx;
margin: 80rpx 0 0 190rpx;
}
.text_{
width: 674rpx;
height: 74rpx;
justify-content: center;
margin: 30rpx 0 0 10rpx;
font-size: 22rpx !important;
line-height: 40rpx;
color: #707070;
}
.buttom{
width: 594rpx;
height: 94rpx;
display: grid;
place-items: center;
background-color: #FFBF60;
margin: 250rpx 0 0 40rpx;
font-size: 30rpx;
color: #FFFFFF;
}
}
.level{
display: flex;
}
</style>