parent
f25c84d5e8
commit
8dc7062136
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"rich-md": "/markdown/components/rich-md/rich-md"
|
"rich-md": "/markdown/components/rich-md/rich-md"
|
||||||
}
|
},
|
||||||
|
"navigationBarTitleText": "关于EduCoder"
|
||||||
}
|
}
|
@ -1,10 +1,15 @@
|
|||||||
@import "../question-common.wxss";
|
@import "../question-common.wxss";
|
||||||
|
|
||||||
|
.input-wrp{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
.main-input{
|
.main-input{
|
||||||
height: 180rpx;
|
height: 180rpx;
|
||||||
margin: 18rpx 0 4rpx 18rpx;
|
margin: 18rpx 0 4rpx 18rpx;
|
||||||
border: 1rpx solid lightgray;
|
border: 1rpx solid lightgray;
|
||||||
border-radius: 12rpx;
|
border-radius: 12rpx;
|
||||||
padding: 12rpx 10rpx;
|
padding: 12rpx 10rpx;
|
||||||
|
flex: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<view class="question">
|
<view class="question">
|
||||||
<view class="index hint"><text class="gap">第{{data.q_position}}题</text><text class="ques-score">{{data.question_score}}分</text></view>
|
<view class="index hint"><text class="gap">第{{data.q_position}}题</text><text class="ques-score">{{data.question_score}}分</text></view>
|
||||||
<rich-md c-class="title" nodes="{{data.question_title}}"/>
|
<view class="shixun-detail">
|
||||||
<view class="shixun-detail">
|
|
||||||
<button class="button-shixun" size="mini" type="main" plain bindtap="enterShixun">进入该实训</button>
|
|
||||||
<view>{{data.shixun_name}}</view>
|
<view>{{data.shixun_name}}</view>
|
||||||
|
<button class="button-shixun" size="mini" type="secondary" bindtap="enterShixun">进入该实训</button>
|
||||||
</view>
|
</view>
|
||||||
|
<rich-md c-class="title" nodes="{{data.question_title}}"/>
|
||||||
<view class="outcome" wx:if="{{data.user_score}}">
|
<view class="outcome" wx:if="{{data.user_score}}">
|
||||||
得分:<text class="score-num">{{data.user_score}}</text><text class="gap">/{{data.question_score}}</text>
|
得分:<text class="score-num">{{data.user_score}}</text><text class="gap">/{{data.question_score}}</text>
|
||||||
</view>
|
</view>
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
{
|
{
|
||||||
"component": true,
|
"component": true,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
"rich-md":"/components/rich-md/rich-md"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in new issue