supply.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <template>
  2. <div class="main">
  3. <div class="one">
  4. <div class="w_1300">
  5. <custom-search :cityList="cityList" :typeList="typeList" :plateList="plateList" :fields="fields" :searchFields="searchFields" @toSearchInfo="toSearchInfo"></custom-search>
  6. </div>
  7. </div>
  8. <div class="w_1300">
  9. <el-col :span="24" class="two">
  10. <div class="list" v-for="(item, index) in list" :key="index">
  11. <div class="title">
  12. {{ item.name || '暂无供给名称' }}
  13. </div>
  14. <div class="other_1 textOne" v-if="user && user.id">
  15. <span>技术领域:</span>
  16. <span>{{ item.field || '暂无技术领域' }}</span>
  17. </div>
  18. <div class="other_1 textOne" v-if="user && user.id">
  19. <span>所属产业:</span>
  20. <span>{{ item.industry || '暂无所属产业' }}</span>
  21. </div>
  22. <div class="other_1 textOne" v-if="user && user.id">
  23. <span>来源:</span>
  24. <span>{{ item.source || '暂无来源' }}</span>
  25. </div>
  26. <div class="button">
  27. <div @click="toView(item)" class="detail">查看详情</div>
  28. </div>
  29. </div>
  30. </el-col>
  31. </div>
  32. <el-col :span="24" class="thr">
  33. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  34. </el-col>
  35. </div>
  36. </template>
  37. <script setup>
  38. // 接口
  39. import { RegionStore } from '@/store/api/system/region'
  40. import { SectorStore } from '@/store/api/platform/sector'
  41. import { DictDataStore } from '@/store/api/system/dictData'
  42. import { EsStore } from '@/store/api/es'
  43. const esStore = EsStore()
  44. const regionStore = RegionStore()
  45. const sectorStore = SectorStore()
  46. const dictDataStore = DictDataStore()
  47. // 用户信息
  48. import { UserStore } from '@/store/user'
  49. const userStore = UserStore()
  50. const user = computed(() => userStore.user)
  51. const searchValue = inject('searchValue')
  52. // 加载中
  53. const loading = ref(false)
  54. // 路由
  55. const router = useRouter()
  56. // 列表
  57. const searchForm = ref({})
  58. const list = ref([])
  59. let skip = 0
  60. let limit = inject('limit')
  61. const total = ref(6)
  62. // 字典表
  63. const cityList = ref([])
  64. const plateList = ref([])
  65. const typeList = ref([])
  66. const fields = ref([
  67. { model: 'name', label: '供应名称' },
  68. { model: 'tags', label: '标签名称' },
  69. { model: 'source', label: '所属来源' }
  70. ])
  71. const searchFields = ref([
  72. { title: '行业', type: '1', list: plateList },
  73. { title: '技术领域', type: '2', list: typeList },
  74. { title: '所在地', type: '3', list: cityList }
  75. ])
  76. // 请求
  77. onMounted(async () => {
  78. loading.value = true
  79. await searchOther()
  80. await search({ skip, limit })
  81. loading.value = false
  82. })
  83. const searchOther = async () => {
  84. let res
  85. // 城市
  86. res = await regionStore.list({ level: 'city', parent_code: 22 })
  87. if (res.errcode == '0') cityList.value = res.data
  88. cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
  89. // 行业
  90. res = await sectorStore.query({ is_use: '0' })
  91. if (res.errcode == '0') plateList.value = res.data
  92. plateList.value.unshift({ id: '-1', title: '不限', is_active: true })
  93. // 技术领域
  94. res = await dictDataStore.query({ code: 'field', is_use: '0' })
  95. if (res.errcode == '0') typeList.value = res.data
  96. typeList.value.unshift({ id: '-1', value: '-1', label: '不限', is_active: true })
  97. }
  98. const search = async (query = { skip, limit }) => {
  99. skip = query.skip
  100. limit = query.limit
  101. const info = { skip: query.skip, limit: query.limit, is_use: '0', status: '1', ...searchForm.value }
  102. if (searchValue.value) info.keyword = searchValue.value
  103. const res = await esStore.Ssupply(info)
  104. if (res.errcode == '0') {
  105. list.value = res.data
  106. total.value = res.total
  107. }
  108. }
  109. // 搜索
  110. const toSearchInfo = async (data) => {
  111. searchForm.value = data
  112. await search({ skip, limit })
  113. }
  114. // 查看详情
  115. const toView = (item) => {
  116. if (user.value.id) {
  117. router.push({ path: '/supply/detail', query: { id: item.id || item._id } })
  118. } else ElMessage({ message: '未登录!', type: 'error' })
  119. }
  120. const currentPage = ref(1)
  121. // 分页
  122. const changePage = (page = currentPage.value) => {
  123. search({ skip: (page - 1) * limit, limit: limit })
  124. }
  125. const sizeChange = (limits) => {
  126. limit = limits
  127. currentPage.value = 1
  128. search({ skip: 0, limit: limit })
  129. }
  130. </script>
  131. <style scoped lang="scss">
  132. .main {
  133. .one {
  134. margin: 10px 0 0 0;
  135. }
  136. .two {
  137. display: flex;
  138. justify-content: space-between;
  139. flex-wrap: wrap;
  140. margin: 10px 0;
  141. background-color: $global-color-fff;
  142. .list {
  143. padding-bottom: 20px;
  144. margin: 0 0 20px 0;
  145. width: 310px;
  146. font-size: 12px;
  147. color: #666666;
  148. border: 1px solid rgb(230, 230, 230);
  149. .title {
  150. color: #002147;
  151. background-color: #c8e0fc;
  152. width: 100%;
  153. height: 36px;
  154. text-align: center;
  155. line-height: 36px;
  156. font-family: PingFangSC-Medium;
  157. font-size: 20px;
  158. font-weight: 500;
  159. overflow: hidden;
  160. text-overflow: ellipsis;
  161. display: -webkit-box;
  162. -webkit-line-clamp: 1;
  163. -webkit-box-orient: vertical;
  164. margin-bottom: 16px;
  165. }
  166. .other_1 {
  167. margin-bottom: 16px;
  168. padding: 0 20px;
  169. display: flex;
  170. color: #666666;
  171. font-size: 16px;
  172. }
  173. .button {
  174. margin: 30px 0 0 0;
  175. .detail {
  176. font-size: 16px;
  177. display: block;
  178. margin: 0 auto;
  179. width: 90px;
  180. height: 28px;
  181. text-align: center;
  182. line-height: 28px;
  183. border-radius: 28px;
  184. color: #2281ee;
  185. border: 1px solid #2281ee;
  186. cursor: default;
  187. }
  188. }
  189. }
  190. .list:hover {
  191. .button {
  192. .detail {
  193. color: #fff;
  194. background-color: #2281ee;
  195. }
  196. }
  197. }
  198. }
  199. .thr {
  200. display: flex;
  201. justify-content: center;
  202. margin: 20px 0;
  203. }
  204. }
  205. </style>