information-details.vue 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. <template>
  2. <div class="wrap">
  3. <div class="title">
  4. <DetailTitle
  5. :info="info"
  6. :show_desc="false"
  7. :series_info="datum_info"
  8. @handleSwitch="handleSwitch"
  9. @toVideoDetail="toVideoDetail"
  10. @toSupplierDetail="toSupplierDetail"
  11. @toImageTextDetail="toImageTextDetail"
  12. @toCollection="toCollection"
  13. />
  14. </div>
  15. <div class="content" v-if="!showVip">
  16. <div class="view" @click="handleView">点击查看</div>
  17. <div class="download" v-if="info.is_down" @click="handleDownload">
  18. 下载
  19. </div>
  20. </div>
  21. <div class="vip-content" v-if="showVip">
  22. <div class="tips">您当前身份处于非VIP普通用户 请开通VIP进行观看</div>
  23. <div class="btn" @click="$router.push('/vip')">立即开通</div>
  24. </div>
  25. <div class="comment">
  26. <Comment ref="comment" />
  27. </div>
  28. <div class="interactive">
  29. <DetailInteractive
  30. :info="info"
  31. :dict="{
  32. is_like: 'is_praise',
  33. like_num: 'praise_num',
  34. }"
  35. @handleComment="handleComment"
  36. @handleLike="handleLike"
  37. @handleCollect="handleCollect"
  38. @handleForward="handleForward"
  39. @handleReport="handleReport"
  40. @handleNotice="handleNotice"
  41. />
  42. </div>
  43. <CommentAll
  44. v-model="visible"
  45. :info="info"
  46. :option="comment_option"
  47. :reportType="8"
  48. />
  49. <Report :type="4" :info="info" v-model="reportVisible" />
  50. <FileViewer :info="info" v-model="viewerVisible" />
  51. </div>
  52. </template>
  53. <script>
  54. import { DatumService, GeneralService } from "@/common/service";
  55. import { downloadLocalFile } from "@/common/request";
  56. import { INFORMATION_PREVIEWABLE_FILE_TYPE, OSS_URL } from "@/common/config";
  57. import { getFileType } from "@/common/util";
  58. import DetailTitle from "@/components/module/detail-title.vue";
  59. import DetailInteractive from "@/components/module/detail-interactive.vue";
  60. import Comment from "@/components/module/comment.vue";
  61. import CommentAll from "@/components/module/comment-all.vue";
  62. import Report from "@/components/module/report.vue";
  63. import FileViewer from "@/components/module/file-viewer.vue";
  64. export default {
  65. components: {
  66. DetailTitle,
  67. DetailInteractive,
  68. CommentAll,
  69. Comment,
  70. Report,
  71. FileViewer,
  72. },
  73. data() {
  74. return {
  75. datum_info: {},
  76. info: {},
  77. visible: false,
  78. reportVisible: false,
  79. previewable: false, // 是否可预览
  80. viewerVisible: false,
  81. };
  82. },
  83. computed: {
  84. comment_option() {
  85. return {
  86. // 列表api
  87. listApi: (params) =>
  88. DatumService.getDatumCommentList({
  89. ...params,
  90. url_id: this.info.id,
  91. }),
  92. // 点赞
  93. likeApi: (comment) =>
  94. DatumService.commentTags({
  95. comment_id: comment.id,
  96. }),
  97. // 发布评论
  98. postApi: (params) =>
  99. DatumService.datumComment({
  100. ...params,
  101. datum_id: this.datum_info.id,
  102. url_id: this.info.id,
  103. }),
  104. // 回复评论
  105. postReplyApi: (params, comment) =>
  106. DatumService.secondCommend({
  107. ...params,
  108. id: comment.id,
  109. }),
  110. reportType: 10,
  111. // 删除评论
  112. delApi: (params) => DatumService.delComment({ id: params.id }),
  113. };
  114. },
  115. showVip() {
  116. let info_vip = !!this.info.is_vip;
  117. let user_vip = !!this.$store.state.userInfo.level_id;
  118. let is_release = !!this.info.is_release;
  119. return info_vip && !user_vip && !is_release;
  120. },
  121. },
  122. created() {
  123. const option = this.$route.query;
  124. this.datum_info.id = option.id;
  125. this.info.id = option.url_id;
  126. if (option.id) this.getSeriesDetail();
  127. if (option.url_id) this.getDetail();
  128. if (localStorage.getItem("user_info"))
  129. this.$store.dispatch("getMarkNum", "information");
  130. },
  131. mounted() {
  132. // this.handleRead();
  133. },
  134. activated() {
  135. window.scrollTo(0, 0);
  136. },
  137. methods: {
  138. // 获取系列资料详情
  139. getSeriesDetail() {
  140. DatumService.getDatumDetail({ id: this.datum_info.id }).then(
  141. ({ data }) => {
  142. this.datum_info = data.detail;
  143. }
  144. );
  145. },
  146. // 获取资料详情
  147. getDetail() {
  148. DatumService.getDatumItemInfo({ url_id: this.info.id }).then(
  149. ({ data }) => {
  150. data.detail["fileType"] = getFileType(data.detail.url);
  151. this.previewable = INFORMATION_PREVIEWABLE_FILE_TYPE.includes(
  152. data.detail["fileType"]
  153. );
  154. this.info = data.detail;
  155. this.$nextTick((_) => {
  156. this.$refs["comment"].init(this.comment_option);
  157. });
  158. }
  159. );
  160. },
  161. // 订阅
  162. handleSwitch() {
  163. GeneralService.switchSet({ id: this.datum_info.id, type: 4 }).then(
  164. ({ data, msg }) => {
  165. this.datum_info.follow_switch = data.status;
  166. this.$message.success(msg);
  167. }
  168. );
  169. },
  170. // 跳转合集
  171. toCollection() {
  172. this.$router.push({
  173. path: "/information-collection",
  174. query: {
  175. id: this.datum_info.id,
  176. },
  177. });
  178. },
  179. // 跳转视频
  180. toVideoDetail() {
  181. this.$router.open({
  182. path: "/video-details",
  183. query: {
  184. id: this.info.video_id,
  185. videoArrId: this.info.video_item,
  186. },
  187. });
  188. },
  189. // 跳转图文
  190. toImageTextDetail() {
  191. if (this.info.article_item) {
  192. this.$router.open({
  193. path: "/image-text-details",
  194. query: {
  195. item_id: this.info.article_item,
  196. id: this.info.article_id,
  197. },
  198. });
  199. } else {
  200. this.$router.open({
  201. path: "/image-text-collection",
  202. query: {
  203. id: this.info.article_id,
  204. },
  205. });
  206. }
  207. },
  208. // 跳转产品
  209. toSupplierDetail() {
  210. this.$router.open({
  211. path: "/supplier-details",
  212. query: {
  213. id: this.info.goods_id,
  214. },
  215. });
  216. },
  217. // 评论
  218. handleComment() {
  219. this.visible = true;
  220. },
  221. // 点赞
  222. handleLike() {
  223. DatumService.datumTags({
  224. datum_id: this.datum_info.id,
  225. url_id: this.info.id,
  226. }).then(({ data, msg }) => {
  227. this.info.is_praise = data.tags;
  228. this.info.praise_num = data.tags
  229. ? Number(this.info.praise_num) + 1
  230. : Number(this.info.praise_num) - 1;
  231. this.$message.success(msg);
  232. });
  233. },
  234. // 收藏
  235. handleCollect() {
  236. DatumService.datumCollect({
  237. datum_id: this.datum_info.id,
  238. url_id: this.info.id,
  239. }).then(({ data, msg }) => {
  240. this.info.is_collect = data.status;
  241. this.$message.success(msg);
  242. });
  243. },
  244. // 分享---统计分享量
  245. handleForward() {
  246. DatumService.datumTransmit({
  247. datum_id: this.datum_info.id,
  248. url_id: this.info.id,
  249. }).then(
  250. (_) => (this.info.transmit_num = Number(this.info.transmit_num) + 1)
  251. );
  252. },
  253. // 举报
  254. handleReport() {
  255. this.reportVisible = true;
  256. },
  257. // 通知
  258. handleNotice() {
  259. GeneralService.switchSet({ id: this.info.id, type: 9 }).then(
  260. ({ data, msg }) => {
  261. this.info.switch_open = data.status;
  262. this.$message.success(msg);
  263. }
  264. );
  265. },
  266. // 预览
  267. handleView() {
  268. if (!this.previewable) return (this.viewerVisible = true);
  269. let params = {
  270. datum_info: this.datum_info,
  271. previewable: this.previewable,
  272. info: this.info,
  273. };
  274. sessionStorage.setItem("params", JSON.stringify(params));
  275. this.$router.push({
  276. path: "/information-details-content",
  277. });
  278. },
  279. // 下载---统计下载量
  280. handleDownload() {
  281. let url = this.info.url;
  282. if (this.info.is_down && this.info.is_encrypt) {
  283. url = OSS_URL + this.urlInfo.pdf_clear;
  284. }
  285. DatumService.datumDownload({
  286. datum_id: this.info.datum_id,
  287. url_id: this.info.id,
  288. }).then(() => {
  289. downloadLocalFile(url, this.info.title);
  290. });
  291. },
  292. // 统计阅读量
  293. handleRead() {
  294. DatumService.datumRead({ url_id: this.info.id });
  295. },
  296. },
  297. };
  298. </script>
  299. <style lang="scss" scoped>
  300. .wrap {
  301. width: 70%;
  302. margin: 0 auto;
  303. min-width: 800px;
  304. padding-top: 20px;
  305. position: relative;
  306. .title {
  307. padding: 30px;
  308. background-color: white;
  309. }
  310. .content {
  311. display: flex;
  312. flex-direction: column;
  313. align-items: center;
  314. background-color: white;
  315. justify-content: center;
  316. height: 400px;
  317. width: 100%;
  318. div {
  319. width: 160px;
  320. height: 45px;
  321. box-shadow: 0px 2px 0px 0px rgba(5, 145, 255, 0.1);
  322. border-radius: 6px;
  323. font-size: 14px;
  324. font-weight: 400;
  325. text-align: center;
  326. line-height: 45px;
  327. cursor: pointer;
  328. }
  329. .view {
  330. background: #1677ff;
  331. border: 1px solid transparent;
  332. color: #ffffff;
  333. }
  334. .download {
  335. margin-top: 20px;
  336. border: 1px solid #2a63f3;
  337. color: #2a63f3;
  338. }
  339. }
  340. .vip-content {
  341. display: flex;
  342. flex-direction: column;
  343. align-items: center;
  344. background-color: white;
  345. justify-content: center;
  346. height: 400px;
  347. width: 100%;
  348. .tips {
  349. width: 220px;
  350. font-size: 16px;
  351. font-weight: 400;
  352. color: #333333;
  353. text-align: center;
  354. margin-bottom: 20px;
  355. }
  356. .btn {
  357. width: 160px;
  358. height: 45px;
  359. background: #ebd793;
  360. border-radius: 10px;
  361. text-align: center;
  362. line-height: 45px;
  363. font-size: 16px;
  364. font-weight: 400;
  365. color: #553d0e;
  366. cursor: pointer;
  367. }
  368. }
  369. .comment {
  370. margin-top: 30px;
  371. padding: 10px 30px 30px 30px;
  372. background-color: white;
  373. }
  374. .interactive {
  375. position: fixed;
  376. top: 100px;
  377. right: calc(15% - 100px);
  378. }
  379. @media (max-width: 69.0625rem) {
  380. .interactive {
  381. position: absolute;
  382. top: 20px;
  383. left: 860px;
  384. }
  385. }
  386. }
  387. </style>