Commit 95dc6497 authored by zhengke's avatar zhengke

修改

parent 769055e2
......@@ -5,9 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,7 +27,7 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<template v-if="isOperate">
<view class="chooseName">
......@@ -186,7 +184,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -239,9 +237,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -263,19 +260,6 @@ export default {
color: #ffffff !important;
}
.chooseNum {
width: 40rpx;
height: 40rpx;
text-align: center;
line-height: 40rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 24rpx;
......@@ -303,4 +287,8 @@ export default {
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text>/
......@@ -20,7 +20,7 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view v-for="(item2, index2) in item1.QuestionContentObj" :key="index2"
style="border-bottom: 1px solid #d1d1d1">
......@@ -197,7 +197,7 @@
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -224,7 +224,7 @@
}
.AnswerContent {
font-size: 28rpx;
font-size: 30rpx;
padding: 25rpx;
background-color: #f4f4f4;
border-radius: 5px;
......@@ -234,7 +234,7 @@
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size: 28rpx;
font-size: 30rpx;
}
.myAnswer {
......@@ -243,7 +243,7 @@
}
.Single_Before {
font-size: 28rpx;
font-size: 30rpx;
font-weight: bold;
color: #da7878;
}
......@@ -254,9 +254,8 @@
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -279,10 +278,10 @@
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
......@@ -299,14 +298,6 @@
color: #111111;
}
.input {
box-sizing: border-box;
width: 690rpx;
border-bottom: 2rpx solid #000;
color: #000;
font-size: 22rpx;
}
.textarea {
box-sizing: border-box;
padding: 20rpx 0;
......@@ -318,4 +309,8 @@
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,9 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,12 +27,13 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view
v-for="(item2, index2) in item1.QuestionContentObj"
:key="index2"
class="flex item2"
style="align-items: center;"
>
<view class="chooseNum">{{ index2 + 1 }}</view>
<template v-if="isOperate">
......@@ -192,7 +191,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -226,7 +225,7 @@ export default {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size:28rpx;
font-size:30rpx;
}
.ExamIndex_Box {
......@@ -245,9 +244,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -274,7 +272,6 @@ export default {
margin-right: 25rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -290,7 +287,8 @@ export default {
width: 690rpx;
border-bottom: 2rpx solid #000;
color: #000;
font-size: 22rpx;
font-size: 26rpx;
height:70rpx;
}
.textarea {
......@@ -304,4 +302,9 @@ export default {
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,9 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,12 +27,13 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view
v-for="(item2, index2) in item1.QuestionContentObj"
:key="index2"
class="flex item2"
style="align-items: center;"
>
<view class="chooseNum">{{ index2 + 1 }}</view>
<template v-if="isOperate">
......@@ -197,7 +196,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -223,13 +222,13 @@ export default {
padding: 25rpx;
background-color: #f4f4f4;
border-radius: 5px;
font-size:28rpx;
font-size:30rpx;
}
.viewAnswerContent {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size:28rpx;
font-size:30rpx;
}
.Exam_Total {
font-size: 25rpx;
......@@ -248,9 +247,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -265,6 +263,7 @@ export default {
.item2 {
/* padding-left: 25rpx; */
margin: 50rpx 0;
width:
}
.choose {
......@@ -277,23 +276,25 @@ export default {
margin-right: 25rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
width:100%;
height:70rpx;
}
.input {
box-sizing: border-box;
width: 690rpx;
width: 100%;
border-bottom: 2rpx solid #000;
color: #000;
font-size: 22rpx;
font-size: 26rpx;
height:70rpx;
}
.textarea {
......@@ -302,9 +303,13 @@ export default {
}
/deep/.textarea-placeholder {
font-size: 20rpx;
font-size: 16rpx;
font-family: PingFang SC;
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -23,17 +23,18 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view
v-for="(item2, index2) in item1.QuestionContentObj"
:key="index2"
class="flex item2"
style="align-items: center;"
>
<view class="chooseNum">{{ index2 + 1 }}</view>
<template v-if="isOperate">
<view class="chooseName">
<input
<input
type="text"
v-model="item2.Content"
@input="getIsRes(item1)"
......@@ -182,7 +183,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -198,7 +199,7 @@ export default {
color: red !important;
}
.AnswerContent {
font-size: 28rpx;
font-size: 30rpx;
padding: 25rpx;
background-color: #f4f4f4;
border-radius: 5px;
......@@ -208,7 +209,7 @@ export default {
}
.Single_Before {
font-size: 28rpx;
font-size: 30rpx;
font-weight: bold;
color: #da7878;
}
......@@ -217,7 +218,7 @@ export default {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size:28rpx;
font-size:30rpx;
}
.Exam_Total {
......@@ -231,9 +232,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -256,26 +256,31 @@ export default {
}
.chooseNum {
height: 40rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
margin-right: 25rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
width:100%;
}
.input {
box-sizing: border-box;
width: 690rpx;
border-bottom: 2rpx solid #000;
height:70rpx;
font-size:26rpx;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,9 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -65,6 +63,7 @@
}})</view
>
<view v-html="item2.SubTitle"></view>
<text class=".Exam_Score">{{item1.Score}}</text>
</view>
<view v-for="(item3, index3) in item2.SubAnwser" :key="index3">
<!-- 单选 、判断-->
......@@ -469,7 +468,7 @@ export default {
<style>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -497,7 +496,7 @@ export default {
}
.AnswerContent {
font-size: 28rpx;
font-size: 30rpx;
padding: 25rpx;
background-color: #f4f4f4;
border-radius: 5px;
......@@ -521,9 +520,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -569,21 +567,21 @@ export default {
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
......@@ -605,4 +603,8 @@ export default {
font-size: 22rpx !important;
color: #00acf9 !important;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
<text class="Exam_Score"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
</view>
......@@ -27,9 +27,7 @@
<swiper-item v-for="(item1, index1) in data.DetailsList" :key="index1">
<view class="item1">
<view class="flex">
<view class="num" v-html="item1.Title"></view>{{
item1.Score
}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view
v-for="(item2, index2) in item1.QuestionContentObj"
......@@ -213,7 +211,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -236,13 +234,13 @@ export default {
.AnswerContent {
font-size: 30rpx;
padding: 28rpx;
padding: 30rpx;
background-color: #f4f4f4;
border-radius: 5px;
}
.Single_Before {
font-size: 28rpx;
font-size: 30rpx;
font-weight: bold;
color: #da7878;
}
......@@ -258,9 +256,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -284,23 +281,27 @@ export default {
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text>/
......@@ -20,7 +20,7 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<template v-if="isOperate">
<view class="chooseName">
......@@ -172,7 +172,7 @@
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -223,9 +223,8 @@
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -233,11 +232,6 @@
margin-bottom: 40rpx;
}
.item1 {
margin: 25rpx 0;
align-items: center;
}
.item2 {
/* padding-left: 25rpx; */
margin: 30rpx 0;
......@@ -288,4 +282,8 @@
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name" style="padding: 0 20px">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text>/
......@@ -21,7 +21,7 @@
<view class="flex">
<template v-if="item1.QuestionContentObj[1] && item1.QuestionContentObj[1].length > 0">
<view class="num">(1)</view>
<view class="num">-({{item1.QuestionContentObj[1].length}})题共用备选答案:</view>{{item1.Score}}
<view class="num">-({{item1.QuestionContentObj[1].length}})题共用备选答案:</view><text class="Exam_Score">{{item1.Score}}</text>
</template>
</view>
<template v-if="item1.QuestionContentObj[0] && item1.QuestionContentObj[0].length > 0">
......@@ -225,7 +225,7 @@
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -277,9 +277,8 @@
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -302,21 +301,21 @@
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
......@@ -341,4 +340,8 @@
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name">
<view class="grow">
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text>/<text
......@@ -20,7 +20,7 @@
<swiper-item v-for="(item1, index1) in data.DetailsList" :key="index1">
<view class="item1">
<view class="flex flex_start_center">
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view v-for="(item2, index2) in item1.QuestionContentObj" :key="index2"
class="flex item2 flex_start_center">
......@@ -194,7 +194,7 @@
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -244,9 +244,8 @@
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -271,23 +270,27 @@
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,9 +5,7 @@
<view class="name">
<view class="grow">
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,7 +27,7 @@
<swiper-item v-for="(item1, index1) in data.DetailsList" :key="index1">
<view class="item1">
<view class="flex flex_start_center">
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view
......@@ -226,7 +224,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -276,9 +274,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -303,23 +300,28 @@ export default {
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,9 +5,7 @@
<view class="name" style="padding: 0 20px">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,7 +27,7 @@
<view class="item1" style="padding: 0 20px">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<template
v-if="
......@@ -265,7 +263,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -282,7 +280,7 @@ export default {
}
.AnswerContent {
font-size: 28rpx;
font-size: 30rpx;
padding: 25rpx;
background-color: #f4f4f4;
border-radius: 5px;
......@@ -292,7 +290,7 @@ export default {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size: 28rpx;
font-size: 30rpx;
}
.Exam_Total {
font-size: 25rpx;
......@@ -315,9 +313,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -340,43 +337,29 @@ export default {
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
}
.input {
box-sizing: border-box;
width: 690rpx;
border-bottom: 2rpx solid #000;
color: #000;
font-size: 22rpx;
}
.textarea {
box-sizing: border-box;
padding: 20rpx 0;
.Exam_Score{
color:#999999;
font-size:28rpx;
}
/deep/.textarea-placeholder {
font-size: 20rpx;
font-family: PingFang SC;
font-weight: 500;
color: #cccccc;
}
</style>
......@@ -5,9 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,7 +27,7 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<template v-if="isOperate">
<view class="chooseName">
......@@ -177,7 +175,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -201,7 +199,7 @@ export default {
}
.AnswerContent {
font-size: 28rpx;
font-size: 30rpx;
padding: 25rpx;
background-color: #f4f4f4;
border-radius: 5px;
......@@ -210,7 +208,7 @@ export default {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size: 28rpx;
font-size: 30rpx;
}
.Single_Before {
......@@ -223,9 +221,8 @@ export default {
box-sizing: border-box;
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -233,11 +230,6 @@ export default {
margin-bottom: 40rpx;
}
.item1 {
margin: 25rpx 0;
align-items: center;
}
.item2 {
/* padding-left: 25rpx; */
margin: 30rpx 0;
......@@ -248,20 +240,6 @@ export default {
color: #ffffff !important;
}
.chooseNum {
width: 40rpx;
height: 40rpx;
text-align: center;
line-height: 40rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 24rpx;
font-family: PingFang SC;
......@@ -288,4 +266,8 @@ export default {
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -205,8 +205,8 @@ export default {
color: #111111;
}
.item1 {
width: 44rpx;
height: 44rpx;
width: 55rpx;
height: 55rpx;
border: 1px solid #e2e2e2;
border-radius: 50%;
margin: 22rpx;
......
......@@ -159,8 +159,8 @@ export default {
color: #111111;
}
.item1 {
width: 44rpx;
height: 44rpx;
width: 55rpx;
height: 55rpx;
border: 1px solid #e2e2e2;
border-radius: 50%;
margin: 22rpx;
......
......@@ -5,9 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,7 +27,7 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<template v-if="isOperate">
<view class="chooseName">
......@@ -186,7 +184,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -219,7 +217,7 @@ export default {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size:28rpx;
font-size:30rpx;
}
.Exam_Total {
......@@ -239,9 +237,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -263,20 +260,6 @@ export default {
color: #ffffff !important;
}
.chooseNum {
width: 40rpx;
height: 40rpx;
text-align: center;
line-height: 40rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
.chooseName {
font-size: 24rpx;
font-family: PingFang SC;
......@@ -303,4 +286,8 @@ export default {
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text>/<text
......@@ -19,7 +19,7 @@
<swiper-item v-for="(item1, index1) in data.DetailsList" :key="index1">
<view class="item1">
<view class="flex">
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view v-for="(item2, index2) in item1.QuestionContentObj" :key="index2"
class="flex item2 flex_start_center">
......@@ -181,7 +181,7 @@
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -195,7 +195,7 @@
}
.Single_Before {
font-size: 28rpx;
font-size: 30rpx;
font-weight: bold;
color: #da7878;
}
......@@ -210,7 +210,7 @@
.AnswerContent {
font-size: 30rpx;
padding: 28rpx;
padding: 30rpx;
background-color: #f4f4f4;
border-radius: 5px;
}
......@@ -226,9 +226,8 @@
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -251,10 +250,10 @@
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
......@@ -265,9 +264,13 @@
}
.chooseName {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 500;
color: #111111;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,9 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text
......@@ -29,7 +27,7 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<template v-if="isOperate">
<view class="chooseName">
......@@ -184,7 +182,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -219,10 +217,10 @@ export default {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size:28rpx;
font-size:30rpx;
}
.Single_Before {
font-size: 28rpx;
font-size: 30rpx;
font-weight: bold;
color: #da7878;
}
......@@ -233,9 +231,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -276,11 +273,12 @@ export default {
font-family: PingFang SC;
font-weight: 500;
color: #111111;
width:100%
}
.input {
box-sizing: border-box;
width: 690rpx;
width: 100%;
border-bottom: 2rpx solid #000;
color: #000;
font-size: 22rpx;
......@@ -297,4 +295,8 @@ export default {
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
<text class="Exam_Score">(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text>
</view>
<view class="ExamIndex_Box">
<text class="Single_Before">{{ ExamIndex }}</text>/<text
......@@ -20,7 +20,7 @@
<view class="item1">
<view class="flex">
<view class="num readTitle" :style="{ paddingBottom: `${questionH}rpx` }"
v-html="item1.Title"></view>{{item1.Score}}
v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<view class="questionBox" :style="{ height: `${questionH}rpx` }">
<view class="questionTotal" @touchstart="touchstart" @touchmove="touchmove"
......@@ -59,8 +59,8 @@
<!-- 填空 -->
<view class="flex flex_start_center item3"
v-if="item2.QuestionKey === 'fill-in'">
<view class="chooseNum">{{ index3 + 1 }} </view>
<input type="text" v-model="item3.Content"
<view style="margin-right:15rpx;">{{ index3 + 1 }} </view>
<input type="text" style="height:70rpx;" v-model="item3.Content"
class="chooseName chooseName2" placeholder="请填写答案"
@input="AnswerChange(item2)" />
</view>
......@@ -312,7 +312,7 @@
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -334,12 +334,6 @@
margin-right: 40rpx;
}
.Single_Before {
font-size: 28rpx;
font-weight: bold;
color: #da7878;
}
.Exam_Total {
font-size: 25rpx;
color: gray;
......@@ -352,9 +346,8 @@
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
box-sizing: border-box;
}
......@@ -365,7 +358,6 @@
.item1 {
height: 100%;
/* margin: 25rpx 0; */
align-items: center;
overflow-y: auto;
box-sizing: border-box;
......@@ -430,14 +422,14 @@
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
......@@ -470,4 +462,8 @@
border-radius: 10rpx;
font-size: 28rpx;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -5,7 +5,7 @@
<view class="name">
<view>
{{ changeNumToHan(sortIndex) }}{{ data.GroupName }}
<text style="color: #999999"
<text class="Exam_Score"
>(共{{ data.DetailsList.length }}道,{{ data.GScore }}分)</text
>
</view>
......@@ -29,7 +29,7 @@
<view class="item1">
<view class="flex">
<view>{{ index1 + 1 }}</view>
<view class="num" v-html="item1.Title"></view>{{item1.Score}}
<view class="num" v-html="item1.Title"></view><text class="Exam_Score">{{item1.Score}}</text>
</view>
<template v-if="isOperate">
<view class="chooseName">
......@@ -178,7 +178,7 @@ export default {
<style scoped>
.name {
height: 90rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: 800;
color: #111111;
......@@ -203,7 +203,7 @@ export default {
color: red !important;
}
.AnswerContent {
font-size: 28rpx;
font-size: 30rpx;
padding: 25rpx;
background-color: #f4f4f4;
border-radius: 5px;
......@@ -212,10 +212,10 @@ export default {
width: 100%;
border-bottom: 1px solid #d1d1d1;
padding-bottom: 5px;
font-size:28rpx;
font-size:30rpx;
}
.Single_Before {
font-size: 28rpx;
font-size: 30rpx;
font-weight: bold;
color: #da7878;
}
......@@ -226,9 +226,8 @@ export default {
}
.num {
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
}
......@@ -251,14 +250,14 @@ export default {
}
.chooseNum {
width: 40rpx;
height: 40rpx;
width: 50rpx;
height: 50rpx;
text-align: center;
line-height: 40rpx;
line-height: 50rpx;
border-radius: 50%;
border: 1px solid #e2e2e2;
margin-right: 30rpx;
font-size: 28rpx;
font-size: 30rpx;
font-family: PingFang SC;
font-weight: bold;
color: #111111;
......@@ -276,7 +275,7 @@ export default {
width: 690rpx;
border-bottom: 2rpx solid #000;
color: #000;
font-size: 22rpx;
font-size: 26rpx;
}
.textarea {
......@@ -290,4 +289,9 @@ export default {
font-weight: 500;
color: #cccccc;
}
.Exam_Score{
color:#999999;
font-size:28rpx;
}
</style>
......@@ -575,7 +575,6 @@ export default {
: new Date().getSeconds();
data.StartTime =
yy + "-" + mm + "-" + dd + " " + hh + ":" + mf + ":" + ss;
console.log(data.StartTime, "11111111111111");
});
return {
...toRefs(data),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment