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