expert.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. <template>
  2. <div class="main">
  3. <div class="w_1300">
  4. <div class="two">
  5. <div class="twoSeacher">
  6. <div class="twoLeft">
  7. <span>行业</span>
  8. </div>
  9. <div v-if="!oneShow" class="twoRight">
  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="twoRight">
  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="twoSeacher">
  29. <div class="twoLeft">
  30. <span>技术领域</span>
  31. </div>
  32. <div v-if="!twoShow" class="twoRight">
  33. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in typeList.slice(0, 10)" :key="index" @click="toSelect(item, '2')">
  34. {{ item.label }}
  35. </div>
  36. </div>
  37. <div v-else class="twoRight">
  38. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in typeList" :key="index" @click="toSelect(item, '2')">
  39. {{ item.label }}
  40. </div>
  41. </div>
  42. <div class="button">
  43. <span v-if="!twoShow" @click="twoShow = true">
  44. <el-icon><ArrowDown /></el-icon>
  45. </span>
  46. <span v-else @click="twoShow = false">
  47. <el-icon><ArrowUp /></el-icon>
  48. </span>
  49. </div>
  50. </div>
  51. <div class="twoSeacher">
  52. <div class="twoLeft">
  53. <span>所在地</span>
  54. </div>
  55. <div class="twoRight">
  56. <div class="label" :class="[item.is_active ? 'show' : '']" v-for="(item, index) in cityList" :key="index" @click="toSelect(item, '3')">
  57. {{ item.name }}
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. <div class="two_ipunt">
  63. <el-input class="input" clearable size="large" v-model="searchForm.name" placeholder="专家名称" />
  64. <el-input class="input" clearable size="large" v-model="searchForm.tags" placeholder="标签名称" />
  65. <el-input class="input" clearable size="large" v-model="searchForm.direction" placeholder="研究方向" />
  66. <el-input class="input" clearable size="large" v-model="searchForm.industry" placeholder="所属产业" />
  67. <el-button class="button" size="large" type="primary" @click="toSearchInfo">检索</el-button>
  68. </div>
  69. <div class="twoTwo">
  70. <div class="twoTable">
  71. <div class="label" v-for="(item, index) in column" :key="index" :style="item.style">
  72. {{ item.name }}
  73. </div>
  74. </div>
  75. <div class="twoValue">
  76. <div class="value" v-for="(item, index) in list" :key="index">
  77. <div class="table-colunm table-colunm1">{{ index + 1 }}</div>
  78. <div class="table-colunm textOne">{{ item.name || '暂无' }}</div>
  79. <div class="table-colunm textOne table-colunm2">{{ item.work || '暂无' }}</div>
  80. <div class="table-colunm textOne">{{ item.title || '暂无' }}</div>
  81. <div class="table-colunm textOne">{{ item.industry || '暂无' }}</div>
  82. <div class="table-colunm button" @click="toView(item)">查看详情</div>
  83. </div>
  84. </div>
  85. <div class="twoTotal">
  86. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </template>
  92. <script setup>
  93. const $checkRes = inject('$checkRes')
  94. // 接口
  95. import { ExpertStore } from '@/store/api/user/expert'
  96. import { RegionStore } from '@/store/api/system/region'
  97. import { SectorStore } from '@/store/api/platform/sector'
  98. import { DictDataStore } from '@/store/api/system/dictData'
  99. const regionStore = RegionStore()
  100. const sectorStore = SectorStore()
  101. const store = ExpertStore()
  102. const dictDataStore = DictDataStore()
  103. // 加载中
  104. const loading = ref(false)
  105. // 路由
  106. const router = useRouter()
  107. const searchValue = inject('searchValue')
  108. // 是否展开
  109. const oneShow = ref(false)
  110. const twoShow = ref(false)
  111. const cityList = ref([])
  112. const typeList = ref([])
  113. const plateList = ref([])
  114. const column = ref([
  115. { name: '序号', style: { width: '116px' }, key: 'key' },
  116. { name: '名称', style: { width: '216px' }, key: 'name' },
  117. { name: '工作单位', style: { width: '316px' }, key: 'area' },
  118. { name: '学历/职称', style: { width: '216px' }, key: 'education' },
  119. { name: '所属产业', style: { width: '216px' }, key: 'industry' },
  120. { name: '操作', style: { width: '216px' }, key: 'operation' }
  121. ])
  122. // 列表
  123. const list = ref([])
  124. let skip = 0
  125. let limit = 15
  126. const total = ref(0)
  127. // 搜索
  128. const searchForm = ref({})
  129. // 查询
  130. const industry = ref([])
  131. const field = ref([])
  132. const city = ref([])
  133. // 请求
  134. onMounted(async () => {
  135. loading.value = true
  136. await searchOther()
  137. await search({ skip, limit })
  138. loading.value = false
  139. })
  140. const searchOther = async () => {
  141. let result
  142. // 技术领域
  143. result = await dictDataStore.query({ code: 'field', is_use: '0' })
  144. if ($checkRes(result)) typeList.value = result.data
  145. typeList.value.unshift({ id: '-1', value: '-1', label: '不限', is_active: true })
  146. result = await regionStore.list({ level: 'city', parent_code: 22 })
  147. if ($checkRes(result)) cityList.value = result.data
  148. cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
  149. result = await sectorStore.query({ is_use: '0' })
  150. if ($checkRes(result)) plateList.value = result.data
  151. plateList.value.unshift({ id: '-1', title: '不限', is_active: true })
  152. }
  153. const search = async (query = { skip, limit }) => {
  154. skip = query.skip
  155. limit = query.limit
  156. const info = { skip: query.skip, limit: query.limit, status: '1', ...searchForm.value }
  157. if (searchValue.value) info.tags = searchValue.value
  158. const res = await store.query(info)
  159. if (res.errcode == '0') {
  160. list.value = res.data
  161. total.value = res.total
  162. }
  163. }
  164. // 搜索
  165. const toSearchInfo = async () => {
  166. await search({ skip, limit })
  167. }
  168. // 查看
  169. const toView = (item) => {
  170. router.push({ path: `/expert/detail`, query: { id: item.id || item._id } })
  171. }
  172. const currentPage = ref(1)
  173. // 分页
  174. const changePage = (page = currentPage.value) => {
  175. search({ skip: (page - 1) * limit, limit: limit })
  176. }
  177. const sizeChange = (limits) => {
  178. limit = limits
  179. currentPage.value = 1
  180. search({ skip: 0, limit: limit })
  181. }
  182. // 筛选条件
  183. const toSearchFind = async () => {
  184. if (industry.value && industry.value.length > 0) {
  185. searchForm.value.industry = industry.value.map((i) => {
  186. return i.title
  187. })
  188. } else delete searchForm.value.industry
  189. if (field.value && field.value.length > 0) {
  190. searchForm.value.field = field.value.map((i) => {
  191. return i.label
  192. })
  193. } else delete searchForm.value.field
  194. if (city.value && city.value.length > 0) {
  195. searchForm.value.area = city.value.map((i) => {
  196. return i.name
  197. })
  198. } else delete searchForm.value.area
  199. await search({ skip, limit })
  200. }
  201. const toSelect = async (data, type) => {
  202. if (data.is_active) {
  203. toDel(data, type)
  204. } else {
  205. if (data.id != '-1') {
  206. if (type == '1') {
  207. for (const val of plateList.value) {
  208. if (data.id == val.id) val.is_active = true
  209. if (val.id == '-1') val.is_active = false
  210. }
  211. const res = industry.value.find((i) => i.id == data.id)
  212. if (!res) industry.value.push(data)
  213. } else if (type == '2') {
  214. for (const val of typeList.value) {
  215. if (data.id == val.id) val.is_active = true
  216. if (val.id == '-1') val.is_active = false
  217. }
  218. const res = field.value.find((i) => i.id == data.id)
  219. if (!res) field.value.push(data)
  220. } else {
  221. for (const val of cityList.value) {
  222. if (data.id == val.id) val.is_active = true
  223. if (val.id == '-1') val.is_active = false
  224. }
  225. const res = city.value.find((i) => i.id == data.id)
  226. if (!res) city.value.push(data)
  227. }
  228. } else {
  229. if (type == '1') {
  230. for (const val of plateList.value) {
  231. if (val.id == '-1') val.is_active = true
  232. else val.is_active = false
  233. }
  234. industry.value = []
  235. } else if (type == '2') {
  236. for (const val of typeList.value) {
  237. if (val.id == '-1') val.is_active = true
  238. else val.is_active = false
  239. }
  240. field.value = []
  241. } else {
  242. for (const val of cityList.value) {
  243. if (val.id == '-1') val.is_active = true
  244. else val.is_active = false
  245. }
  246. city.value = []
  247. }
  248. }
  249. }
  250. await toSearchFind()
  251. }
  252. const toDel = async (data, type) => {
  253. if (type == '1') {
  254. for (const val of plateList.value) {
  255. if (data.id == val.id) val.is_active = false
  256. }
  257. industry.value = industry.value.filter((f) => f.id != data.id)
  258. if (industry.value.length == 0) {
  259. for (const val of plateList.value) {
  260. if (val.id == '-1') val.is_active = true
  261. }
  262. }
  263. } else if (type == '2') {
  264. for (const val of typeList.value) {
  265. if (data.id == val.id) val.is_active = false
  266. }
  267. field.value = field.value.filter((f) => f.id != data.id)
  268. if (field.value.length == 0) {
  269. for (const val of typeList.value) {
  270. if (val.id == '-1') val.is_active = true
  271. }
  272. }
  273. } else {
  274. for (const val of cityList.value) {
  275. if (data.id == val.id) val.is_active = false
  276. }
  277. city.value = city.value.filter((f) => f.id != data.id)
  278. if (city.value.length == 0) {
  279. for (const val of cityList.value) {
  280. if (val.id == '-1') val.is_active = true
  281. }
  282. }
  283. }
  284. await toSearchFind()
  285. }
  286. defineExpose({
  287. search
  288. })
  289. </script>
  290. <style scoped lang="scss">
  291. .main {
  292. background: url(/images/information.jpg) no-repeat top center;
  293. background-size: 100% 100%;
  294. padding: 20px 0;
  295. .active {
  296. .active_1 {
  297. display: inline-flex;
  298. background: #f5f7f9;
  299. border-radius: 2px;
  300. min-height: 28px;
  301. line-height: 28px;
  302. margin: 10px 10px 0 0;
  303. position: relative;
  304. background-color: #fff;
  305. padding: 10px;
  306. .active_left {
  307. flex: 0 0 auto;
  308. font-family: PingFangSC-Regular;
  309. color: #525a68;
  310. line-height: 36px;
  311. }
  312. .active_right {
  313. font-family: PingFangSC-Regular;
  314. color: rgba(0, 0, 0, 0.85);
  315. line-height: 28px;
  316. padding-right: 4px;
  317. display: flex;
  318. flex-wrap: wrap;
  319. overflow: hidden;
  320. .active_label {
  321. overflow: hidden;
  322. display: inline-block;
  323. margin-right: 10px;
  324. margin-top: 3px;
  325. margin-bottom: 3px;
  326. padding: 10px;
  327. display: flex;
  328. align-items: center;
  329. flex: none;
  330. box-sizing: border-box;
  331. max-width: 100%;
  332. height: 30px;
  333. background: #f5f5f5;
  334. border: 1px solid #f0f0f0;
  335. border-radius: 2px;
  336. cursor: default;
  337. }
  338. }
  339. }
  340. }
  341. .two {
  342. padding: 10px 0;
  343. background-color: $global-color-fff;
  344. .twoSeacher {
  345. display: flex;
  346. justify-content: center;
  347. align-items: stretch;
  348. position: relative;
  349. border: solid 1px #e5e5e5;
  350. border-bottom: 0;
  351. font-size: $global-font-size-18;
  352. color: #666;
  353. min-height: 60px;
  354. overflow: hidden;
  355. .twoLeft {
  356. display: flex;
  357. justify-content: center;
  358. align-items: center;
  359. flex-shrink: 0;
  360. width: 110px;
  361. text-align: center;
  362. color: #000;
  363. font-weight: bold;
  364. background-color: #fafafa;
  365. }
  366. .twoRight {
  367. display: flex;
  368. flex-wrap: wrap;
  369. align-items: center;
  370. padding: 12px;
  371. flex: 1;
  372. border-left: solid 1px #e5e5e5;
  373. background-color: #fff;
  374. .label {
  375. margin-right: 3px;
  376. color: #313131;
  377. margin-bottom: 10px;
  378. padding: 8px 10px;
  379. border-radius: 3px;
  380. background-color: #fff;
  381. border: solid 1px transparent;
  382. cursor: pointer;
  383. }
  384. .show {
  385. color: #0a58c2;
  386. border: solid 1px #006dd2;
  387. }
  388. .label:hover {
  389. color: $global-color-107;
  390. }
  391. }
  392. .button {
  393. display: flex;
  394. align-items: center;
  395. margin: 0 5px 0 0;
  396. }
  397. }
  398. }
  399. .two_ipunt {
  400. display: flex;
  401. align-items: center;
  402. justify-content: space-between;
  403. margin: 10px 0;
  404. .input {
  405. margin: 0 5px 0 0;
  406. }
  407. .button {
  408. margin: 0 0 0 5px;
  409. }
  410. }
  411. .twoTwo {
  412. margin: 10px 0;
  413. .twoTable {
  414. display: flex;
  415. justify-content: space-between;
  416. color: $global-color-fff;
  417. font-size: $global-font-size-20;
  418. background-color: rgba(255, 255, 255, 0.1);
  419. padding: 12px 0;
  420. .label {
  421. text-align: center;
  422. }
  423. }
  424. .twoValue {
  425. color: $global-color-fff;
  426. font-size: $global-font-size-20;
  427. .value {
  428. display: flex;
  429. justify-content: space-between;
  430. padding: 12px 0;
  431. .table-colunm {
  432. width: 216px;
  433. text-align: center;
  434. }
  435. .table-colunm1 {
  436. width: 116px !important;
  437. }
  438. .table-colunm2 {
  439. width: 316px !important;
  440. }
  441. .button {
  442. cursor: pointer; /* 改变鼠标样式为手形 */
  443. }
  444. .button:hover {
  445. color: $global-color-107;
  446. }
  447. }
  448. .value:nth-child(2n) {
  449. background-color: rgba(255, 255, 255, 0.1);
  450. }
  451. }
  452. .twoTotal {
  453. display: flex;
  454. justify-content: center;
  455. margin: 20px 0;
  456. }
  457. }
  458. }
  459. </style>