|
|
- <template>
- <view class="content_">
- <view class="img_">
- <image :src="configList.pet_low.paramValueImage" mode="" style="width: 310rpx;height: 311rpx;"></image>
- </view>
- <view class="flex-rowc tools">
- <view class="flex-rowc btn" :style="{borderRadius:'41rpx'}" @click="onClick">
- <text>查看错题原因</text>
- <up-icon class="icon" name="arrow-right-double" color="#FFFFFF" size="23rpx"></up-icon>
- </view>
- </view>
- </view>
- </template>
-
- <script setup>
- import { store } from '@/store'
-
- const configList = store.state.system.configList
-
- const onClick = () => {
- uni.navigateTo({
- url: "/otherPages/authentication/examination/errorDetail"
- })
- }
- </script>
-
- <style scoped lang="scss">
- .content_{
- font-size: 28rpx;
- color: #707070;
-
- .img_{
- width: 310rpx;
- height: 311rpx;
- margin: 80rpx 0 0 190rpx;
- }
-
- .text{
- width: 420rpx;
- height: 74rpx;
- justify-content: center;
- margin: 30rpx 0 0 140rpx;
- }
-
- .tools {
- margin-top: 327rpx;
- }
-
- .btn{
- width: 594rpx;
- background-color: #FFBF60;
- color: #FFFFFF;
- padding: 27rpx 0;
- font-size: 30rpx;
- line-height: 40rpx;
-
- .icon {
- margin-left: 10rpx;
- }
- }
- }
-
- .level{
- display: flex;
- }
-
-
- </style>
|