image-text-details.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. <template>
  2. <div class="wrap">
  3. <div class="title">
  4. <DetailTitle
  5. :info="info"
  6. :series_info="article_info"
  7. @handleSwitch="handleSwitch"
  8. @toVideoDetail="toVideoDetail"
  9. @toSupplierDetail="toSupplierDetail"
  10. @toInformationDetail="toInformationDetail"
  11. @toCollection="toCollection"
  12. />
  13. </div>
  14. <div class="content" v-if="info.content && !showVip">
  15. <ImageTextDetailContent :content="info.content" />
  16. </div>
  17. <div class="vip-content" v-if="showVip">
  18. <div class="tips">您当前身份处于非VIP普通用户 请开通VIP进行观看</div>
  19. <div class="btn" @click="$router.push('/vip')">立即开通</div>
  20. </div>
  21. <div class="comment">
  22. <Comment ref="comment" />
  23. </div>
  24. <div class="interactive">
  25. <DetailInteractive
  26. :info="info"
  27. @handleComment="handleComment"
  28. @handleLike="handleLike"
  29. @handleCollect="handleCollect"
  30. @handleForward="handleForward"
  31. @handleReport="handleReport"
  32. @handleNotice="handleNotice"
  33. />
  34. </div>
  35. <CommentAll
  36. v-model="visible"
  37. :info="info"
  38. :option="comment_option"
  39. :reportType="8"
  40. />
  41. <Report :type="5" :info="info" v-model="reportVisible" />
  42. </div>
  43. </template>
  44. <script>
  45. import { ArticleService, GeneralService } from "@/common/service";
  46. import DetailTitle from "@/components/module/detail-title.vue";
  47. import DetailInteractive from "@/components/module/detail-interactive.vue";
  48. import ImageTextDetailContent from "@/components/image-text/image-text-detail-content new.vue";
  49. import Comment from "@/components/module/comment.vue";
  50. import CommentAll from "@/components/module/comment-all.vue";
  51. import Report from "@/components/module/report.vue";
  52. export default {
  53. components: {
  54. DetailTitle,
  55. DetailInteractive,
  56. ImageTextDetailContent,
  57. CommentAll,
  58. Comment,
  59. Report,
  60. },
  61. data() {
  62. return {
  63. article_info: {},
  64. info: {},
  65. visible: false,
  66. reportVisible: false,
  67. };
  68. },
  69. computed: {
  70. comment_option() {
  71. return {
  72. // 列表api
  73. listApi: (params) =>
  74. ArticleService.getArticleCommentList({
  75. ...params,
  76. article_id: this.article_info.id, // 图文id
  77. item_id: this.info.id, // item_id
  78. }),
  79. // 点赞
  80. likeApi: (comment) =>
  81. ArticleService.commentTags({
  82. comment_id: comment.id,
  83. }),
  84. // 发布评论
  85. postApi: (params) =>
  86. ArticleService.articleComment({
  87. ...params,
  88. article_id: this.article_info.id,
  89. item_id: this.info.id,
  90. }),
  91. // 回复评论
  92. postReplyApi: (params, comment) =>
  93. ArticleService.secondCommend({
  94. ...params,
  95. id: comment.id,
  96. }),
  97. reportType: 8,
  98. // 删除评论
  99. delApi: (params) => ArticleService.delComment({ id: params.id }),
  100. };
  101. },
  102. showVip() {
  103. let info_vip = this.info.is_vip;
  104. let user_vip = !!this.$store.state.userInfo.level_id;
  105. let is_release = this.info.is_release;
  106. return info_vip && !user_vip && !is_release;
  107. },
  108. },
  109. created() {
  110. const option = this.$route.query;
  111. this.article_info.id = option.id;
  112. this.info.id = option.item_id;
  113. if (option.id) this.getSeriesDetail();
  114. if (option.item_id) this.getDetail();
  115. if (localStorage.getItem("user_info"))
  116. this.$store.dispatch("getMarkNum", "imageText");
  117. },
  118. mounted() {
  119. // this.handleRead();
  120. },
  121. activated() {
  122. window.scrollTo(0, 0);
  123. },
  124. methods: {
  125. // 获取系列图文详情
  126. getSeriesDetail() {
  127. ArticleService.getArticleDetail({ id: this.article_info.id }).then(
  128. ({ data }) => {
  129. this.article_info = data.detail;
  130. }
  131. );
  132. },
  133. // 获取图文详情
  134. getDetail() {
  135. ArticleService.getArticleItemInfo({ item_id: this.info.id }).then(
  136. ({ data }) => {
  137. this.info = data.detail;
  138. this.$nextTick((_) => {
  139. this.$refs["comment"].init(this.comment_option);
  140. });
  141. }
  142. );
  143. },
  144. // 订阅
  145. handleSwitch() {
  146. GeneralService.switchSet({ id: this.article_info.id, type: 3 }).then(
  147. ({ data, msg }) => {
  148. this.article_info.follow_switch = data.status;
  149. this.$message.success(msg);
  150. }
  151. );
  152. },
  153. // 跳转合集
  154. toCollection() {
  155. this.$router.push({
  156. path: "/image-text-collection",
  157. query: {
  158. id: this.article_info.id,
  159. },
  160. });
  161. },
  162. // 跳转视频
  163. toVideoDetail() {
  164. this.$router.open({
  165. path: "/video-details",
  166. query: {
  167. id: this.info.video_id,
  168. videoArrId: this.info.video_item,
  169. },
  170. });
  171. },
  172. // 跳转资料
  173. toInformationDetail() {
  174. if (this.info.datum_item) {
  175. this.$router.open({
  176. path: "/information-details",
  177. query: {
  178. url_id: this.info.datum_item,
  179. id: this.info.datum_id,
  180. },
  181. });
  182. } else {
  183. this.$router.open({
  184. path: "/information-collection",
  185. query: {
  186. id: this.info.datum_id,
  187. },
  188. });
  189. }
  190. },
  191. // 跳转产品
  192. toSupplierDetail() {
  193. this.$router.open({
  194. path: "/supplier-details",
  195. query: {
  196. id: this.info.goods_id,
  197. },
  198. });
  199. },
  200. // 评论
  201. handleComment() {
  202. this.visible = true;
  203. },
  204. // 点赞
  205. handleLike() {
  206. ArticleService.articleTags({ item_id: this.info.id }).then(
  207. ({ data, msg }) => {
  208. this.info.is_like = data.tags;
  209. this.info.like_num = data.tags
  210. ? Number(this.info.like_num) + 1
  211. : Number(this.info.like_num) - 1;
  212. this.$message.success(msg);
  213. }
  214. );
  215. },
  216. // 收藏
  217. handleCollect() {
  218. ArticleService.articleCollect({
  219. article_id: this.article_info.id,
  220. item_id: this.info.id,
  221. }).then(({ data, msg }) => {
  222. this.info.is_collect = data.status;
  223. this.$message.success(msg);
  224. });
  225. },
  226. // 分享---统计分享量
  227. handleForward() {
  228. ArticleService.articleTransmit({ item_id: this.info.id }).then(
  229. (_) => (this.info.transmit_num = Number(this.info.transmit_num) + 1)
  230. );
  231. },
  232. // 举报
  233. handleReport() {
  234. this.reportVisible = true;
  235. },
  236. // 通知
  237. handleNotice() {
  238. GeneralService.switchSet({ id: this.info.id, type: 8 }).then(
  239. ({ data, msg }) => {
  240. this.info.switch_open = data.status;
  241. this.$message.success(msg);
  242. }
  243. );
  244. },
  245. // 统计阅读量
  246. handleRead() {
  247. ArticleService.articleRead({ item_id: this.info.id });
  248. },
  249. },
  250. };
  251. </script>
  252. <style lang="scss" scoped>
  253. .wrap {
  254. width: 70%;
  255. margin: 0 auto;
  256. min-width: 800px;
  257. padding-top: 20px;
  258. position: relative;
  259. .title {
  260. padding: 30px;
  261. background-color: white;
  262. }
  263. .content {
  264. margin-top: 30px;
  265. width: calc(100% - 120px);
  266. padding: 30px 60px;
  267. background-color: white;
  268. }
  269. .vip-content {
  270. display: flex;
  271. flex-direction: column;
  272. align-items: center;
  273. background-color: white;
  274. justify-content: center;
  275. height: 400px;
  276. width: 100%;
  277. .tips {
  278. width: 220px;
  279. font-size: 16px;
  280. font-weight: 400;
  281. color: #333333;
  282. text-align: center;
  283. margin-bottom: 20px;
  284. }
  285. .btn {
  286. width: 160px;
  287. height: 45px;
  288. background: #ebd793;
  289. border-radius: 10px;
  290. text-align: center;
  291. line-height: 45px;
  292. font-size: 16px;
  293. font-weight: 400;
  294. color: #553d0e;
  295. cursor: pointer;
  296. }
  297. }
  298. .comment {
  299. margin-top: 30px;
  300. padding: 10px 30px 30px 30px;
  301. background-color: white;
  302. }
  303. .interactive {
  304. position: fixed;
  305. top: 100px;
  306. right: calc(15% - 100px);
  307. }
  308. @media (max-width: 69.0625rem) {
  309. .interactive {
  310. position: absolute;
  311. top: 20px;
  312. left: 860px;
  313. }
  314. }
  315. }
  316. </style>