|
@@ -1,26 +1,42 @@
|
|
<template>
|
|
<template>
|
|
<uni-popup ref="popupRef" background-color="#fff" type="left" class="popup-container">
|
|
<uni-popup ref="popupRef" background-color="#fff" type="left" class="popup-container">
|
|
- <view>
|
|
|
|
- <uni-icons type="left" size="30" @click="handleBack"></uni-icons>
|
|
|
|
- <text>成绩</text>
|
|
|
|
- </view>
|
|
|
|
- <w-swiper :list="list" :swiperHeight="300" :positionIndex="current">
|
|
|
|
- <template v-slot:default="{item,index}">
|
|
|
|
- <view class="body" v-if="item.mta_show">
|
|
|
|
- <danxuan :question="item" showError v-if="item.type == '1'"></danxuan>
|
|
|
|
- <panduan :question="item" showError v-if="item.type == '2'"></panduan>
|
|
|
|
- <tiankong :question="item" showError v-if="item.type == '3'"></tiankong>
|
|
|
|
- <!-- 答案解析 -->
|
|
|
|
- <button @click="showJiexiPopup(item)">show</button>
|
|
|
|
-
|
|
|
|
- <!-- 答案 -->
|
|
|
|
- <view>答案{{showAnswerResult(item)}}</view>
|
|
|
|
- <!-- 你的答案 -->
|
|
|
|
- <view>您的答案:{{showAnswerReply(item)}}</view>
|
|
|
|
- </view>
|
|
|
|
- </template>
|
|
|
|
- </w-swiper>
|
|
|
|
-
|
|
|
|
|
|
+ <view class="ezy-result-page">
|
|
|
|
+ <view class="icon-title-navBar-box">
|
|
|
|
+ <view @click="handleBack" class="nav-bar-icon"></view>
|
|
|
|
+ <view class="nav-bar-title">成绩</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="result-body-box">
|
|
|
|
+ <w-swiper :list="list" :positionIndex="current" class="result-exam-swiper">
|
|
|
|
+ <template v-slot:default="{item,index}">
|
|
|
|
+ <view class="body" v-if="item.mta_show">
|
|
|
|
+ <danxuan :question="item" showError v-if="item.type == '1'"></danxuan>
|
|
|
|
+ <panduan :question="item" showError v-if="item.type == '2'"></panduan>
|
|
|
|
+ <tiankong :question="item" showError v-if="item.type == '3'"></tiankong>
|
|
|
|
+ <view class="answer-content-box">
|
|
|
|
+ <view class="answer-title"></view>
|
|
|
|
+ <view class="answer-btn-box">
|
|
|
|
+ <!-- 你的答案 -->
|
|
|
|
+ <view class="answer-item-left">
|
|
|
|
+ <text class="answer-item-title">您的答案</text>
|
|
|
|
+ <text class="answer-item-error">{{showAnswerReply(item)}}</text>
|
|
|
|
+ <view class="answer-line"></view>
|
|
|
|
+ </view>
|
|
|
|
+ <!-- 答案 -->
|
|
|
|
+ <view class="answer-item-right">
|
|
|
|
+ <text class="answer-item-title">正确答案</text>
|
|
|
|
+ <text class="answer-item-correct">{{showAnswerResult(item)}}</text>
|
|
|
|
+ </view>
|
|
|
|
+ <!-- 答案解析 -->
|
|
|
|
+ <view @click="showJiexiPopup(item)" class="answer-btn"></view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </template>
|
|
|
|
+ </w-swiper>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
<!-- 解析浮层数据 -->
|
|
<!-- 解析浮层数据 -->
|
|
<questionJiexi ref="jiexiRef"></questionJiexi>
|
|
<questionJiexi ref="jiexiRef"></questionJiexi>
|
|
</uni-popup>
|
|
</uni-popup>
|