|
@@ -24,9 +24,9 @@
|
|
|
<template v-else>
|
|
|
<div class="report-research">
|
|
|
<div style="display: flex">
|
|
|
- <img :src="reportInfo.DepartmentImgUrl" />
|
|
|
+ <img :src="reportInfo.DepartmentImgUrl" @click="goAuthorPages" />
|
|
|
<div class="research-author">
|
|
|
- <p>{{ reportInfo.SellerAndMobile }}</p>
|
|
|
+ <p @click="goAuthorPages" >{{ reportInfo.SellerAndMobile }}</p>
|
|
|
<p class="time">{{ reportInfo.PublishDate }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -150,6 +150,12 @@ const userIsShowFreeButton = async () => {
|
|
|
isShowFreeBtn.value = res.Data.IsShow
|
|
|
}
|
|
|
}
|
|
|
+// 跳转到作者页面
|
|
|
+const goAuthorPages = () => {
|
|
|
+ wx.miniProgram.navigateTo({
|
|
|
+ url: "/reportPages/authorPages/authorPages?id=" + state.reportInfo.DepartmentId,
|
|
|
+ });
|
|
|
+}
|
|
|
const downloadFile = async () => {
|
|
|
Toast.loading({
|
|
|
message: "下载中...",
|