|
|
@@ -1362,7 +1362,9 @@
|
|
|
: '',
|
|
|
}"
|
|
|
>
|
|
|
- {{ item.pinyin.split(' ')[indexh] ? item.pinyin.split(' ')[indexh] : ' ' }}
|
|
|
+ {{
|
|
|
+ item.pinyin.trim().split(' ')[indexh] ? item.pinyin.trim().split(' ')[indexh] : ' '
|
|
|
+ }}
|
|
|
</p>
|
|
|
<Strockplay
|
|
|
v-if="itemh.hzDetail.hz_json"
|
|
|
@@ -1908,7 +1910,7 @@ export default {
|
|
|
// }
|
|
|
let flag = false;
|
|
|
if (item.pinyin) {
|
|
|
- flag = item.pinyin.split(' ').length === item.new_word.length;
|
|
|
+ flag = item.pinyin.trim().split(' ').length === item.new_word.length;
|
|
|
}
|
|
|
this.$set(item, 'show_left', true);
|
|
|
this.$set(item, 'isFlipped', false);
|