comment-on-my.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  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. <CommentMyCard
  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: 'url_id',
  79. datum_id: 'datum_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 { DatumService } from "@/common/service";
  94. import CommentMyCard from "@/components/card/information/comment-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: { CommentMyCard, 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. DatumService.commentMyDatum(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. DatumService.batchesDel({ id: val.id, type: 2 }).then(({ data }) => {
  162. that.list.splice(
  163. that.list.findIndex((item) => item.id == val.id),
  164. 1
  165. );
  166. this.$message.success("删除成功!");
  167. });
  168. })
  169. .catch((_) => {});
  170. },
  171. // 更改阅读状态
  172. handleRead(arr, is_read) {
  173. let params = {
  174. id: "",
  175. type: 1,
  176. is_read,
  177. };
  178. params.id = arr.map((item) => item.id).join(",");
  179. if (!params.id) return;
  180. DatumService.unreadChange(params).then((res) => {
  181. this.list.forEach((item) => {
  182. params.id.split(",").includes(item.id + "")
  183. ? (item.is_read = params.is_read)
  184. : "";
  185. });
  186. this.manageType = false;
  187. this.$store.dispatch("getMarkNum", "information");
  188. });
  189. },
  190. // 跳转详情
  191. handleToDetail(item, key = { id: "id", datum_id: "datum_id" }) {
  192. if (Object.keys(item).includes("is_normal") && !item.is_normal)
  193. return this.$message.error("该资料已下架");
  194. this.$router.push({
  195. path: "/information-details",
  196. query: {
  197. url_id: item[key.id],
  198. id: item[key.datum_id],
  199. },
  200. });
  201. },
  202. // 显示回复框
  203. showReply(item) {
  204. this.replyVisible = true;
  205. this.info = item;
  206. },
  207. // 回复
  208. handleReply(val) {
  209. this.replyVisible = false;
  210. DatumService.secondCommend({ id: this.info.id, content: val }).then(
  211. ({ data }) => {
  212. this.$message.success("回复成功");
  213. }
  214. );
  215. },
  216. // 筛选
  217. handleSearch(val) {
  218. if (!this.list_copy) this.list_copy = this.list;
  219. if (val) {
  220. this.list = this.list_copy.filter((item) => {
  221. return item.content.includes(val);
  222. });
  223. } else {
  224. this.list = this.list_copy;
  225. this.list_copy = "";
  226. }
  227. },
  228. // 下一条未读
  229. toNext() {
  230. let current_index, next;
  231. current_index = 0;
  232. this.list.forEach((item, index) => {
  233. let { top } = this.$refs["card-" + item.id][0].getBoundingClientRect();
  234. if (top > -170 && top <= 100) {
  235. current_index = index;
  236. return;
  237. }
  238. });
  239. if (current_index == this.list.length - 1 || !this.list.length)
  240. return this.$message.info("没有下一条未读消息!");
  241. next = this.list.slice(current_index + 1).find((item) => !item.is_read);
  242. if (!next) return this.$message.info("没有下一条未读消息!");
  243. window.scrollTo(
  244. 0,
  245. window.scrollY +
  246. this.$refs["card-" + next.id][0].getBoundingClientRect().top -
  247. 100
  248. );
  249. },
  250. },
  251. };
  252. </script>
  253. <style lang="scss" scoped>
  254. .wrap {
  255. width: 100%;
  256. display: flex;
  257. flex-direction: column;
  258. align-items: center;
  259. .wrap-title {
  260. width: 80%;
  261. }
  262. .wrap-content {
  263. width: 80%;
  264. margin-top: 20px;
  265. .read-box {
  266. display: flex;
  267. align-items: center;
  268. margin: 0px 0 20px;
  269. .radio {
  270. width: 45px;
  271. display: flex;
  272. justify-content: center;
  273. margin-right: 20px;
  274. }
  275. .btn {
  276. width: 80px;
  277. height: 30px;
  278. border-radius: 17px;
  279. color: #ffffff;
  280. font-size: 16px;
  281. font-weight: 400;
  282. text-align: center;
  283. line-height: 30px;
  284. cursor: pointer;
  285. }
  286. .is-read {
  287. background: #0054f7;
  288. }
  289. .un-read {
  290. background: #ff9f18;
  291. margin-left: 10px;
  292. }
  293. }
  294. .list {
  295. .list-item {
  296. margin-bottom: 20px;
  297. display: flex;
  298. align-items: center;
  299. justify-content: flex-end;
  300. position: relative;
  301. .radio {
  302. width: 45px;
  303. background-color: white;
  304. display: flex;
  305. align-items: center;
  306. justify-content: center;
  307. position: absolute;
  308. top: 0;
  309. bottom: 0;
  310. left: 0;
  311. border-radius: 10px;
  312. }
  313. .card {
  314. width: 100%;
  315. }
  316. }
  317. }
  318. }
  319. }
  320. .control-btn {
  321. display: flex;
  322. align-items: center;
  323. justify-content: flex-end;
  324. user-select: none;
  325. .is-read {
  326. width: 100px;
  327. height: 30px;
  328. display: flex;
  329. align-items: center;
  330. justify-content: center;
  331. background: #f4f4f4;
  332. border-radius: 17px;
  333. font-size: 13px;
  334. font-weight: 400;
  335. color: #1677ff;
  336. img {
  337. width: 15px;
  338. height: 15px;
  339. margin-right: 5px;
  340. }
  341. }
  342. .manage {
  343. width: 70px;
  344. height: 30px;
  345. background: #2a63f3;
  346. border-radius: 17px;
  347. font-size: 13px;
  348. font-weight: 400;
  349. text-align: center;
  350. line-height: 30px;
  351. color: #ffffff;
  352. margin-left: 10px;
  353. }
  354. .cancel {
  355. background: transparent;
  356. color: #1677ff;
  357. }
  358. }
  359. </style>