12 lines
567 B
Plaintext
12 lines
567 B
Plaintext
<view class="policyList">
|
|
<view class="policy-item" wx:for="{{forumList}}" wx:key="item" data-id="{{item.id}}" bindtap="bindPolicyList">
|
|
<van-cell-group>
|
|
<van-cell title="课程" value="{{item.classes}}" />
|
|
<van-cell title="成绩" value="{{item.grade}}" />
|
|
<van-cell title="学分" value="{{item.credits}}" />
|
|
<van-cell title="绩点" value="{{item.point}}" />
|
|
</van-cell-group>
|
|
</view>
|
|
<!-- 到底提示 -->
|
|
<view class="noMore" wx:if="{{noMore}}">到底了哟~~~</view>
|
|
</view> |