internalDetials.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <script setup>
  2. import { ref, onMounted } from "vue";
  3. import { useRoute } from "vue-router";
  4. import { inrernalApi } from "@/api/cygx/api.js";
  5. import dlg from "./dlg.vue";
  6. import { Icon, Dialog, Toast } from "vant";
  7. const VanDialog = Dialog.Component;
  8. // 路由
  9. const route = useRoute();
  10. // 免责声明弹框
  11. const showTips = ref(false);
  12. // 数据的初始
  13. const reportDetail = ref({});
  14. // 文字的ID
  15. const reportId = ref(0);
  16. const isBinding = ref(true);
  17. const disclaimers = ref("");
  18. // 获取数据
  19. const reportSelectionDetail = async () => {
  20. const res = await inrernalApi.getProductInteriorDetail({
  21. ProductInteriorId: reportId.value,
  22. });
  23. if (res.Ret === 200) {
  24. reportDetail.value = res.Data.Detail;
  25. document.title = reportDetail.value.ColumnName;
  26. disclaimers.value = res.Data.Disclaimers;
  27. }
  28. };
  29. // 获取标签
  30. const addLinkClickListeners = () => {
  31. // 获取所有的A标签
  32. const linkElements = document.querySelectorAll("a");
  33. linkElements.forEach((linkElement) => {
  34. linkElement.addEventListener("click", handleLinkClick);
  35. });
  36. // 获取所有的img标签
  37. const imageElements = document.querySelectorAll("img");
  38. imageElements.forEach((imageElement) => {
  39. imageElement.addEventListener("click", handleImageClick);
  40. });
  41. };
  42. let showDlg = ref(false);
  43. let showLink = ref({});
  44. // 处理a标签的点击事件
  45. const handleLinkClick = (event) => {
  46. event.preventDefault();
  47. const linkHref = event.target.innerText;
  48. if (!linkHref) return;
  49. const number = linkHref.match(/\d+$/)[0];
  50. const routerToItem = reportDetail.value.BodySlice.find((item) => number == item.SourceId);
  51. switch (routerToItem.Type) {
  52. case 2:
  53. wx.miniProgram.navigateTo({
  54. url: "/pageMy/reportDetail/reportDetail?id=" + routerToItem.SourceId,
  55. });
  56. break;
  57. case 3:
  58. wx.miniProgram.navigateTo({
  59. url: "/activityPages/activityDetail/activityDetail?id=" + routerToItem.SourceId,
  60. });
  61. break;
  62. case 4:
  63. wx.miniProgram.navigateTo({
  64. url: "/reportPages/IndustryReport/IndustryReport?id=" + routerToItem.SourceId,
  65. });
  66. break;
  67. case 5:
  68. showDlg.value = true;
  69. showLink.value = routerToItem;
  70. console.log(showLink.value);
  71. voiceHistory();
  72. break;
  73. default:
  74. "";
  75. }
  76. };
  77. const pleaseGoLogin = () => {
  78. Dialog.alert({
  79. message: "即将前往登录页面,请确认是否继续",
  80. showCancelButton: true,
  81. confirmButtonColor: "#3385ff",
  82. }).then((res) => {
  83. if (res == "confirm") {
  84. wx.miniProgram.navigateTo({
  85. url: "/pageMy/login/login",
  86. });
  87. }
  88. });
  89. };
  90. // 记录视频的点击
  91. const voiceHistory = async () => {
  92. const res = await inrernalApi.reportVoiceHistoryAdd({
  93. ActivityId: showLink.value.ActivityVideo.ActivityId,
  94. PlaySeconds: +showLink.value.ActivityVideo.VideoDuration,
  95. PageRouter: "产品内测",
  96. });
  97. };
  98. // 处理img标签的点击事件
  99. const handleImageClick = (event) => {
  100. const imgArray = [];
  101. const srcTag = event.target.getAttribute("src");
  102. if (srcTag) {
  103. const reportImages = document.querySelectorAll("img");
  104. reportImages.forEach((image) => {
  105. const itemSrc = image.getAttribute("src");
  106. imgArray.push(itemSrc);
  107. });
  108. wx.previewImage({ current: srcTag, urls: imgArray });
  109. }
  110. };
  111. // 关闭弹框
  112. const onClickHide = () => {
  113. showDlg.value = false;
  114. };
  115. // 页面加载渲染
  116. onMounted(async () => {
  117. if (route.query.id) {
  118. isBinding.value = route.query.isBinding == "true" ? true : false;
  119. let access_token = route.query.token || "";
  120. localStorage.setItem("access_token", access_token);
  121. reportId.value = +route.query.id;
  122. await reportSelectionDetail();
  123. addLinkClickListeners();
  124. }
  125. });
  126. </script>
  127. <template>
  128. <div class="cygx_internal-detials">
  129. <div class="report-content-title">{{ reportDetail.Title }}</div>
  130. <div class="author-time">
  131. <span>{{ reportDetail.Department }}</span>
  132. <span>{{ reportDetail.PublishTime }}</span>
  133. </div>
  134. <!-- <div class="content-statement">
  135. <span>注:请务必阅读</span>
  136. <span class="statement" @click="showTips = true">免责声明 </span>
  137. </div> -->
  138. <div id="report-content" class="content-abstract">摘要:{{ reportDetail.Abstract }}</div>
  139. <template v-if="isBinding">
  140. <div v-html="reportDetail.Body"></div>
  141. <div class="statement-content-box">
  142. <p>免责声明</p>
  143. 本报告仅供弘则弥道(上海)投资咨询有限公司正式签约的机构客户使用,不会因接收人/接收机构收到本报告而将其视为客户。本报告根据国际和行业通行的准则,以合法渠道获得这些信息,尽可能保证可靠、准确和完整,但并不保证报告所述信息的准确性和完整性,也不保证本报告所包含的信息或建议在本报告发出后不会发生任何变更。本报告中所提供的信息仅供参考。报告中的内容不对投资者做出的最终操作建议做任何的担保,也没有任何形式的分享投资收益或者分担投资损失的书面或口头承诺。不作为客户在投资、法律、会计或税务等方面的最终操作建议,也不作为道义的、责任的和法律的依据或者凭证,无论是否已经明示或者暗示。在任何情况下,本公司不对客户/接收人/接收机构因使用报告中内容所引致的一切损失负责任,客户/接收人/接收机构需自行承担全部风险。
  144. </div>
  145. </template>
  146. <template v-else>
  147. <div v-if="reportDetail.Body" v-html="reportDetail.Body.slice(0, 200)"></div>
  148. <div class="please-login" @click="pleaseGoLogin">请登录后查看更多内容</div>
  149. </template>
  150. <dlg :showTips="showTips" type="产品内测" :disclaimers="disclaimers" @hideDlg="showTips = false" />
  151. <van-dialog v-model:show="showDlg" closeOnClickOverlay :show-confirm-button="false" @cancel="onClickHide">
  152. <view class="content-dialog">
  153. <div class="close">
  154. <Icon name="cross" color="#333" @click="onClickHide" />
  155. </div>
  156. <video width="320" height="200" :src="showLink.ActivityVideo.VideoUrl" controls></video>
  157. </view>
  158. </van-dialog>
  159. </div>
  160. </template>
  161. <style lang="scss">
  162. .cygx_internal-detials {
  163. .please-login {
  164. margin: 50px auto 150px;
  165. width: 556px;
  166. height: 64px;
  167. color: #fff;
  168. font-size: 24px;
  169. font-weight: 600;
  170. background-color: #376cbb;
  171. display: flex;
  172. align-items: center;
  173. justify-content: center;
  174. border-radius: 9px;
  175. }
  176. padding: 30px 34px;
  177. color: #333;
  178. font-size: 28px;
  179. .author-time {
  180. display: flex;
  181. justify-content: space-between;
  182. line-height: 39px;
  183. margin: 25px 0 35px;
  184. }
  185. .content-statement {
  186. display: flex;
  187. color: #707070;
  188. .statement {
  189. margin-left: 10px;
  190. color: #3385ff;
  191. }
  192. }
  193. .report-content-title {
  194. font-weight: 500;
  195. font-size: 36px;
  196. line-height: 50px;
  197. color: #333333;
  198. }
  199. .content-abstract {
  200. position: relative;
  201. margin: 30px 0 20px;
  202. text-indent: 0.5em;
  203. line-height: 50px;
  204. padding-bottom: 30px;
  205. border-bottom: 1px dashed #ececec;
  206. &::before {
  207. content: "";
  208. width: 4px;
  209. height: 28px;
  210. position: absolute;
  211. top: 11px;
  212. left: 0;
  213. background-color: #3385ff;
  214. }
  215. }
  216. .nodata-tip {
  217. color: #999;
  218. font-size: 30px;
  219. }
  220. word-break: break-all;
  221. p,
  222. span {
  223. font-size: 32px !important;
  224. line-height: 1.6 !important;
  225. }
  226. p {
  227. background-color: rgba(255, 255, 255, 0) !important;
  228. }
  229. img {
  230. width: 100% !important;
  231. }
  232. a {
  233. color: #3385ff;
  234. }
  235. iframe {
  236. width: 100% !important;
  237. }
  238. table {
  239. border-collapse: collapse;
  240. width: 100% !important;
  241. margin-left: 0 !important;
  242. }
  243. tr td,
  244. th {
  245. border: 1px solid #333;
  246. }
  247. pre {
  248. width: 100%;
  249. overflow-y: auto;
  250. overflow-x: hidden;
  251. outline: none;
  252. border: 0;
  253. white-space: pre-wrap;
  254. word-break: normal;
  255. }
  256. .content-dialog {
  257. position: relative;
  258. font-size: 32px;
  259. color: #666;
  260. .close {
  261. width: 100%;
  262. display: flex;
  263. justify-content: flex-end;
  264. height: 60px;
  265. padding: 20px 20px 0 20px;
  266. .van-icon-cross {
  267. float: right;
  268. }
  269. }
  270. }
  271. .statement-content-box {
  272. width: calc(100% + 100px);
  273. margin-left: -50px;
  274. padding: 40px 50px 50px;
  275. color: #666;
  276. background-color: #f3f5f9;
  277. p {
  278. font-weight: 500;
  279. font-size: 34px;
  280. line-height: 48px;
  281. }
  282. }
  283. }
  284. </style>