examintext.vue
2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<template>
<view class="content">
<view class="texttitle">
3.老人每天综合摄入食盐量最好控制在( )克以
下(多选)
</view>
<view class="textlist">
<view class='textitem flex'>
<view class="textitemleft">
<image src="../../static/meisel.png" mode=""></image>
</view>
<view class="textitemright">
A、6
</view>
</view>
<view class='textitem flex selright'>
<view class="textitemleft">
<image src="../../static/selright.png" mode=""></image>
</view>
<view class="textitemright">
A、6
</view>
</view>
<view class='textitem flextwo selwrong'>
<view class="flex">
<view class="textitemleft">
<image src="../../static/slewrong.png" mode=""></image>
</view>
<view class="textitemright">
A、6
</view>
</view>
<view class="wrongimg">
<image src="../../static/wrong.png" mode=""></image>
</view>
</view>
<view class='textitem flexone'>
<view class="textitemleft">
<image src="../../static/meisel.png" mode=""></image>
</view>
<view class="textitemright">
A、6
</view>
</view>
</view>
<view class="huiyuanbot boxsizing" >
<view class="behuiyuanbtn">确认</view>
</view>
</view>
</template>
<script>
</script>
<style>
page{
padding: 38rpx 32rpx;
box-sizing: border-box;
}
.texttitle{
color:#06121F;
font-size: 32rpx;
}
.textlist{
margin-top:32rpx;
border-top:1rpx solid #f5f5f5;
}
.textitem{
padding: 16rpx 32rpx;
box-sizing: border-box;
border:2rpx solid rgba(238,238,238,1);
margin-bottom:16rpx;
}
.selright{
background: #FEF0D7;
}
.textitemleft{
width:48rpx;
height:48rpx;
font-size: 0;
}
.textitemright{
color:#06121F;
font-size: 32rpx;
margin-left:16rpx;
}
.wrongimg{
width:28rpx;
height:28rpx;
font-size: 0;
}
.selwrong{
background: #FFE0DB;
}
.behuiyuanbtn{
width:686rpx;
height:88rpx;
background: #C29445;
color:#fff;
font-size: 32rpx;
text-align: center;
line-height: 88rpx;
border-radius: 10rpx;
}
.huiyuanbot{
position:fixed;
background: #fff;
bottom:100rpx;
left:0;
width:750rpx;
height:116rpx;
padding: 14rpx 32rpx;
}
</style>