image-text-collection.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template>
  2. <div class="wrap">
  3. <div class="back" @click="$router.back()">
  4. <img src="@/assets/icon/back.png" /><span>返回</span>
  5. </div>
  6. <div class="collection">
  7. <Collection
  8. :title="info.title"
  9. :follow_switch="!!info.follow_switch"
  10. :num="`共${info.item_list ? info.item_list.length : 0}篇文章`"
  11. @handleSwitch="handleSwitch"
  12. />
  13. </div>
  14. <div class="sort">
  15. <Sort
  16. :current="sort_type"
  17. :list="[
  18. { label: '正序', type: 2 },
  19. { label: '倒序', type: 3 },
  20. ]"
  21. @changeSort="changeSort"
  22. />
  23. </div>
  24. <div class="list">
  25. <div
  26. class="list-item"
  27. v-for="item in info.item_list"
  28. @click="toDetail(item.article_id, item.id)"
  29. >
  30. <ImageTextCollectionCard :info="item" />
  31. </div>
  32. </div>
  33. </div>
  34. </template>
  35. <script>
  36. import { ArticleService, GeneralService } from "@/common/service";
  37. import Collection from "@/components/module/collection.vue";
  38. import Sort from "@/components/module/sort.vue";
  39. import ImageTextCollectionCard from "@/components/image-text/image-text-collection-card.vue";
  40. export default {
  41. components: { Collection, Sort, ImageTextCollectionCard },
  42. data() {
  43. return {
  44. info: {},
  45. sort_type: 1,
  46. };
  47. },
  48. mounted() {
  49. const option = this.$route.query;
  50. this.info.id = option.id;
  51. this.getDetail();
  52. },
  53. methods: {
  54. // 更改排序方式
  55. changeSort(type) {
  56. this.sort_type = type;
  57. this.getDetail();
  58. },
  59. // 获取系列详情
  60. getDetail() {
  61. ArticleService.getArticleDetail({
  62. id: this.info.id,
  63. sort_type: this.sort_type,
  64. }).then(({ data }) => {
  65. this.info = data.detail;
  66. });
  67. },
  68. // 订阅
  69. handleSwitch() {
  70. GeneralService.switchSet({ id: this.info.id, type: 3 }).then(
  71. ({ data, msg }) => {
  72. this.info.follow_switch = data.status;
  73. this.$message.success(msg);
  74. }
  75. );
  76. },
  77. // 跳转详情
  78. toDetail(article_id, id) {
  79. this.$router.push({
  80. path: "/image-text-detail",
  81. query: {
  82. id,
  83. article_id,
  84. },
  85. });
  86. },
  87. },
  88. };
  89. </script>
  90. <style lang="scss" scoped>
  91. .wrap {
  92. width: calc(100% - 240px);
  93. max-width: 1200px;
  94. margin: 0 auto;
  95. .back {
  96. width: 100px;
  97. height: 50px;
  98. line-height: 50px;
  99. margin-top: 20px;
  100. font-size: 22px;
  101. font-weight: 400;
  102. color: #222222;
  103. display: flex;
  104. align-items: center;
  105. justify-content: center;
  106. background-color: white;
  107. border-radius: 4px;
  108. cursor: pointer;
  109. img {
  110. width: 12px;
  111. height: 20px;
  112. margin-right: 5px;
  113. }
  114. }
  115. .collection {
  116. background: #ffffff;
  117. border-radius: 10px;
  118. margin-top: 20px;
  119. }
  120. .sort {
  121. margin-top: 20px;
  122. }
  123. .list {
  124. margin-top: 20px;
  125. .list-item {
  126. margin-bottom: 15px;
  127. }
  128. }
  129. }
  130. </style>