reply-on-my.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. <template>
  2. <div class="wrap">
  3. <div class="wrap-title">
  4. <TitleControl title="回复我的" @handleChange="handleSearch">
  5. <div slot="control" class="control-btn">
  6. <div
  7. class="is-read"
  8. v-if="!manageType"
  9. @click="
  10. (_) => {
  11. $message.success('已将所有信息标为已读');
  12. handleRead(list, 1);
  13. }
  14. "
  15. >
  16. <img src="@/assets/icon/read.png" alt="" />
  17. <span>全部已读</span>
  18. </div>
  19. <div class="manage" @click="manageType = true" v-if="!manageType">
  20. 管理
  21. </div>
  22. <div class="manage cancel" @click="manageType = false" v-else>
  23. 取消
  24. </div>
  25. </div>
  26. </TitleControl>
  27. </div>
  28. <div class="wrap-content">
  29. <div class="read-box" v-if="manageType">
  30. <div class="radio">
  31. <el-checkbox
  32. v-model="allChecked"
  33. @change="changeAllChecked"
  34. ></el-checkbox>
  35. </div>
  36. <div
  37. class="btn is-read"
  38. @click="
  39. handleRead(
  40. list.filter((item) => item.checked),
  41. 1
  42. )
  43. "
  44. >
  45. 已读
  46. </div>
  47. <div
  48. class="btn un-read"
  49. @click="
  50. handleRead(
  51. list.filter((item) => item.checked),
  52. 0
  53. )
  54. "
  55. >
  56. 未读
  57. </div>
  58. </div>
  59. <div class="list">
  60. <div class="list-item" v-for="item in list" :key="item.id">
  61. <div class="radio" v-if="manageType">
  62. <el-checkbox v-model="item.checked"></el-checkbox>
  63. </div>
  64. <div
  65. class="card"
  66. :ref="'card-' + item.id"
  67. :style="manageType ? { width: 'calc(100% - 60px)' } : ''"
  68. @click="handleRead([item], 1)"
  69. >
  70. <ReplyMyCard
  71. :info="item"
  72. :manageType="manageType"
  73. @reply="showReply(item)"
  74. @handleDelete="handleDelete(item)"
  75. @handleRead="handleRead([item], 1 - item.is_read)"
  76. @handleToDetail="
  77. handleToDetail(item, {
  78. id: 'item_id',
  79. article_id: 'article_id',
  80. })
  81. "
  82. />
  83. </div>
  84. </div>
  85. <el-empty v-if="finished" description="没有更多数据"></el-empty>
  86. </div>
  87. </div>
  88. <Reply v-model="replyVisible" :info="info" @handleReply="handleReply" />
  89. <ToNext @toNext="toNext" v-if="!manageType" />
  90. </div>
  91. </template>
  92. <script>
  93. import { ArticleService } from "@/common/service";
  94. import ReplyMyCard from "@/components/card/image-text/reply-my-card.vue";
  95. import TitleControl from "@/components/module/title-control.vue";
  96. import Reply from "@/components/module/reply.vue";
  97. import ToNext from "@/components/module/to-next.vue";
  98. export default {
  99. components: { ReplyMyCard, TitleControl, Reply, ToNext },
  100. data() {
  101. return {
  102. list: [],
  103. params: {
  104. page: 1,
  105. page_num: 20,
  106. sort_type: 1,
  107. },
  108. // 是否无数据
  109. finished: false,
  110. // 是否点击管理按钮
  111. manageType: false,
  112. // 是否选中所有
  113. allChecked: false,
  114. // 回复框显示状态
  115. replyVisible: false,
  116. // 回复详情
  117. info: {},
  118. // 搜索
  119. list_copy: "",
  120. };
  121. },
  122. watch: {
  123. manageType(val) {
  124. !val ? (this.allChecked = false) : "";
  125. this.list.forEach((item) => (item.checked = false));
  126. },
  127. },
  128. mounted() {
  129. this.getList();
  130. },
  131. methods: {
  132. // 触底
  133. TouchBottom() {
  134. if (!this.finished) {
  135. this.getList();
  136. }
  137. },
  138. // 选择全部
  139. changeAllChecked(type) {
  140. this.list.map((item) => (item.checked = type));
  141. },
  142. // 获取数据
  143. getList() {
  144. ArticleService.getReplyComment(this.params).then(({ data }) => {
  145. const list = data.list.map((item) => {
  146. return { checked: false, ...item };
  147. });
  148. this.list = this.params.page === 1 ? list : [...this.list, ...list];
  149. if (list.length < this.params.page_num) {
  150. this.finished = true;
  151. } else {
  152. this.params.page++;
  153. }
  154. });
  155. },
  156. // 删除记录
  157. handleDelete(val) {
  158. let that = this;
  159. this.showConfirmPopup("确定要删除该信息?")
  160. .then(() => {
  161. ArticleService.batchesDel({ id: val.id, type: 10 }).then(
  162. ({ data }) => {
  163. that.list.splice(
  164. that.list.findIndex((item) => item.id == val.id),
  165. 1
  166. );
  167. this.$message.success("删除成功!");
  168. }
  169. );
  170. })
  171. .catch((_) => {});
  172. },
  173. // 更改阅读状态
  174. handleRead(arr, is_read) {
  175. let params = {
  176. id: "",
  177. type: 2,
  178. is_read,
  179. };
  180. params.id = arr.map((item) => item.id).join(",");
  181. if (!params.id) return;
  182. ArticleService.unreadChange(params).then((res) => {
  183. this.list.forEach((item) => {
  184. params.id.split(",").includes(item.id + "")
  185. ? (item.is_read = params.is_read)
  186. : "";
  187. });
  188. this.manageType = false;
  189. this.$store.dispatch("getMarkNum", "imageText");
  190. });
  191. },
  192. // 跳转详情
  193. handleToDetail(item, key = { id: "id", article_id: "article_id" }) {
  194. if (Object.keys(item).includes("is_normal") && !item.is_normal)
  195. return this.$message.error("该图文已下架");
  196. this.$router.push({
  197. path: "/image-text-detail",
  198. query: {
  199. id: item[key.id],
  200. article_id: item[key.article_id],
  201. },
  202. });
  203. },
  204. // 显示回复框
  205. showReply(item) {
  206. this.replyVisible = true;
  207. this.info = item;
  208. },
  209. // 回复
  210. handleReply(val) {
  211. this.replyVisible = false;
  212. ArticleService.secondCommend({ id: this.info.id, content: val }).then(
  213. ({ data }) => {
  214. this.$message.success("回复成功");
  215. }
  216. );
  217. },
  218. // 筛选
  219. handleSearch(val) {
  220. if (!this.list_copy) this.list_copy = this.list;
  221. if (val) {
  222. this.list = this.list_copy.filter((item) => {
  223. return item.content.includes(val);
  224. });
  225. } else {
  226. this.list = this.list_copy;
  227. this.list_copy = "";
  228. }
  229. },
  230. // 下一条未读
  231. toNext() {
  232. let current_index, next;
  233. current_index = 0;
  234. this.list.forEach((item, index) => {
  235. let { top } = this.$refs["card-" + item.id][0].getBoundingClientRect();
  236. if (top > -170 && top <= 100) {
  237. current_index = index;
  238. return;
  239. }
  240. });
  241. if (current_index == this.list.length - 1 || !this.list.length)
  242. return this.$message.info("没有下一条未读消息!");
  243. next = this.list.slice(current_index + 1).find((item) => !item.is_read);
  244. if (!next) return this.$message.info("没有下一条未读消息!");
  245. window.scrollTo(
  246. 0,
  247. window.scrollY +
  248. this.$refs["card-" + next.id][0].getBoundingClientRect().top -
  249. 100
  250. );
  251. },
  252. },
  253. };
  254. </script>
  255. <style lang="scss" scoped>
  256. .wrap {
  257. width: 100%;
  258. display: flex;
  259. flex-direction: column;
  260. align-items: center;
  261. .wrap-title {
  262. width: 80%;
  263. }
  264. .wrap-content {
  265. width: 80%;
  266. margin-top: 20px;
  267. .read-box {
  268. display: flex;
  269. align-items: center;
  270. margin: 0px 0 20px;
  271. .radio {
  272. width: 45px;
  273. display: flex;
  274. justify-content: center;
  275. margin-right: 20px;
  276. }
  277. .btn {
  278. width: 80px;
  279. height: 30px;
  280. border-radius: 17px;
  281. color: #ffffff;
  282. font-size: 16px;
  283. font-weight: 400;
  284. text-align: center;
  285. line-height: 30px;
  286. cursor: pointer;
  287. }
  288. .is-read {
  289. background: #0054f7;
  290. }
  291. .un-read {
  292. background: #ff9f18;
  293. margin-left: 10px;
  294. }
  295. }
  296. .list {
  297. .list-item {
  298. margin-bottom: 20px;
  299. display: flex;
  300. align-items: center;
  301. justify-content: flex-end;
  302. position: relative;
  303. .radio {
  304. width: 45px;
  305. background-color: white;
  306. display: flex;
  307. align-items: center;
  308. justify-content: center;
  309. position: absolute;
  310. top: 0;
  311. bottom: 0;
  312. left: 0;
  313. border-radius: 10px;
  314. }
  315. .card {
  316. width: 100%;
  317. }
  318. }
  319. }
  320. }
  321. }
  322. .control-btn {
  323. display: flex;
  324. align-items: center;
  325. justify-content: flex-end;
  326. user-select: none;
  327. .is-read {
  328. width: 100px;
  329. height: 30px;
  330. display: flex;
  331. align-items: center;
  332. justify-content: center;
  333. background: #f4f4f4;
  334. border-radius: 17px;
  335. font-size: 13px;
  336. font-weight: 400;
  337. color: #1677ff;
  338. img {
  339. width: 15px;
  340. height: 15px;
  341. margin-right: 5px;
  342. }
  343. }
  344. .manage {
  345. width: 70px;
  346. height: 30px;
  347. background: #2a63f3;
  348. border-radius: 17px;
  349. font-size: 13px;
  350. font-weight: 400;
  351. text-align: center;
  352. line-height: 30px;
  353. color: #ffffff;
  354. margin-left: 10px;
  355. }
  356. .cancel {
  357. background: transparent;
  358. color: #1677ff;
  359. }
  360. }
  361. </style>