fix: 修复评论图片样式及更新API调用方式
调整评论图片的样式,添加滚动和间距 将多个API调用从Http.post更新为Http.postV2 修复DetailsArea组件中的变量名错误 启用ismyself状态检查
This commit is contained in:
@@ -11,8 +11,8 @@
|
||||
<div class="label flexflex" v-if="sectionn?.length || tags?.length || topicInfo.recommend == 1 || topicInfo.best == 1">
|
||||
<img class="item icon" v-if="topicInfo.recommend == 1" src="@/assets/img/recommend-icon.png" />
|
||||
<img class="item icon" v-if="topicInfo.best == 1" src="@/assets/img/essence-icon.png" />
|
||||
<a class="item blue" v-for="(item, index) in sectionn" :key="item" :href="`https://f.gter.net/section/${item.uniqid}`" target="_blank">{{ item.name }}</a>
|
||||
<a class="item" v-for="(item, index) in tags" :key="item" :href="`https://f.gter.net/tag/${item}?type=vote`" target="_blank">{{ item }}</a>
|
||||
<a class="item blue" v-for="item in sectionn" :key="item" :href="`https://f.gter.net/section/${item.uniqid}`" target="_blank">{{ item.name }}</a>
|
||||
<a class="item" v-for="item in tags" :key="item" :href="`https://f.gter.net/tag/${item}?type=vote`" target="_blank">{{ item }}</a>
|
||||
</div>
|
||||
<div class="flexacenter" style="position: relative;">
|
||||
<div class="flex1">{{ info.title }}</div>
|
||||
@@ -498,7 +498,7 @@ const getTopicDetail = (uniqid) => {
|
||||
|
||||
topicInfo.value = targetInfo;
|
||||
|
||||
// ismyself.value = data.ismyself;
|
||||
ismyself.value = data.ismyself;
|
||||
|
||||
|
||||
if (data.islogin) getTopicOperation();
|
||||
|
||||
Reference in New Issue
Block a user