index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. <template>
  2. <custom-layout class="main">
  3. <!-- <div class="loading" v-if="loading">
  4. <el-image class="image" :src="load" fit="fill" />
  5. </div> -->
  6. <div class="w_1700 one">
  7. <div class="left">
  8. <div class="left_1">
  9. <div class="titleOne">
  10. <div class="title_left">
  11. <el-image class="image" :src="left" fit="fill" />
  12. <div class="title_center">供给信息</div>
  13. <el-image class="image" :src="right" fit="fill" />
  14. </div>
  15. <div class="title_right">
  16. <el-input v-model="supply" size="large" clearable style="max-width: 300px" placeholder="请输入想要搜索的名称">
  17. <template #append>
  18. <el-button @click="searchsupply({ supplyskip: 0, supplylimit: 3 })" :icon="Search" />
  19. </template>
  20. </el-input>
  21. </div>
  22. </div>
  23. <el-empty v-if="supplytotal == 0" description="暂无数据" />
  24. <div class="leftOne" v-else>
  25. <div class="list" v-for="(item, index) in supplyList" :key="index">
  26. <div class="title">
  27. {{ item.name || '暂无供给名称' }}
  28. </div>
  29. <div class="other_1" v-if="user && user.id">
  30. <span>技术领域:</span>
  31. <span class="textOne">{{ item.field || '暂无技术领域' }}</span>
  32. </div>
  33. <div class="other_1" v-if="user && user.id">
  34. <span>所属产业:</span>
  35. <span class="textOne">{{ item.industry || '暂无所属产业' }}</span>
  36. </div>
  37. <div class="other_1" v-if="user && user.id">
  38. <span>来源:</span>
  39. <span class="textOne">{{ item.source || '暂无来源' }}</span>
  40. </div>
  41. <div class="button">
  42. <div @click="toView(item, '0')" class="detail1">查看详情</div>
  43. <div @click="toMate(item, '0')" class="detail2">匹配</div>
  44. </div>
  45. </div>
  46. <el-col :span="24" class="page">
  47. <el-pagination background layout="prev, pager, next" :total="supplytotal" :page-size="supplylimit" v-model:current-page="currentPageone" @current-change="changePageone" @size-change="sizeChangeone" />
  48. </el-col>
  49. </div>
  50. </div>
  51. <div class="left_1">
  52. <div class="titleOne">
  53. <div class="title_left">
  54. <el-image class="image" :src="left" fit="fill" />
  55. <div class="title_center">需求信息</div>
  56. <el-image class="image" :src="right" fit="fill" />
  57. </div>
  58. <div class="title_right">
  59. <el-input v-model="demand" size="large" clearable style="max-width: 300px" placeholder="请输入想要搜索的名称">
  60. <template #append>
  61. <el-button @click="searchdemand({ demandskip: 0, demandlimit: 3 })" :icon="Search" />
  62. </template>
  63. </el-input>
  64. </div>
  65. </div>
  66. <el-empty v-if="demandtotal == 0" description="暂无数据" />
  67. <div v-else class="leftOne">
  68. <div class="list" v-for="(item, index) in demandList" :key="index">
  69. <div class="title">
  70. {{ item.name || '暂无需求名称' }}
  71. </div>
  72. <div class="other_1" v-if="user && user.id">
  73. <span>需求企业:</span>
  74. <span class="textOne">{{ item.company || '暂无需求企业' }}</span>
  75. </div>
  76. <div class="other_1" v-if="user && user.id">
  77. <span>技术领域:</span>
  78. <span class="textOne">{{ item.field || '暂无技术领域' }}</span>
  79. </div>
  80. <div class="other_1" v-if="user && user.id">
  81. <span>所在地:</span>
  82. <span class="textOne">{{ getArea(item.area) || '暂无所在地' }}</span>
  83. </div>
  84. <div class="other_1" v-if="user && user.id">
  85. <span>投入预算:</span>
  86. <span class="textOne">{{ item.money || '面议' }}</span>
  87. </div>
  88. <div class="button">
  89. <div @click="toView(item, '1')" class="detail1">查看详情</div>
  90. <div @click="toMate(item, '1')" class="detail2">匹配</div>
  91. </div>
  92. </div>
  93. <el-col :span="24" class="page">
  94. <el-pagination background layout="prev, pager, next" :total="demandtotal" :page-size="demandlimit" v-model:current-page="currentPagetwo" @current-change="changePagetwo" @size-change="sizeChangetwo" />
  95. </el-col>
  96. </div>
  97. </div>
  98. </div>
  99. <div class="center"></div>
  100. <div class="right" v-if="total > 0">
  101. <div class="titleOne">
  102. <el-image class="image" :src="left" fit="fill" />
  103. <div class="title_center">匹配结果</div>
  104. <el-image class="image" :src="right" fit="fill" />
  105. </div>
  106. <div class="rightContent">
  107. <div class="list" v-for="(item, index) in list" :key="index">
  108. <div v-if="item._source == 'achievement'" @click="toView(item, '2')">
  109. <div class="title">
  110. {{ item.name || '暂无成果名称' }}
  111. </div>
  112. <div class="other_1" v-if="user && user.id">
  113. <span>技术领域:</span>
  114. <span class="textOne">{{ item.field || '暂无技术领域' }}</span>
  115. </div>
  116. <div class="other_1" v-if="user && user.id">
  117. <span>负责人:</span>
  118. <span class="textOne">{{ item.person || '暂无负责人' }}</span>
  119. </div>
  120. <div class="other_1" v-if="user && user.id">
  121. <span>所在地:</span>
  122. <span class="textOne">{{ getArea(item.area) || '暂无所在地' }}</span>
  123. </div>
  124. <div class="other_1" v-if="user && user.id">
  125. <span>推荐指数:</span>
  126. <el-rate size="large" v-model="item._recommend" disabled show-score text-color="#ff9900" :score-template="`${item._recommend} 星`" />
  127. </div>
  128. </div>
  129. <div v-if="item._source == 'supply'" @click="toView(item, '0')">
  130. <div class="title">
  131. {{ item.name || '暂无供给名称' }}
  132. </div>
  133. <div class="other_1" v-if="user && user.id">
  134. <span>技术领域:</span>
  135. <span class="textOne">{{ item.field || '暂无技术领域' }}</span>
  136. </div>
  137. <div class="other_1" v-if="user && user.id">
  138. <span>所属产业:</span>
  139. <span class="textOne">{{ item.industry || '暂无所属产业' }}</span>
  140. </div>
  141. <div class="other_1" v-if="user && user.id">
  142. <span>来源:</span>
  143. <span class="textOne">{{ item.source || '暂无来源' }}</span>
  144. </div>
  145. <div class="other_1" v-if="user && user.id">
  146. <span>推荐指数:</span>
  147. <el-rate size="large" v-model="item._recommend" disabled show-score text-color="#ff9900" :score-template="`${item._recommend} 星`" />
  148. </div>
  149. </div>
  150. <div v-if="item._source == 'demand'" @click="toView(item, '1')">
  151. <div class="title">
  152. {{ item.name || '暂无需求名称' }}
  153. </div>
  154. <div class="other_1" v-if="user && user.id">
  155. <span>需求企业:</span>
  156. <span class="textOne">{{ item.company || '暂无需求企业' }}</span>
  157. </div>
  158. <div class="other_1" v-if="user && user.id">
  159. <span>技术领域:</span>
  160. <span class="textOne">{{ item.field || '暂无技术领域' }}</span>
  161. </div>
  162. <div class="other_1" v-if="user && user.id">
  163. <span>所在地:</span>
  164. <span class="textOne">{{ getArea(item.area) || '暂无所在地' }}</span>
  165. </div>
  166. <div class="other_1" v-if="user && user.id">
  167. <span>投入预算:</span>
  168. <span class="textOne">{{ item.money || '面议' }}</span>
  169. </div>
  170. <div class="other_1" v-if="user && user.id">
  171. <span>推荐指数:</span>
  172. <el-rate size="large" v-model="item._recommend" disabled show-score text-color="#ff9900" :score-template="`${item._recommend} 星`" />
  173. </div>
  174. </div>
  175. </div>
  176. </div>
  177. <el-col :span="24" class="page">
  178. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  179. </el-col>
  180. </div>
  181. <div class="right" v-else>
  182. <div class="titleOne">
  183. <el-image class="image" :src="left" fit="fill" />
  184. <div class="title_center">匹配结果</div>
  185. <el-image class="image" :src="right" fit="fill" />
  186. </div>
  187. <el-empty description="暂无数据" />
  188. </div>
  189. </div>
  190. </custom-layout>
  191. </template>
  192. <script setup>
  193. import { Search } from '@element-plus/icons-vue'
  194. import { onBeforeRouteLeave } from 'vue-router'
  195. // 图片引入
  196. import left from '/images/top-left.png'
  197. import right from '/images/top-right.png'
  198. // import load from '/images/load.gif'
  199. // 接口
  200. import { DemandStore } from '@/store/api/platform/demand'
  201. import { SupplyStore } from '@/store/api/platform/supply'
  202. import { EsStore } from '@/store/api/es'
  203. const demandStore = DemandStore()
  204. const supplyStore = SupplyStore()
  205. const esStore = EsStore()
  206. // 用户信息
  207. import { UserStore } from '@/store/user'
  208. const userStore = UserStore()
  209. const user = computed(() => userStore.user)
  210. // 列表
  211. const supplyList = ref([])
  212. let supplyskip = 0
  213. let supplylimit = 3
  214. const supplytotal = ref(0)
  215. const demandList = ref([])
  216. let demandskip = 0
  217. let demandlimit = 3
  218. const demandtotal = ref(0)
  219. // 加载中
  220. const loading = ref(true)
  221. // 路由
  222. const router = useRouter()
  223. const keyword = ref('')
  224. const keywordId = ref()
  225. // 搜索
  226. const demand = ref('')
  227. const supply = ref('')
  228. // 类型
  229. const dataType = ref('0')
  230. // 匹配结果
  231. const list = ref([])
  232. let skip = 0
  233. let limit = 9
  234. const total = ref(0)
  235. // 请求
  236. onMounted(async () => {
  237. loading.value = true
  238. await searchOther()
  239. await searchsupply({ supplyskip, supplylimit })
  240. await searchdemand({ demandskip, demandlimit })
  241. loading.value = false
  242. })
  243. const searchOther = async () => {}
  244. // 供给信息
  245. const searchsupply = async (query = { supplyskip, supplylimit }) => {
  246. supplyskip = query.supplyskip
  247. supplylimit = query.supplylimit
  248. const info = { skip: query.supplyskip, limit: query.supplylimit, is_use: '0', status: '1', user: user.value.id }
  249. if (supply.value) info.name = supply.value
  250. let res = await supplyStore.list(info)
  251. if (res.errcode == '0') {
  252. supplyList.value = res.data
  253. supplytotal.value = res.total
  254. }
  255. if (res.total > 0) await toMate(res.data[0], '0')
  256. }
  257. // 需求信息
  258. const searchdemand = async (query = { demandskip, demandlimit }) => {
  259. demandskip = query.demandskip
  260. demandlimit = query.demandlimit
  261. const info = { skip: query.demandskip, limit: query.demandlimit, is_use: '0', status: '1', user: user.value.id }
  262. if (demand.value) info.name = demand.value
  263. let res = await demandStore.list(info)
  264. if (res.errcode == '0') {
  265. demandList.value = res.data
  266. demandtotal.value = res.total
  267. }
  268. }
  269. // 转换地区
  270. const getArea = (data) => {
  271. if (data) return data.join('-')
  272. else return '暂无'
  273. }
  274. // 查看详情
  275. const toView = (item, type) => {
  276. if (user.value.id) {
  277. if (type == '0') router.push({ path: '/supply/detail', query: { id: item.id || item._id } })
  278. else if (type == '1') router.push({ path: '/demand/detail', query: { id: item.id || item._id } })
  279. else router.push({ path: '/achievement/detail', query: { id: item.id || item._id } })
  280. } else ElMessage({ message: '未登录!', type: 'error' })
  281. }
  282. const toMate = async (item) => {
  283. loading.value = true
  284. let res
  285. keyword.value = item.name
  286. keywordId.value = item.id
  287. const query = { skip: skip, limit: limit, keyword: item.name, id: item.id }
  288. if (dataType.value == '0') res = await esStore.supply(query)
  289. else res = await esStore.demand(query)
  290. if (res.errcode == '0') {
  291. list.value = res.data
  292. total.value = res.total
  293. }
  294. loading.value = false
  295. }
  296. const currentPageone = ref(1)
  297. const currentPagetwo = ref(1)
  298. // 分页
  299. const changePageone = (page = currentPageone.value) => {
  300. searchsupply({ supplyskip: (page - 1) * supplylimit, supplylimit: supplylimit })
  301. }
  302. const sizeChangeone = (limits) => {
  303. supplylimit = limits
  304. currentPageone.value = 1
  305. searchsupply({ supplyskip: 0, supplylimit: supplylimit })
  306. }
  307. // 分页
  308. const changePagetwo = (page = currentPagetwo.value) => {
  309. searchdemand({ demandskip: (page - 1) * demandlimit, demandlimit: demandlimit })
  310. }
  311. const sizeChangetwo = (limits) => {
  312. demandlimit = limits
  313. currentPagetwo.value = 1
  314. searchdemand({ demandskip: 0, demandlimit: demandlimit })
  315. }
  316. // 匹配结果
  317. const search = async (query = { skip, limit }) => {
  318. skip = query.skip
  319. limit = query.limit
  320. const info = { skip: query.skip, limit: query.limit, keyword: keyword.value, id: keywordId.value }
  321. let res
  322. if (dataType.value != '0') res = await esStore.supply(info)
  323. else res = await esStore.demand(info)
  324. if (res.errcode == '0') {
  325. list.value = res.data
  326. total.value = res.total
  327. }
  328. }
  329. const currentPage = ref(1)
  330. // 分页
  331. const changePage = (page = currentPage.value) => {
  332. search({ skip: (page - 1) * limit, limit: limit })
  333. }
  334. const sizeChange = (limits) => {
  335. limit = limits
  336. currentPage.value = 1
  337. search({ skip: 0, limit: limit })
  338. }
  339. const scrollTop = ref(0)
  340. onActivated(() => {
  341. // 配置参数依赖于浏览器
  342. document.documentElement.scrollTop = scrollTop.value
  343. })
  344. onBeforeRouteLeave((to, from, next) => {
  345. scrollTop.value = document.documentElement.scrollTop || document.body.scrollTop
  346. next()
  347. })
  348. </script>
  349. <style scoped lang="scss">
  350. .main {
  351. .loading {
  352. width: 100%;
  353. height: 70vh;
  354. display: flex;
  355. align-items: center;
  356. justify-content: center;
  357. background-color: #5f5ff5;
  358. .image {
  359. height: 100%;
  360. }
  361. }
  362. .one {
  363. display: flex;
  364. .left {
  365. width: 50%;
  366. .left_1 {
  367. margin: 10px 0;
  368. padding: 20px 0;
  369. box-shadow: 0px 1px 9px 0px rgba(50, 122, 244, 0.12);
  370. .titleOne {
  371. display: flex;
  372. .title_left {
  373. width: 510px;
  374. display: flex;
  375. align-items: end;
  376. justify-content: flex-end;
  377. margin: 0 0 30px 0;
  378. .image {
  379. margin: 0 10px;
  380. vertical-align: middle;
  381. border-style: none;
  382. }
  383. .title_center {
  384. font-size: $global-font-size-28;
  385. font-weight: 600;
  386. }
  387. }
  388. .title_right {
  389. width: 320px;
  390. display: flex;
  391. justify-content: flex-end;
  392. align-items: flex-start;
  393. }
  394. }
  395. .leftOne {
  396. display: flex;
  397. flex-wrap: wrap;
  398. background-color: #ffffff;
  399. .list {
  400. padding-bottom: 20px;
  401. margin: 0 10px 20px 0;
  402. width: 265px;
  403. font-size: 12px;
  404. color: #666666;
  405. border: 1px solid rgb(230, 230, 230);
  406. .title {
  407. color: #002147;
  408. background-color: #c8e0fc;
  409. width: 100%;
  410. height: 36px;
  411. text-align: center;
  412. line-height: 36px;
  413. font-family: PingFangSC-Medium;
  414. font-size: 20px;
  415. font-weight: 500;
  416. overflow: hidden;
  417. text-overflow: ellipsis;
  418. display: -webkit-box;
  419. -webkit-line-clamp: 1;
  420. -webkit-box-orient: vertical;
  421. margin-bottom: 16px;
  422. }
  423. .other_1 {
  424. margin-bottom: 16px;
  425. padding: 0 20px;
  426. display: flex;
  427. color: #666666;
  428. font-size: 16px;
  429. span:first-child {
  430. max-width: 80px;
  431. }
  432. span:last-child {
  433. max-width: 140px;
  434. }
  435. }
  436. .button {
  437. display: flex;
  438. margin: 30px 0 0 0;
  439. .detail1 {
  440. font-size: 16px;
  441. display: block;
  442. margin: 0 auto;
  443. width: 90px;
  444. text-align: center;
  445. line-height: 28px;
  446. border-radius: 28px;
  447. color: #2281ee;
  448. border: 1px solid #2281ee;
  449. cursor: default;
  450. }
  451. .detail2 {
  452. font-size: 16px;
  453. display: block;
  454. margin: 0 auto;
  455. width: 90px;
  456. text-align: center;
  457. line-height: 28px;
  458. border-radius: 28px;
  459. color: #2281ee;
  460. border: 1px solid #2281ee;
  461. cursor: default;
  462. }
  463. .detail1:hover {
  464. color: #fff;
  465. background-color: #2281ee;
  466. }
  467. .detail2:hover {
  468. color: #fff;
  469. background-color: #2281ee;
  470. }
  471. }
  472. }
  473. .list:first-child {
  474. margin: 0 10px 20px 10px;
  475. }
  476. .list:nth-child(3n) {
  477. margin: 0 0 20px 0 !important;
  478. }
  479. }
  480. .page {
  481. display: flex;
  482. justify-content: center;
  483. margin: 20px 0 0 0;
  484. }
  485. }
  486. .left_1:first-child {
  487. margin: 20px 0 20px 0;
  488. }
  489. }
  490. .center {
  491. margin: 10px;
  492. border-left: 3px dashed #e5e5e5;
  493. }
  494. .right {
  495. width: 50%;
  496. .titleOne {
  497. display: flex;
  498. align-items: end;
  499. justify-content: center;
  500. margin: 30px;
  501. .image {
  502. margin: 0 10px;
  503. vertical-align: middle;
  504. border-style: none;
  505. }
  506. .title_center {
  507. font-size: $global-font-size-28;
  508. font-weight: 600;
  509. }
  510. }
  511. .rightContent {
  512. display: flex;
  513. flex-wrap: wrap;
  514. margin: 10px 0;
  515. background-color: $global-color-fff;
  516. .list {
  517. margin: 0 10px 20px 0;
  518. width: 272px;
  519. font-size: 12px;
  520. color: #666666;
  521. border: 1px solid rgb(230, 230, 230);
  522. .title {
  523. color: #002147;
  524. background-color: #c8e0fc;
  525. width: 100%;
  526. height: 36px;
  527. text-align: center;
  528. line-height: 36px;
  529. font-family: PingFangSC-Medium;
  530. font-size: 20px;
  531. font-weight: 500;
  532. overflow: hidden;
  533. text-overflow: ellipsis;
  534. display: -webkit-box;
  535. -webkit-line-clamp: 1;
  536. -webkit-box-orient: vertical;
  537. margin-bottom: 16px;
  538. padding: 0 10px;
  539. cursor: default;
  540. }
  541. .title:hover {
  542. color: #fff;
  543. background-color: #409eff;
  544. }
  545. .other_1 {
  546. margin-bottom: 10px;
  547. padding: 0 20px;
  548. display: flex;
  549. align-items: center;
  550. color: #666666;
  551. font-size: 16px;
  552. span:first-child {
  553. max-width: 80px;
  554. }
  555. span:last-child {
  556. max-width: 148px;
  557. }
  558. }
  559. }
  560. .list:nth-child(3n) {
  561. margin: 0 0 20px 0 !important;
  562. }
  563. }
  564. .page {
  565. display: flex;
  566. justify-content: center;
  567. margin: 10px 0;
  568. }
  569. }
  570. }
  571. }
  572. </style>