|
@@ -79,7 +79,8 @@
|
|
|
<div class="zhedie">
|
|
|
<div v-if="list1 && list1.length > 0">
|
|
|
<div class="topTitle">
|
|
|
- <span>本课例句({{ list1.length }})</span>
|
|
|
+ <!-- 本课例句 -->
|
|
|
+ <span>{{ $t("Key668") }}({{ list1.length }})</span>
|
|
|
<span @click="handleChangeTab('wordShow')"
|
|
|
>{{ wordShow ? $t("Key531") : $t("Key530") }}
|
|
|
<img v-if="wordShow" src="../../assets/down-black.png" alt="" />
|
|
@@ -98,7 +99,7 @@
|
|
|
<div style="flex: 1">
|
|
|
<p v-html="item.res"></p>
|
|
|
<p class="p2">
|
|
|
- 来源:{{ item.source_courseware_name_path }}
|
|
|
+ {{ $t("Key666") }}:{{ item.source_courseware_name_path }}
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -107,7 +108,8 @@
|
|
|
</div>
|
|
|
<div v-if="list2 && list2.length > 0">
|
|
|
<div class="topTitle">
|
|
|
- <span>本书例句({{ list2.length }})</span>
|
|
|
+ <!-- 本书例句 -->
|
|
|
+ <span>{{ $t("Key669") }}({{ list2.length }})</span>
|
|
|
<span @click="handleChangeTab('wordShow2')"
|
|
|
>{{ wordShow2 ? $t("Key531") : $t("Key530") }}
|
|
|
<img
|
|
@@ -130,7 +132,7 @@
|
|
|
<div style="flex: 1">
|
|
|
<p v-html="item.res"></p>
|
|
|
<p class="p2">
|
|
|
- 来源:{{ item.source_courseware_name_path }}
|
|
|
+ {{ $t("Key666") }}:{{ item.source_courseware_name_path }}
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -139,7 +141,8 @@
|
|
|
</div>
|
|
|
<div v-if="list3 && list3.length > 0">
|
|
|
<div class="topTitle">
|
|
|
- <span>本套教材例句({{ list3.length }})</span>
|
|
|
+ <!-- Key667 本套教材例句 -->
|
|
|
+ <span>{{ $t("Key667") }}({{ list3.length }})</span>
|
|
|
<span @click="handleChangeTab('wordShow3')"
|
|
|
>{{ wordShow3 ? $t("Key531") : $t("Key530") }}
|
|
|
<img
|
|
@@ -162,7 +165,7 @@
|
|
|
<div style="flex: 1">
|
|
|
<p v-html="item.res"></p>
|
|
|
<p class="p2">
|
|
|
- 来源:{{ item.source_courseware_name_path }}
|
|
|
+ {{ $t("Key666") }}:{{ item.source_courseware_name_path }}
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -173,7 +176,9 @@
|
|
|
</div>
|
|
|
<div class="bottom" v-if="dictDetail">
|
|
|
<div class="from">
|
|
|
- 来自网易有道<img
|
|
|
+ <!-- Key670 来自网易有道-->
|
|
|
+ {{ $t("Key670")
|
|
|
+ }}<img
|
|
|
@click="closeWordShow"
|
|
|
src="../../assets/Cross-16-normal-Black.png"
|
|
|
alt=""
|
|
@@ -186,7 +191,8 @@
|
|
|
</p>
|
|
|
<div class="yinpin">
|
|
|
<div class="yinpin-box">
|
|
|
- <span>英 </span>
|
|
|
+ <!-- 英 -->
|
|
|
+ <span>{{ $t("Key671") }}</span>
|
|
|
<span v-if="dictDetail['uk-phonetic']">
|
|
|
/{{ dictDetail["uk-phonetic"] }}/</span
|
|
|
>
|
|
@@ -210,7 +216,8 @@
|
|
|
<audio id="Y" :src="dictDetail['uk-sound']"></audio>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <span>美 </span>
|
|
|
+ <!-- 美 -->
|
|
|
+ <span>{{ $t("Key672") }}</span>
|
|
|
<span v-if="dictDetail['us-phonetic']">
|
|
|
/{{ dictDetail["us-phonetic"] }}/</span
|
|
|
>
|
|
@@ -315,7 +322,9 @@ export default {
|
|
|
// 上一个单词详情
|
|
|
lastDetail() {
|
|
|
if (this.detailIndex == 0) {
|
|
|
- this.$message.warning("当前已经是第一个");
|
|
|
+ // this.$message.warning("当前已经是第一个");
|
|
|
+ this.$message.warning(this.$t("Key665"));
|
|
|
+
|
|
|
return;
|
|
|
}
|
|
|
this.changeDetailIndex("last");
|
|
@@ -323,7 +332,9 @@ export default {
|
|
|
// 下一个单词详情
|
|
|
nextDetail() {
|
|
|
if (this.detailIndex == this.curQue.option.length - 1) {
|
|
|
- this.$message.warning("当前已经是最后一个了 ");
|
|
|
+ // this.$message.warning("当前已经是最后一个了 ");
|
|
|
+ this.$message.warning(this.$t("Key664"));
|
|
|
+
|
|
|
return;
|
|
|
}
|
|
|
this.changeDetailIndex("next");
|