my-release.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <template>
  2. <div class="wrap">
  3. <div class="wrap-title">
  4. <TitleControl title="我的发布" :showSearch="false">
  5. <div slot="bottom" class="switch-box">
  6. <div class="btn" :class="{ select: !type }" @click="changeType(0)">
  7. 审核成功
  8. </div>
  9. <div class="btn" :class="{ select: !!type }" @click="changeType(1)">
  10. 其他
  11. </div>
  12. </div>
  13. </TitleControl>
  14. </div>
  15. <div class="wrap-content">
  16. <div class="list">
  17. <div class="list-item" v-for="item in list" :key="item.id">
  18. <div
  19. class="card"
  20. @click="
  21. handleToDetail(item, {
  22. id: 'id',
  23. datum_id: 'datum_id',
  24. })
  25. "
  26. >
  27. <MyReleaseFunCard :info="item" @handleDelete="handleDelete(item)" />
  28. </div>
  29. </div>
  30. <el-empty v-if="finished" description="没有更多数据"></el-empty>
  31. </div>
  32. </div>
  33. <ContactService v-model="contactVisible" content="下架资料需要联系客服!" />
  34. </div>
  35. </template>
  36. <script>
  37. import MyReleaseFunCard from "@/components/card/information/my-release-card.vue";
  38. import TitleControl from "@/components/module/title-control.vue";
  39. import ContactService from "@/components/module/contact-service.vue";
  40. import { mapState } from "vuex";
  41. import { DatumService } from "@/common/service";
  42. export default {
  43. components: { MyReleaseFunCard, TitleControl, ContactService },
  44. data() {
  45. return {
  46. list: [],
  47. params: {
  48. page: 1,
  49. page_num: 20,
  50. sort_type: 1,
  51. },
  52. // 是否无数据
  53. finished: false,
  54. // 当前选中类型
  55. type: 0,
  56. // 联系客服弹窗
  57. contactVisible: false,
  58. };
  59. },
  60. computed: {
  61. ...mapState({
  62. videoMarkNum: (state) => state.mark_num.videoMarkNum, //直接拿到count数量
  63. }),
  64. },
  65. mounted() {
  66. this.getBoundList();
  67. },
  68. methods: {
  69. // 触底
  70. TouchBottom() {
  71. if (!this.finished) {
  72. !!this.type ? this.getMyList() : this.getBoundList();
  73. }
  74. },
  75. // 切换数据类型
  76. changeType(type) {
  77. this.type = type;
  78. this.list = [];
  79. this.params.page = 1;
  80. !!this.type ? this.getMyList() : this.getBoundList();
  81. },
  82. // 获取数据-后台绑定
  83. getBoundList() {
  84. DatumService.getBoundList(this.params).then(({ data }) => {
  85. const list = data.list.map((item) => {
  86. return { checked: false, ...item };
  87. });
  88. this.list = this.params.page === 1 ? list : [...this.list, ...list];
  89. if (list.length < this.params.page_num) {
  90. this.finished = true;
  91. } else {
  92. this.params.page++;
  93. }
  94. });
  95. },
  96. // 获取数据-我的发布
  97. getMyList() {
  98. DatumService.getMyDatumList(this.params).then(({ data }) => {
  99. const list = data.list.map((item) => {
  100. return { checked: false, ...item };
  101. });
  102. this.list = this.params.page === 1 ? list : [...this.list, ...list];
  103. if (list.length < this.params.page_num) {
  104. this.finished = true;
  105. } else {
  106. this.params.page++;
  107. }
  108. });
  109. },
  110. // 删除记录
  111. handleDelete(val) {
  112. if (!this.type) return (this.contactVisible = true);
  113. let that = this;
  114. this.showConfirmPopup("确定要删除该资料?")
  115. .then(() => {
  116. DatumService.batchesDel({ id: val.id, type: 5 }).then(({ data }) => {
  117. that.list.splice(
  118. that.list.findIndex((item) => item.id == val.id),
  119. 1
  120. );
  121. this.$message.success("删除成功!");
  122. });
  123. })
  124. .catch((_) => {});
  125. },
  126. // 跳转详情
  127. handleToDetail(item, key = { id: "id", datum_id: "datum_id" }) {
  128. if (Object.keys(item).includes("is_normal") && !item.is_normal)
  129. return this.$message.error("该资料已下架");
  130. if (this.type && item.status != 1) return;
  131. this.$router.push({
  132. path: "/information-details",
  133. query: {
  134. url_id: item[key.id],
  135. id: item[key.datum_id],
  136. },
  137. });
  138. },
  139. },
  140. };
  141. </script>
  142. <style lang="scss" scoped>
  143. .wrap {
  144. width: 100%;
  145. display: flex;
  146. flex-direction: column;
  147. align-items: center;
  148. .wrap-title {
  149. width: 80%;
  150. }
  151. .wrap-content {
  152. width: 80%;
  153. margin-top: 20px;
  154. .list {
  155. .list-item {
  156. margin-bottom: 20px;
  157. display: flex;
  158. align-items: center;
  159. justify-content: flex-end;
  160. position: relative;
  161. .card {
  162. width: 100%;
  163. }
  164. }
  165. }
  166. }
  167. }
  168. .switch-box {
  169. display: flex;
  170. align-items: center;
  171. margin-top: 15px;
  172. .btn {
  173. width: 100px;
  174. height: 35px;
  175. text-align: center;
  176. line-height: 35px;
  177. font-size: 14px;
  178. font-weight: 400;
  179. color: #666666;
  180. background: #f4f4f4;
  181. border-radius: 22px;
  182. cursor: pointer;
  183. margin-right: 10px;
  184. position: relative;
  185. .mark {
  186. width: 36px;
  187. height: 20px;
  188. text-align: center;
  189. line-height: 20px;
  190. transform: scale(0.7);
  191. font-size: 10px;
  192. font-weight: 400;
  193. color: #ffffff;
  194. background: #ff5143;
  195. border-radius: 8px;
  196. position: absolute;
  197. top: -10px;
  198. right: -10px;
  199. }
  200. }
  201. .select {
  202. background: #2a63f3;
  203. color: #ffffff;
  204. }
  205. }
  206. </style>