|
@@ -10,7 +10,7 @@
|
|
|
<!-- 笔画学习 -->
|
|
|
<div :class="['words-box', 'words-box-' + data.property.learn_type]">
|
|
|
<div v-for="(item, index) in data.option_list" :key="index" :class="['words-item']">
|
|
|
- <template v-if="item.content && item.content.trim()">
|
|
|
+ <template v-if="item.content && item.content.trim() && item.strokes">
|
|
|
<div
|
|
|
v-if="data.property.learn_type !== 'learn'"
|
|
|
class="words-top"
|
|
@@ -25,7 +25,7 @@
|
|
|
<AudioPlay :file-id="item.audio_file_id" theme-color="gray" />
|
|
|
<span class="pinyin">{{ item.pinyin }}</span>
|
|
|
</div>
|
|
|
- <p class="words-right">{{ item.definition }}</p>
|
|
|
+ <p class="words-right">{{ item.definition + ' ' + item.collocation }}</p>
|
|
|
</div>
|
|
|
<template v-if="data.property.learn_type === 'paint'">
|
|
|
<!-- 描红 -->
|