[更新发现]

This commit is contained in:
zhangmanman
2022-01-13 13:56:32 +08:00
parent 9af54bc24a
commit c82f40ee09
27 changed files with 1274 additions and 295 deletions

View File

@@ -1,46 +1,61 @@
<template>
<view class="content">
<view class="head">
坚持做瑜伽可以减肥吗?
</view>
<view class="source">
<image class="logo" src="/static/icon/sign-icon.png" mode="aspectFill"></image>
<view class="title">
<view class="name">
ZH大健康
<view class="backCont">
<image class="img" :src="topicData.cover" mode="aspectFill"></image>
<view class="head">
<view class="ellipsis title">
{{ topicData.name }}
</view>
<view class="text">
ZH大健康官方账号
<view class="tips" v-if="topicData.category">
# 话题 -- {{ topicData.category.name }} #
</view>
</view>
</view>
<view class="brief">
提到骨质疏松大家的第一反应估计就是补钙骨质疏松是一种悄无声息的疾病大多数患者在早期没有症状随着骨质的逐步流失逐渐会有全身关节疼痛甚至稍有不慎便摔成骨折
骨质疏松是一种以低骨量和骨组织微结构破坏为特征导致骨质脆性增加和易于骨折的全身性骨代谢性疾病常见于老年人但各年龄时期都可以发病
一般的症状包括腰背疼痛身高下降驼背以及骨折发生等但事实上在这些症状发生之前骨量已经大量流失骨质疏松也早已开始了
一旦发生骨质疏松性骨折危害巨大特别是股骨颈等部位发生的骨折会给患者带来严重的疼痛高额医疗支出致残失能等
严重影响生活质量的同时给家庭也造成巨大的负担并且会缩短患者寿命因而骨质疏松性骨折常被称为人生的最后一次骨折提到骨质疏松大家的第一反应估计就是补钙骨质疏松是一种悄无声息的疾病大多数患者在早期没有症状随着骨质的逐步流失逐渐会有全身关节疼痛甚至稍有不慎便摔成骨折
骨质疏松是一种以低骨量和骨组织微结构破坏为特征导致骨质脆性增加和易于骨折的全身性骨代谢性疾病常见于老年人但各年龄时期都可以发病
一般的症状包括腰背疼痛身高下降驼背以及骨折发生等但事实上在这些症状发生之前骨量已经大量流失骨质疏松也早已开始了
一旦发生骨质疏松性骨折危害巨大特别是股骨颈等部位发生的骨折会给患者带来严重的疼痛高额医疗支出致残失能等
严重影响生活质量的同时给家庭也造成巨大的负担并且会缩短患者寿命因而骨质疏松性骨折常被称为人生的最后一次骨折
</view>
<view class="goods">
<view class="title">
相关商品
</view>
<view class="item">
<image class="item-cover" src="http://api.zh.shangkelian.cn/storage/images/2022/01/06/fc143605e2a1557989e96652d990579f.png" mode="aspectFill"></image>
<view class="item-title">
<view class="nowrap item-name">
黑果枸杞
<view class="ellipsis text">
{{ topicData.description }}
</view>
<view class="tool">
<view class="tool-see">
<text>{{ topicData.clicks }} 人游览</text>
<text>{{ topicData.favorites }} 人点赞</text>
</view>
<view class="item-price">
99.00
<view class="tool-btn" :class="{active : isFavorite}" @click="thumbClick(topicData.topic_id)">
<u-icon name="thumb-up-fill" :color="isFavorite ? '#333': '#fff'" size="17" style="margin-right: 5rpx;"></u-icon>
{{ isFavorite ? '已赞' : '点赞' }}
</view>
</view>
<view class="item-btn">
查看商品
</view>
<view class="brief">
<view class="source">
<image class="source-logo" src="/static/find/logo.png" mode="aspectFill"></image>
<view class="source-title">
<view class="source-name">
{{ topicData.author }}
</view>
<view class="source-text">
ZH大健康官方账号
</view>
</view>
</view>
<view class="brief-text">
<rich-text :nodes="topicContent"></rich-text>
</view>
<view class="goods" v-if="goodsArr.length > 0">
<view class="title">
相关商品
</view>
<view class="item" v-for="(item, index) in goodsArr" :key="index">
<image class="item-cover" src="http://api.zh.shangkelian.cn/storage/images/2022/01/06/fc143605e2a1557989e96652d990579f.png" mode="aspectFill"></image>
<view class="item-title">
<view class="nowrap item-name">
{{ item.name }}
</view>
<view class="item-price">
{{ item.price }}
</view>
</view>
<view class="item-btn">
查看商品
</view>
</view>
</view>
</view>
</view>
@@ -48,59 +63,164 @@
</template>
<script>
import { topicDet, topicThumb } from '@/apis/interfaces/topic'
export default {
data() {
return {
topicData : '',
goodsArr : [],
topicContent: '',
isFavorite : ''
}
},
onLoad() {},
mounted() {
this.getRank()
},
methods: {
// 详情
getRank(){
topicDet(this.$Route.query.id).then(res => {
this.topicData = res
this.goodsArr = res.goods
this.isFavorite = res.is_favorite
this.topicContent = res.content.replace(/\<img/gi, '<img style="max-width:100%;height:auto;display:block;"')
})
},
// 点赞
thumbClick(id) {
topicThumb(id).then(res => {
this.isFavorite = !this.isFavorite
})
}
}
};
</script>
<style lang="scss" scoped>
page {
padding: $padding;
box-sizing: border-box;
background: $window-color;
}
.head {
font-size: $title-size + 4;
font-weight: bold;
}
.source {
margin: $margin 0;
.backCont {
position: relative;
.logo {
width: 58rpx;
height: 58rpx;
border-radius: 50%;
margin-top: $margin - 22;
width: 100vw;
padding-top: 75%;
&::after {
position: absolute;
content: '';
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 2;
background-color: rgba($color: #000000, $alpha: .35);
}
.title {
.img {
position: absolute;
left: 0;
top: 0;
width: 100%;
padding-left: 74rpx;
font-size: $title-size-sm;
.name {
margin-bottom: $margin - 25;
height: 100%;
z-index: 1;
filter: blur(10rpx);
overflow: hidden;
}
.head {
padding: $padding * 2 $padding + 30 0;
color: white;
box-sizing: border-box;
position: absolute;
left: 0;
top: 0;
width: 100%;
z-index: 9;
.title {
font-size: $title-size + 8;
margin-bottom: $margin - 10;
height: 100rpx;
font-weight: 600;
}
.tips {
margin-bottom: $margin + 20;
}
.text {
font-size: $title-size-sm - 4;
color: $text-gray-m;
margin: $margin 0 $margin + 10;
line-height: 48rpx;
height: 100rpx;
font-size: $title-size-lg;
}
.tool {
width: 100%;
font-size: $title-size-m;
display: flex;
line-height: 48rpx;
.tool-see {
flex: 1;
text {
padding-right: $padding;
}
}
.tool-btn {
border: 2rpx solid white;
border-radius: $radius * 2;
font-size: $title-size-sm;
padding: 0 $padding - 5;
line-height: 48rpx;
display: flex;
&.active {
background-color: white;
color: $text-color;
}
}
}
}
}
.brief {
line-height: 48rpx;
font-size: $title-size-m;
color: $text-color;
position: absolute;
top: 90%;
width: 100%;
z-index: 10;
background-color: white;
border-radius: $radius * 3 $radius * 3 0 0;
padding: $padding;
box-sizing: border-box;
.brief-text {
margin: $margin 0;
line-height: 48rpx;
font-size: $title-size-lg;
color: $text-color;
padding: 0 $padding - 20;
box-sizing: border-box;
}
.source {
position: relative;
.source-logo {
width: 70rpx;
height: 70rpx;
border-radius: 50%;
margin-top: $margin - 24;
}
.source-title {
position: absolute;
left: 0;
top: 0;
width: 100%;
padding-left: 90rpx;
box-sizing: border-box;
font-size: $title-size-lg;
.source-name {
font-weight: 600;
margin-bottom: $margin - 25;
}
.source-text {
line-height: 48rpx;
font-size: $title-size-m;
color: $text-gray-m;
}
}
}
}
.goods {
@@ -115,6 +235,7 @@
background: #f5fdfa;
border-radius: $radius;
padding: $padding;
box-sizing: border-box;
.item-cover {
width: 120rpx;
height: 90rpx;