index.vue 4.9 KB

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