demand.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <!--需求 -->
  2. <template>
  3. <div class="wrap">
  4. <header-search
  5. tabName="需求"
  6. :type="8"
  7. :tab-idx="1"
  8. :bg-img="require('@/assets/bg-21.png')"
  9. />
  10. <div class="tab" :class="{ 'tab-fixed': scrollTop >= 50 }">
  11. <div
  12. class="tab-item"
  13. v-for="item in tabList"
  14. :class="{ current: item.value == params.is_over }"
  15. @click="changeTab(item)"
  16. >
  17. {{ item.label }}
  18. </div>
  19. </div>
  20. <div
  21. class="box"
  22. :style="{ 'margin-top': scrollTop >= 50 ? '48px' : '13px' }"
  23. >
  24. <DemandTabulation
  25. ref="tabulation"
  26. :list="list"
  27. :loading="loading"
  28. :finished="finished"
  29. @onRefresh="onRefresh"
  30. @getList="getList"
  31. />
  32. </div>
  33. <!-- 发布 -->
  34. <publish :list="publishList" />
  35. <!-- 回到顶部 -->
  36. <to-top display-height="0" :toTop="toTop" />
  37. </div>
  38. </template>
  39. <script>
  40. import { DemandService } from "@/common/service";
  41. import HeaderSearch from "@/components/header-search.vue";
  42. import DemandTabulation from "./components/demand-tabulation.vue";
  43. import Publish from "@/components/publish.vue";
  44. import ToTop from "@/components/to-top.vue";
  45. export default {
  46. components: { HeaderSearch, DemandTabulation, Publish, ToTop },
  47. data() {
  48. return {
  49. scrollTop: 0,
  50. params: {
  51. is_over: 0, // 是否解决或开源【0否,1是,2开源】
  52. page: 1, // 页数
  53. page_num: 10, // 每页数
  54. },
  55. list: [],
  56. loading: false,
  57. finished: false,
  58. currentTab: 0,
  59. tabList: [
  60. { label: "待解决", value: 0 },
  61. { label: "已解决", value: 1 },
  62. { label: "开源项目", value: 2 },
  63. ],
  64. publishList: [
  65. {
  66. title: "发布需求/项目",
  67. path: "/contact-online",
  68. icon: require("@/assets/icon-95.png"),
  69. class: "",
  70. },
  71. ],
  72. };
  73. },
  74. mounted() {
  75. window.addEventListener("scroll", this.onScroll);
  76. this.getList();
  77. },
  78. beforeDestroy() {
  79. window.removeEventListener("scroll", this.onScroll);
  80. },
  81. methods: {
  82. toTop() {
  83. window.scrollTo(0, 0);
  84. },
  85. onScroll() {
  86. let scrollPos;
  87. if (window.pageYOffset) {
  88. scrollPos = window.pageYOffset;
  89. } else if (document.compatMode && document.compatMode !== "BackCompat") {
  90. scrollPos = document.documentElement.scrollTop;
  91. } else if (document.body) {
  92. scrollPos = document.body.scrollTop;
  93. }
  94. this.scrollTop = scrollPos;
  95. },
  96. onRefresh() {
  97. this.params.page = 1;
  98. this.finished = false;
  99. this.getList();
  100. },
  101. changeTab(item) {
  102. this.params.is_over = item.value;
  103. this.onRefresh();
  104. },
  105. getList() {
  106. this.loading = true;
  107. DemandService.getRecommendList(this.params)
  108. .then(({ data }) => {
  109. const list = data.list;
  110. this.list = this.params.page === 1 ? list : [...this.list, ...list];
  111. if (list.length < this.params.page_num) {
  112. this.finished = true;
  113. } else {
  114. this.params.page++;
  115. }
  116. })
  117. .catch(() => {
  118. this.finished = true;
  119. })
  120. .finally(() => {
  121. this.loading = false;
  122. this.$refs["tabulation"].refreshLoading = false;
  123. });
  124. },
  125. },
  126. };
  127. </script>
  128. <style lang="scss" scoped>
  129. .wrap {
  130. width: 100%;
  131. display: flex;
  132. flex-direction: column;
  133. box-sizing: border-box;
  134. min-height: 100vh;
  135. background: #f5f5f5;
  136. .tab {
  137. height: 40px;
  138. display: flex;
  139. align-items: center;
  140. justify-content: space-between;
  141. font-weight: 400;
  142. color: #444444;
  143. padding: 0 15px;
  144. position: relative;
  145. .tab-item {
  146. width: 30%;
  147. padding: 5px 10px;
  148. font-size: 14px;
  149. background-color: white;
  150. border-radius: 5px;
  151. text-align: center;
  152. }
  153. .current {
  154. font-weight: 500;
  155. color: #2a63f3;
  156. }
  157. }
  158. .tab-fixed {
  159. position: fixed;
  160. left: 0;
  161. right: 0;
  162. top: 44px;
  163. z-index: 999;
  164. background-image: url("~@/assets/bg-3.png");
  165. background-size: 100% auto;
  166. background-position: 0 -44px;
  167. }
  168. .box {
  169. width: 100%;
  170. }
  171. }
  172. </style>