|
@@ -1,32 +1,29 @@
|
|
|
<template>
|
|
|
- <view class="icon-title-navBar-box">
|
|
|
- <view @click="handleBack" class="nav-bar-icon"></view>
|
|
|
- <text class="nav-bar-title">单词详解</text>
|
|
|
- </view>
|
|
|
- <view>
|
|
|
- <view>
|
|
|
- {{pageInfo.name}}
|
|
|
- </view>
|
|
|
- <view>
|
|
|
- <text>
|
|
|
- 通用释义
|
|
|
- </text>
|
|
|
- <text v-for="(item,index) in pageInfo.xiangyi" :key="index">
|
|
|
- <text>
|
|
|
- {{item}}
|
|
|
- </text>
|
|
|
- </text>
|
|
|
+ <view class="word-view-page words-details-page">
|
|
|
+ <view class="icon-title-navBar-box">
|
|
|
+ <view @click="handleBack" class="nav-bar-icon"></view>
|
|
|
+ <text class="nav-bar-title">单词详解</text>
|
|
|
</view>
|
|
|
- <view>
|
|
|
- <text>
|
|
|
- 实用口语
|
|
|
- </text>
|
|
|
- <text v-for="(item,index) in pageInfo.kouyu" :key="index">
|
|
|
- <text>
|
|
|
- {{item.en}}
|
|
|
- {{item.zn}}
|
|
|
- </text>
|
|
|
- </text>
|
|
|
+ <view class="ezy-tab-border words-details-body">
|
|
|
+ <view class="ezy-border-body ">
|
|
|
+ <view class="details-word">{{pageInfo.name}}</view>
|
|
|
+ <view class="details-content-box">
|
|
|
+ <text class="details-title">通用释义</text>
|
|
|
+ <view class="tysy-content" v-for="(item,index) in pageInfo.xiangyi" :key="index">{{item}}</view>
|
|
|
+ </view>
|
|
|
+ <view class="details-content-box">
|
|
|
+ <text class="details-title">实用口语</text>
|
|
|
+ <view v-for="(item,index) in pageInfo.kouyu" :key="index" class="syky-content">
|
|
|
+ <view class="details-en-content">
|
|
|
+ <text>{{item.en}}</text>
|
|
|
+ <!-- 变色 word-color-->
|
|
|
+ <!-- <text class="word-color">{{item.en}}</text>
|
|
|
+ <text>{{item.en}}</text> -->
|
|
|
+ </view>
|
|
|
+ <view class="details-cn-content">{{item.zn}}</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</template>
|