| | |
| | | <text>{{item.number}}.</text> |
| | | <!-- 仅文字 --> |
| | | <view |
| | | class="title-content" |
| | | wx:if="{{item.stemStyle == 'Txt' && item.questionType != 'completion'}}" |
| | | >{{item.stem.stemTxt}}</view |
| | | > |
| | | <!-- 仅图片 --> |
| | | <view wx:elif="{{item.stemStyle == 'Image'}}"> |
| | | <t-image src="{{item.stem.stemImage}}" /> |
| | | <view wx:elif="{{item.stemStyle == 'Image'}}" class="title-content"> |
| | | <image src="{{item.stem.stemImage}}" mode="aspectFit" /> |
| | | </view> |
| | | <!-- 图片加文字 --> |
| | | <view |
| | | wx:elif="{{item.stemStyle == 'TxtAndImage'}}" |
| | | class="title-TxtAndImage" |
| | | class="title-content" |
| | | > |
| | | <text>{{item.stem.stemTxt}}</text> |
| | | <t-image src="{{item.stem.stemImage}}" /> |
| | | <view>{{item.stem.stemTxt}}</view> |
| | | <image src="{{item.stem.stemImage}}" mode="aspectFit" /> |
| | | </view> |
| | | <!-- 富文本 --> |
| | | <view |
| | | wx:elif="{{item.stemStyle == 'RichText'}} " |
| | | class="title-RichText" |
| | | > |
| | | <rich-text |
| | | nodes="{{item.stem.stemTxt}}" |
| | | style="height: 100%" |
| | | ></rich-text> |
| | | <view wx:elif="{{item.stemStyle == 'RichText'}} " class="title-content"> |
| | | <mp-html content="{{item.stem.stemTxt}}" /> |
| | | </view> |
| | | <!-- 填空题 --> |
| | | <view wx:if="{{item.questionType == 'completion'}}"> |
| | |
| | | <!-- 仅图片 --> |
| | | <view wx:if="{{item.optionStyle == 'Image'}}" class="fl-center"> |
| | | <text>{{contentItem.value}}、</text> |
| | | <t-image src="{{contentItem.img}}" /> |
| | | <image src="{{contentItem.img}}" mode="aspectFit" /> |
| | | </view> |
| | | <!-- 文字加图片 --> |
| | | <view |
| | |
| | | class="fl-center" |
| | | > |
| | | <text>{{contentItem.value}}、</text> |
| | | <text>{{contentItem.txt}}</text> |
| | | <t-image src="{{contentItem.img}}" /> |
| | | <text class="radio-textimg">{{contentItem.txt}}</text> |
| | | |
| | | <image src="{{contentItem.img}}" mode="aspectFit" /> |
| | | </view> |
| | | <!-- 富文本 --> |
| | | <view |
| | |
| | | <t-checkbox |
| | | block="{{false}}" |
| | | value="{{contentItem.value}}" |
| | | style="background-color:{{isNight ? '#222' :'#fff'}}; " |
| | | style="background-color:{{isNight ? '#222' :'#fff'}}; display: flex; align-items: center;" |
| | | > |
| | | <!-- 仅文字 --> |
| | | <text |
| | |
| | | style="color:{{ isNight ? '#fff' : '#000'}};font-size:{{sliderValue || 32}}rpx;" |
| | | >{{contentItem.value}}、</text |
| | | > |
| | | <t-image src="{{contentItem.img}}" /> |
| | | <image src="{{contentItem.img}}" mode="aspectFit" /> |
| | | </view> |
| | | <!-- 文字加图片 --> |
| | | <view |
| | |
| | | style="color:{{ isNight ? '#fff' : '#000'}};font-size:{{sliderValue || 32}}rpx;" |
| | | >{{contentItem.txt}}</text |
| | | > |
| | | <t-image src="{{contentItem.img}}" /> |
| | | <image |
| | | src="{{contentItem.img}}" |
| | | wx:if="{{contentItem.img}}" |
| | | mode="aspectFit" |
| | | /> |
| | | </view> |
| | | <!-- 富文本 --> |
| | | <view wx:if="{{item.optionStyle == 'RichText'}}"> |
| | | <view |
| | | wx:if="{{item.optionStyle == 'RichText'}}" |
| | | class="check-rich-box" |
| | | > |
| | | <text>{{contentItem.value}}、</text> |
| | | <rich-text |
| | | nodes="{{contentItem.txt}}" |