12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <template>
- <view>
- <selectTypesVue activeSelect="3"></selectTypesVue>
- <view class="words-xuan-box">
- <!-- 单词区 -->
- <view class="show-words-box"> {{activeWord.name}} </view>
- <!-- 音标区 -->
- <view class="yb-play-box">
- <text>{{activeWord.yinbiao}}</text>
- <!-- active -->
-
- <icon class="yb-play-btn"></icon>
- <icon class="yb-playing-btn" v-if="false"></icon>
- </view>
-
- <view style="text-align: center;">
- <text v-if="activeWord.jianyi&&activeWord.jianyi.length>0" v-for="(item,index) in activeWord.jianyi" :key="index">
- {{item}}
- </text>
- </view>
-
- <view>
- <view class="audio-play-btn"></view>
- <!-- 播放中 -->
- <view class="audio-playing-btn" v-if="false"></view>
- </view>
-
- </view>
- </view>
- </template>
- <script setup>
- import selectWordsVue from './selectWords.vue';
- import selectTypesVue from './selectTypes.vue';
- import {
- reactive,
- ref,
- onMounted
- } from 'vue';
- const props = defineProps({
- activeWord: {
- type: Object,
- },
- pageData: {
- type: Object,
- },
- activeWords: {
- type: Array
- },
- })
- let tabFlag = ref(1)
- const audioInfo = ref(null)
- onMounted(() => {
- })
- </script>
- <style>
- </style>
|