company.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. <template>
  2. <div class="main">
  3. <div class="w_1300">
  4. <el-col :span="24" class="two">
  5. <div class="Seacher">
  6. <div class="Left">
  7. <span>行业</span>
  8. </div>
  9. <div v-if="!oneShow" class="Right">
  10. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in plateList.slice(0, 6)" :key="index" @click="toSelect(item, '1')">
  11. {{ item.title }}
  12. </div>
  13. </div>
  14. <div v-else class="Right">
  15. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in plateList" :key="index" @click="toSelect(item, '1')">
  16. {{ item.title }}
  17. </div>
  18. </div>
  19. <div class="button">
  20. <span v-if="!oneShow" @click="oneShow = true">
  21. <el-icon><ArrowDown /></el-icon>
  22. </span>
  23. <span v-else @click="oneShow = false">
  24. <el-icon><ArrowUp /></el-icon>
  25. </span>
  26. </div>
  27. </div>
  28. <div class="Seacher">
  29. <div class="Left">
  30. <span>企业类型</span>
  31. </div>
  32. <div class="Right">
  33. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in patternList" :key="index" @click="toSelect(item, '2')">
  34. {{ item.label }}
  35. </div>
  36. </div>
  37. </div>
  38. <div class="Seacher border">
  39. <div class="Left">
  40. <span>所在地</span>
  41. </div>
  42. <div class="Right">
  43. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in cityList" :key="index" @click="toSelect(item, '3')">
  44. {{ item.name }}
  45. </div>
  46. </div>
  47. </div>
  48. <!-- <div class="two_ipunt">
  49. <el-input class="input" clearable size="large" v-model="searchForm.name" placeholder="公司名称" />
  50. <el-input class="input" clearable size="large" v-model="searchForm.tags" placeholder="标签名称" />
  51. <el-input class="input" clearable size="large" v-model="searchForm.direction" placeholder="研究方向" />
  52. <el-input class="input" clearable size="large" v-model="searchForm.scale" placeholder="公司规模" />
  53. <el-button class="button" size="large" type="primary" @click="toSearchInfo">检索</el-button>
  54. </div> -->
  55. </el-col>
  56. <div class="thr">
  57. <div class="list" :class="['list' + index]" v-for="(item, index) in list" :key="index" @click="toView(item)">
  58. <div class="name">{{ item.name || '暂无' }}</div>
  59. <div class="other">
  60. <div class="other_1">
  61. <el-image class="image" :src="getUrl(item.logo)" fit="fill">
  62. <template v-slot:error>
  63. <el-image class="image" :src="companyLogo" fit="fill" />
  64. </template>
  65. </el-image>
  66. </div>
  67. <div class="other_2" v-if="user && user.id">
  68. <span class="text"><em>企业类型:</em>{{ getDict(item.pattern, 'pattern') || '暂无' }}</span>
  69. <span class="text"><em>员工人数:</em>{{ item.person || '暂无' }}人</span>
  70. <span class="text"><em>地址:</em>{{ getArea(item.area) || '暂无' }}</span>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. <div class="four">
  76. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  77. </div>
  78. </div>
  79. </div>
  80. </template>
  81. <script setup>
  82. // 图片引入
  83. import companyLogo from '/images/companyLogo.jpg'
  84. const $checkRes = inject('$checkRes')
  85. import { get } from 'lodash-es'
  86. // 接口
  87. import { RegionStore } from '@/store/api/system/region'
  88. import { SectorStore } from '@/store/api/platform/sector'
  89. import { DictDataStore } from '@/store/api/system/dictData'
  90. import { EsStore } from '@/store/api/es'
  91. const esStore = EsStore()
  92. const regionStore = RegionStore()
  93. const sectorStore = SectorStore()
  94. const dictDataStore = DictDataStore()
  95. // 用户信息
  96. import { UserStore } from '@/store/user'
  97. const userStore = UserStore()
  98. const user = computed(() => userStore.user)
  99. // 加载中
  100. const loading = ref(false)
  101. const searchValue = inject('searchValue')
  102. // 路由
  103. const router = useRouter()
  104. const list = ref([])
  105. let skip = 0
  106. let limit = 15
  107. const total = ref(0)
  108. // 是否展开
  109. const oneShow = ref(false)
  110. // 字典表
  111. const fieldList = ref([])
  112. const statusList = ref([])
  113. const patternList = ref([])
  114. const scaleList = ref([])
  115. const cityList = ref([])
  116. const plateList = ref([])
  117. // 搜索
  118. const searchForm = ref({})
  119. // 查询
  120. const industry = ref([])
  121. const pattern = ref([])
  122. const city = ref([])
  123. // 请求
  124. onMounted(async () => {
  125. loading.value = true
  126. await searchOther()
  127. await search({ skip, limit })
  128. loading.value = false
  129. })
  130. const searchOther = async () => {
  131. let result
  132. // // 技术领域
  133. // result = await dictDataStore.query({ code: 'field', is_use: '0' })
  134. // if ($checkRes(result)) fieldList.value = result.data
  135. // // 企业状态
  136. // result = await dictDataStore.query({ code: 'companyStatus', is_use: '0' })
  137. // if ($checkRes(result)) statusList.value = result.data
  138. // 企业类型
  139. result = await dictDataStore.query({ code: 'companyType', is_use: '0' })
  140. if ($checkRes(result)) patternList.value = result.data
  141. patternList.value.unshift({ id: '-1', value: '-1', label: '不限', is_active: true })
  142. // 企业规模
  143. result = await dictDataStore.query({ code: 'companyScale', is_use: '0' })
  144. if ($checkRes(result)) scaleList.value = result.data
  145. // // 企业所属行业
  146. // result = await dictDataStore.query({ code: 'companyIndustry', is_use: '0' })
  147. // if ($checkRes(result)) IndustryList.value = result.data
  148. result = await regionStore.list({ level: 'city', parent_code: 22 })
  149. if ($checkRes(result)) cityList.value = result.data
  150. cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
  151. result = await sectorStore.query({ is_use: '0' })
  152. if ($checkRes(result)) plateList.value = result.data
  153. plateList.value.unshift({ id: '-1', title: '不限', is_active: true })
  154. }
  155. const search = async (query = { skip, limit }) => {
  156. skip = query.skip
  157. limit = query.limit
  158. const info = { skip: query.skip, limit: query.limit, status: '1', ...searchForm.value }
  159. if (searchValue.value) info.keyword = searchValue.value
  160. const res = await esStore.Scompany(info)
  161. if (res.errcode == '0') {
  162. list.value = res.data
  163. total.value = res.total
  164. }
  165. }
  166. // 地区
  167. const getArea = (data) => {
  168. if (data) return data.join('-')
  169. else return '暂无地区'
  170. }
  171. // 字典数据转换
  172. const getDict = (data, model) => {
  173. let res
  174. if (model == 'field') res = fieldList.value.find((f) => f.value == data)
  175. else if (model == 'status') res = statusList.value.find((f) => f.value == data)
  176. else if (model == 'pattern') res = patternList.value.find((f) => f.value == data)
  177. else if (model == 'scale') res = scaleList.value.find((f) => f.value == data)
  178. return get(res, 'label')
  179. }
  180. // 搜索
  181. const toSearchInfo = async () => {
  182. await search({ skip, limit })
  183. }
  184. // 查看
  185. const toView = (item) => {
  186. if (user.value.id) {
  187. router.push({ path: `/company/detail`, query: { id: item.id || item._id } })
  188. } else ElMessage({ message: '未登录!', type: 'error' })
  189. }
  190. const getUrl = (item) => {
  191. if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
  192. }
  193. const currentPage = ref(1)
  194. // 分页
  195. const changePage = (page = currentPage.value) => {
  196. search({ skip: (page - 1) * limit, limit: limit })
  197. }
  198. const sizeChange = (limits) => {
  199. limit = limits
  200. currentPage.value = 1
  201. search({ skip: 0, limit: limit })
  202. }
  203. // 筛选条件
  204. const toSearchFind = async () => {
  205. if (industry.value && industry.value.length > 0) {
  206. searchForm.value.industry = industry.value.map((i) => {
  207. return i.title
  208. })
  209. } else delete searchForm.value.industry
  210. if (pattern.value && pattern.value.length > 0) {
  211. searchForm.value.pattern = pattern.value.map((i) => {
  212. return i.value
  213. })
  214. } else delete searchForm.value.pattern
  215. if (city.value && city.value.length > 0) {
  216. searchForm.value.area = city.value.map((i) => {
  217. return i.name
  218. })
  219. } else delete searchForm.value.area
  220. await search({ skip, limit })
  221. }
  222. const toSelect = async (data, type) => {
  223. if (data.is_active) {
  224. toDel(data, type)
  225. } else {
  226. if (data.id != '-1') {
  227. if (type == '1') {
  228. for (const val of plateList.value) {
  229. if (data.id == val.id) val.is_active = true
  230. if (val.id == '-1') val.is_active = false
  231. }
  232. const res = industry.value.find((i) => i.id == data.id)
  233. if (!res) industry.value.push(data)
  234. } else if (type == '2') {
  235. for (const val of patternList.value) {
  236. if (data.id == val.id) val.is_active = true
  237. if (val.id == '-1') val.is_active = false
  238. }
  239. const res = pattern.value.find((i) => i.id == data.id)
  240. if (!res) pattern.value.push(data)
  241. } else {
  242. for (const val of cityList.value) {
  243. if (data.id == val.id) val.is_active = true
  244. if (val.id == '-1') val.is_active = false
  245. }
  246. const res = city.value.find((i) => i.id == data.id)
  247. if (!res) city.value.push(data)
  248. }
  249. } else {
  250. if (type == '1') {
  251. for (const val of plateList.value) {
  252. if (val.id == '-1') val.is_active = true
  253. else val.is_active = false
  254. }
  255. industry.value = []
  256. } else if (type == '2') {
  257. for (const val of patternList.value) {
  258. if (val.id == '-1') val.is_active = true
  259. else val.is_active = false
  260. }
  261. pattern.value = []
  262. } else {
  263. for (const val of cityList.value) {
  264. if (val.id == '-1') val.is_active = true
  265. else val.is_active = false
  266. }
  267. city.value = []
  268. }
  269. }
  270. }
  271. await toSearchFind()
  272. }
  273. const toDel = async (data, type) => {
  274. if (type == '1') {
  275. for (const val of plateList.value) {
  276. if (data.id == val.id) val.is_active = false
  277. }
  278. industry.value = industry.value.filter((f) => f.id != data.id)
  279. if (industry.value.length == 0) {
  280. for (const val of plateList.value) {
  281. if (val.id == '-1') val.is_active = true
  282. }
  283. }
  284. } else if (type == '2') {
  285. for (const val of patternList.value) {
  286. if (data.id == val.id) val.is_active = false
  287. }
  288. pattern.value = pattern.value.filter((f) => f.id != data.id)
  289. if (pattern.value.length == 0) {
  290. for (const val of patternList.value) {
  291. if (val.id == '-1') val.is_active = true
  292. }
  293. }
  294. } else {
  295. for (const val of cityList.value) {
  296. if (data.id == val.id) val.is_active = false
  297. }
  298. city.value = city.value.filter((f) => f.id != data.id)
  299. if (city.value.length == 0) {
  300. for (const val of cityList.value) {
  301. if (val.id == '-1') val.is_active = true
  302. }
  303. }
  304. }
  305. await toSearchFind()
  306. }
  307. defineExpose({
  308. search
  309. })
  310. </script>
  311. <style scoped lang="scss">
  312. .main {
  313. padding: 10px 0;
  314. .one {
  315. .image {
  316. width: 100%;
  317. height: 350px;
  318. }
  319. }
  320. .active {
  321. .active_1 {
  322. display: inline-flex;
  323. background: #f5f7f9;
  324. border-radius: 2px;
  325. min-height: 28px;
  326. line-height: 28px;
  327. margin: 0 10px 0 0;
  328. position: relative;
  329. background-color: #fff;
  330. padding: 10px;
  331. .active_left {
  332. flex: 0 0 auto;
  333. font-family: PingFangSC-Regular;
  334. color: #525a68;
  335. line-height: 36px;
  336. }
  337. .active_right {
  338. font-family: PingFangSC-Regular;
  339. color: rgba(0, 0, 0, 0.85);
  340. line-height: 28px;
  341. padding-right: 4px;
  342. display: flex;
  343. flex-wrap: wrap;
  344. overflow: hidden;
  345. .active_label {
  346. overflow: hidden;
  347. display: inline-block;
  348. margin-right: 10px;
  349. margin-top: 3px;
  350. margin-bottom: 3px;
  351. padding: 10px;
  352. display: flex;
  353. align-items: center;
  354. flex: none;
  355. box-sizing: border-box;
  356. max-width: 100%;
  357. height: 30px;
  358. background: #f5f5f5;
  359. border: 1px solid #f0f0f0;
  360. border-radius: 2px;
  361. cursor: default;
  362. }
  363. }
  364. }
  365. }
  366. .two {
  367. margin: 0 0 20px 0;
  368. .Seacher {
  369. display: flex;
  370. justify-content: center;
  371. align-items: stretch;
  372. position: relative;
  373. border: solid 1px #e5e5e5;
  374. border-bottom: 0;
  375. font-size: $global-font-size-18;
  376. color: #666;
  377. min-height: 60px;
  378. overflow: hidden;
  379. .Left {
  380. display: flex;
  381. justify-content: center;
  382. align-items: center;
  383. flex-shrink: 0;
  384. width: 110px;
  385. text-align: center;
  386. color: #000;
  387. font-weight: bold;
  388. background-color: #fafafa;
  389. }
  390. .Right {
  391. display: flex;
  392. flex-wrap: wrap;
  393. align-items: center;
  394. padding: 12px;
  395. flex: 1;
  396. border-left: solid 1px #e5e5e5;
  397. background-color: #fff;
  398. .label {
  399. margin-right: 3px;
  400. color: #313131;
  401. margin-bottom: 10px;
  402. padding: 8px 10px;
  403. border-radius: 3px;
  404. background-color: #fff;
  405. border: solid 1px transparent;
  406. cursor: pointer;
  407. }
  408. .show {
  409. color: #0a58c2;
  410. border: solid 1px #006dd2;
  411. }
  412. .label:hover {
  413. color: $global-color-107;
  414. }
  415. }
  416. .button {
  417. display: flex;
  418. align-items: center;
  419. margin: 0 5px 0 0;
  420. }
  421. }
  422. .border {
  423. border: solid 1px #e5e5e5;
  424. border-bottom: 1;
  425. }
  426. .two_ipunt {
  427. display: flex;
  428. align-items: center;
  429. justify-content: space-between;
  430. margin: 10px 0;
  431. .input {
  432. margin: 0 5px 0 0;
  433. }
  434. .button {
  435. margin: 0 0 0 5px;
  436. }
  437. }
  438. }
  439. .thr {
  440. display: flex;
  441. align-items: center;
  442. flex-wrap: wrap;
  443. .list {
  444. float: left;
  445. width: 420px;
  446. padding: 15px;
  447. margin: 0 20px 25px 0;
  448. background: #f0f8ff;
  449. color: #000;
  450. .name {
  451. height: 57px;
  452. line-height: 57px;
  453. overflow: hidden;
  454. font-size: $global-font-size-18;
  455. font-weight: bold;
  456. }
  457. .other {
  458. display: flex;
  459. .other_1 {
  460. .image {
  461. width: 95px;
  462. height: 95px;
  463. display: inline-block;
  464. }
  465. }
  466. .other_2 {
  467. display: flex;
  468. flex-direction: column;
  469. margin: 0 0 0 10px;
  470. .text {
  471. height: 25px;
  472. display: block;
  473. line-height: 24px;
  474. overflow: hidden;
  475. color: #666;
  476. margin-bottom: 10px;
  477. em {
  478. border: 1px #ccc solid;
  479. background: #fff;
  480. border: 1px #ab94f8 solid;
  481. padding: 1px 5px;
  482. color: #4131bb;
  483. margin-right: 6px;
  484. }
  485. }
  486. }
  487. }
  488. }
  489. .list:nth-child(3n) {
  490. margin: 0 0 25px 0;
  491. }
  492. }
  493. .four {
  494. display: flex;
  495. justify-content: center;
  496. margin: 20px 0;
  497. }
  498. }
  499. </style>