This commit is contained in:
liuyuan
2025-03-10 15:26:34 +08:00
parent 6e36d6d957
commit a7cc147375
4 changed files with 28 additions and 9 deletions

View File

@@ -23,6 +23,15 @@
"Payment" : {}, "Payment" : {},
"Share" : {} "Share" : {}
}, },
"privacy" : {
"prompt" : "template",
"template" : {
"title" : "用户协议和隐私政策",
"message" : "请你务必审慎阅读、充分理解“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/>  你可阅读<a href='https://soulspace.taihumed.com/agreement.html'>《用户协议》</a>和<a href='https://soulspace.taihumed.com/privacy.html'>《隐私协议》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
"buttonAccept" : "同意",
"buttonRefuse" : "暂不同意"
}
},
/* */ /* */
"distribute" : { "distribute" : {
/* android */ /* android */

View File

@@ -456,6 +456,7 @@ export default {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
overflow: hidden;
} }
.list_item_image image{ .list_item_image image{
width: 100%; width: 100%;

View File

@@ -30,10 +30,19 @@
</view> </view>
<view class="containerBg" v-if="curriculumData.content && curriculumData.content != ''"> <view class="containerBg" v-if="curriculumData.content && curriculumData.content != ''">
<view class="prof"> <view class="prof">
<view style="padding: 0 20rpx" @click="isHideCourseInfo = !isHideCourseInfo"> <view style="padding: 0 20rpx; position: relative;">
<view :class="`${isHideCourseInfo ? 'hidden2' : ''}`" <view :class="`${isHideCourseInfo ? 'hidden2' : ''}`" v-html="curriculumData.content">
style="width: calc(100% - 50rpx)" v-html="curriculumData.content">
</view> </view>
<br/>
<text @click="isHideCourseInfo = !isHideCourseInfo" style="
font-size: 24rpx;
position: absolute;
bottom: 0;
right: 20rpx;
color: #838588;
">
{{ isHideCourseInfo ? "展开" : "收起" }}
</text>
</view> </view>
</view> </view>
</view> </view>
@@ -181,7 +190,7 @@
}, },
data() { data() {
return { return {
isHideCourseInfo: true, isHideCourseInfo: false,
courseList: [], courseList: [],
showGoBuy: true, showGoBuy: true,
protocolShow: false, protocolShow: false,
@@ -1258,7 +1267,7 @@
.prof { .prof {
font-size: 26rpx; font-size: 26rpx;
line-height: 50rpx; line-height: 24px;
padding-bottom: 10rpx; padding-bottom: 10rpx;
color: #333; color: #333;
} }
@@ -1324,8 +1333,8 @@
height: 50rpx; height: 50rpx;
} }
.hidden2{ .hidden2{
line-height: 20px; line-height: 24px;
max-height: 40px; max-height: 48px;
height: auto; height: auto;
} }
</style> </style>

View File

@@ -549,14 +549,14 @@ export default {
width: 100%; width: 100%;
.learning_item{ .learning_item{
width: 49%; width: 326rpx;
margin-bottom: 20rpx; margin-bottom: 20rpx;
.book_image{ .book_image{
background-color: rgba(125, 193, 240, 0.15); background-color: rgba(125, 193, 240, 0.15);
display: block; display: block;
width: 100% !important; width: 100% !important;
height: 168rpx; height: 170rpx;
} }
} }
} }