You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zhishifufei_php/public/wap/first/zsff/components/recommend/problem/index.html

22 lines
706 B

10 months ago
<div class="recommend-problem">
<div>
{{ obj.title }}
<a :href="obj.urlCategory + '?type=1'">
查看更多<span class="iconfont iconxiangyou"></span>
</a>
</div>
<ul>
<li v-for="item in obj.list" :key="item.id">
<a :href="obj.url + '?id=' + item.id">
<div>{{ item.title }}</div>
<div>
共{{ item.item_number }}题
<div>{{ item.count }}人已答题</div>
<div>
<img :src="obj.source_url + 'zsff/images/question08.png'">练习
</div>
</div>
</a>
</li>
</ul>
</div>