index.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <template>
  2. <custom-layout v-loading="loading">
  3. <el-col :span="24" class="one">
  4. <!-- <el-image class="image" :src="news" fit="fill" /> -->
  5. <div class="input">
  6. <a-tabs v-model:activeKey="activeKey" centered @tab-click="handleClick">
  7. <a-tab-pane :key="item.key" :tab="item.tab" v-for="item in menuList"> </a-tab-pane>
  8. </a-tabs>
  9. <div class="input_1">
  10. <el-select size="large" clearable v-model="searchValue" allow-create filterable remote reserve-keyword placeholder="请输入想要搜索的内容" :remote-method="remoteMethod" :loading="searchLoading">
  11. <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
  12. </el-select>
  13. <el-button size="large" @click="onSearch" type="primary">搜索</el-button>
  14. </div>
  15. <div class="hot">
  16. <div class="hot_1">热门搜索:</div>
  17. <div class="hot_2">
  18. <span v-for="(item, index) in list" :key="index" @click="toSelect(item)">{{ item.title }}</span>
  19. </div>
  20. </div>
  21. </div>
  22. </el-col>
  23. <el-col :span="24" class="two">
  24. <index></index>
  25. </el-col>
  26. </custom-layout>
  27. </template>
  28. <script setup>
  29. // 组件
  30. import index from './parts/index.vue'
  31. import { TagsStore } from '@/store/api/system/tags'
  32. const store = TagsStore()
  33. // 加载中
  34. const loading = ref(false)
  35. const searchLoading = ref(false)
  36. const activeKey = ref('1')
  37. const searchValue = ref('')
  38. const list = ref([])
  39. const tagsList = ref([])
  40. const menuList = ref([
  41. { key: '1', tab: '全部' },
  42. { key: '3', tab: '找项目' },
  43. { key: '4', tab: '找需求' },
  44. { key: '6', tab: '找成果' },
  45. { key: '-1', tab: '更多+' }
  46. ])
  47. // 路由
  48. const router = useRouter()
  49. // 请求
  50. onMounted(async () => {
  51. loading.value = true
  52. await search()
  53. loading.value = false
  54. })
  55. const search = async () => {
  56. const info = {
  57. skip: 0,
  58. limit: 6,
  59. is_use: '0'
  60. }
  61. const res = await store.query(info)
  62. if (res.errcode == '0') list.value = res.data
  63. }
  64. const onSearch = async () => {
  65. router.push({ path: '/search', query: { name: searchValue.value, type: activeKey.value } })
  66. }
  67. const toSelect = (item) => {
  68. searchValue.value = item.title
  69. router.push({ path: '/search', query: { name: item.title, type: activeKey.value } })
  70. }
  71. const remoteMethod = (query) => {
  72. if (query) {
  73. searchLoading.value = true
  74. setTimeout(async () => {
  75. searchLoading.value = false
  76. const info = {
  77. is_use: '0',
  78. title: query
  79. }
  80. const res = await store.query(info)
  81. if (res.errcode == '0') tagsList.value = res.data
  82. }, 200)
  83. } else {
  84. tagsList.value = []
  85. }
  86. }
  87. // 选择
  88. const handleClick = (tab) => {
  89. if (tab == -1) {
  90. menuList.value = [
  91. { key: '-1', tab: '全部' },
  92. { key: '3', tab: '找项目' },
  93. { key: '4', tab: '找需求' },
  94. { key: '5', tab: '找供给' },
  95. { key: '6', tab: '找成果' },
  96. { key: '1', tab: '找企业' }
  97. ]
  98. }
  99. }
  100. </script>
  101. <style scoped lang="scss">
  102. .main {
  103. .one {
  104. display: flex;
  105. align-items: center;
  106. justify-content: center;
  107. width: 100%;
  108. height: 200px;
  109. background: url(/images/bg.png);
  110. background-size: 100% 100%;
  111. .input {
  112. width: 830px;
  113. .input_1 {
  114. display: flex;
  115. }
  116. .hot {
  117. display: flex;
  118. margin: 10px 0 0 0;
  119. padding: 10px;
  120. .hot_1 {
  121. font-size: $global-font-size-18;
  122. font-family:
  123. PingFangSC-Regular,
  124. PingFang SC;
  125. font-weight: 400;
  126. }
  127. .hot_2 {
  128. span {
  129. margin: 0 10px;
  130. font-size: $global-font-size-18;
  131. font-family:
  132. PingFangSC-Regular,
  133. PingFang SC;
  134. font-weight: 400;
  135. color: #666;
  136. line-height: $global-font-size-18;
  137. cursor: pointer;
  138. }
  139. span:hover {
  140. color: #1989fa;
  141. }
  142. }
  143. }
  144. :deep(.ant-tabs .ant-tabs-tab) {
  145. font-size: $global-font-size-18 !important;
  146. }
  147. }
  148. }
  149. }
  150. </style>