36 lines
890 B
Plaintext
36 lines
890 B
Plaintext
<!-- 材料头部 -->
|
|
<view class="exammakingshead">
|
|
<view class="headleft">
|
|
<text>{{currentdata.title}}</text>
|
|
</view>
|
|
<view class="headright">
|
|
<text>{{active+1}}/{{all}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 材料头部 -->
|
|
<!-- 材料标签 -->
|
|
<view>
|
|
<van-tabs swipeable active="{{ active }}" bind:change="onChange">
|
|
|
|
<van-tab title="材料{{item.mindex}}" title-style="color:block" wx:for="{{listdata}}" wx:for-index="index" wx:key="index">
|
|
<view class="makingscontent">
|
|
<text>
|
|
{{item.namecontents}}
|
|
</text>
|
|
</view>
|
|
</van-tab>
|
|
</van-tabs>
|
|
</view>
|
|
<!-- 材料标签 -->
|
|
<!-- 材料底部 -->
|
|
<view class="makingsfooter" bindtap="clickm" id="{{grouppaper_id}}">
|
|
<view class="footerleft">
|
|
<text>材料</text>
|
|
</view>
|
|
|
|
<view class="footerright" bindtap="clickanswer" id="{{grouppaper_id}}">
|
|
<text>问题</text>
|
|
</view>
|
|
</view>
|
|
<!-- 材料底部 --> |