123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513 |
- <template>
- <div id="index">
- <el-row>
- <el-col :span="24" class="main animate__animated animate__backInRight">
- <el-col :span="24" class="idemand">
- <el-image class="image" :src="demand" fit="fill" />
- <div class="select">
- <el-row class="select_1">
- <el-col class="over" :span="6" v-if="oneList.length > 0">
- <div class="list">
- <div class="left">技术领域:</div>
- <div class="right">
- <div class="label" v-for="(item, index) in oneList" :key="index">
- {{ item.label }}<el-icon @click="toDel(item, 'one')"><Close /></el-icon>
- </div>
- </div>
- </div>
- </el-col>
- <el-col class="over" :span="6" v-if="twoList.length > 0">
- <div class="list">
- <div class="left">职称:</div>
- <div class="right">
- <div class="label" v-for="(item, index) in twoList" :key="index">
- {{ item.label }}<el-icon @click="toDel(item, 'two')"><Close /></el-icon>
- </div>
- </div>
- </div>
- </el-col>
- <el-col class="over" :span="6" v-if="thrList.length > 0">
- <div class="list">
- <div class="left">所在地区:</div>
- <div class="right">
- <div class="label" v-for="(item, index) in thrList" :key="index">
- {{ item.label }}<el-icon @click="toDel(item, 'thr')"><Close /></el-icon>
- </div>
- </div>
- </div>
- </el-col>
- <el-col class="over" :span="6" v-if="fourList.length > 0">
- <div class="list">
- <div class="left">学历:</div>
- <div class="right">
- <div class="label" v-for="(item, index) in fourList" :key="index">
- {{ item.label }}<el-icon @click="toDel(item, 'four')"><Close /></el-icon>
- </div>
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- </el-col>
- <div class="w_1200">
- <el-col :span="24" class="one">
- <el-row class="one_1">
- <el-col :span="3" class="left">技术领域</el-col>
- <el-col :span="21" class="right">
- <a-button
- class="title"
- v-for="(item, index) in fieldList"
- :key="index"
- type="link"
- size="samll"
- @click="toSelect(item, 'one')"
- :class="[item.is_active ? 'show' : '']"
- >
- {{ item.label }}
- </a-button>
- </el-col>
- </el-row>
- <el-row class="one_1">
- <el-col :span="3" class="left">职称</el-col>
- <el-col :span="21" class="right">
- <a-button
- class="title"
- v-for="(item, index) in titleList"
- :key="index"
- type="link"
- size="samll"
- @click="toSelect(item, 'two')"
- :class="[item.is_active ? 'show' : '']"
- >
- {{ item.label }}
- </a-button>
- </el-col>
- </el-row>
- <el-row class="one_1">
- <el-col :span="3" class="left">所在地区</el-col>
- <el-col :span="21" class="right">
- <a-button
- class="title"
- v-for="(item, index) in cityList"
- :key="index"
- type="link"
- size="samll"
- @click="toSelect(item, 'thr')"
- :class="[item.is_active ? 'show' : '']"
- >
- {{ item.label }}
- </a-button>
- </el-col>
- </el-row>
- <el-row class="one_1">
- <el-col :span="3" class="left">学历</el-col>
- <el-col :span="21" class="right">
- <a-button
- class="title"
- v-for="(item, index) in educationList"
- :key="index"
- type="link"
- size="samll"
- @click="toSelect(item, 'four')"
- :class="[item.is_active ? 'show' : '']"
- >
- {{ item.label }}
- </a-button>
- </el-col>
- </el-row>
- </el-col>
- <el-col :span="24" class="two">
- <a-list :loading="loading" :grid="{ gutter: 14, column: 4 }" :data-source="list">
- <template #renderItem="{ item }">
- <el-col :span="24" class="list" @click="toView(item)">
- <el-col :span="24" class="name textOver">
- <el-tooltip effect="dark" :content="item.name" placement="top">
- {{ item.name || '暂无姓名' }}
- </el-tooltip>
- <div class="tags">
- <el-tag type="primary" v-if="item.title">{{
- getDict(item.title, 'title')
- }}</el-tag>
- <el-tag type="success" v-if="item.education">{{
- getDict(item.education, 'education')
- }}</el-tag>
- </div>
- </el-col>
- <el-col :span="24" class="two_1">
- <span>所在地区:</span>
- {{ getArea(item.area) }}
- </el-col>
- <el-col :span="24" class="two_1">
- <span>技术领域:</span>
- {{ getDict(item.field, 'field') }}
- </el-col>
- <el-col :span="24" class="two_1 textOver">
- <span>研究方向:</span>
- {{ item.direction || '暂无' }}
- </el-col>
- <el-col :span="24" class="two_1 textOver">
- <span>工作单位:</span>
- {{ item.work || '暂无' }}
- </el-col>
- <el-col :span="24" class="bottom">
- <el-button @click.stop="toChat(item)" type="primary" size="small">
- 联络专家
- </el-button>
- </el-col>
- </el-col>
- </template>
- </a-list>
- </el-col>
- <el-col :span="24" class="thr">
- <el-pagination
- background
- layout="total, prev, pager, next"
- :page-sizes="[10, 20, 50, 100, 200]"
- :total="total"
- :page-size="limit"
- v-model:current-page="currentPage"
- @current-change="changePage"
- @size-change="sizeChange"
- >
- </el-pagination>
- </el-col>
- </div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup>
- import { getCity } from '@/utils/city'
- const $checkRes = inject('$checkRes')
- import { get } from 'lodash-es'
- // 接口
- import { ExpertStore } from '@/store/api/user/expert'
- import { DictDataStore } from '@/store/api/system/dictData'
- const store = ExpertStore()
- const dictDataStore = DictDataStore()
- // 图片引入
- import demand from '@/assets/innovation.png'
- // 路由
- const router = useRouter()
- // 加载中
- const loading = ref(false)
- const searchForm = ref({})
- // 列表
- const list = ref([])
- let skip = 0
- let limit = inject('limit')
- const total = ref(0)
- // 字典表
- const educationList = ref([])
- const fieldList = ref([])
- const titleList = ref([])
- const cityList = ref([])
- // 查询
- const oneList = ref([])
- const twoList = ref([])
- const thrList = ref([])
- const fourList = ref([])
- // 查看
- const toView = (item) => {
- router.push({ path: '/expert/detail', query: { id: item.id || item._id } })
- }
- // 请求
- onMounted(async () => {
- loading.value = true
- await searchOther()
- await search({ skip, limit })
- loading.value = false
- })
- const searchOther = async () => {
- let result
- // 学历
- result = await dictDataStore.query({ code: 'education', is_use: '0' })
- if ($checkRes(result)) educationList.value = result.data
- // 技术领域
- result = await dictDataStore.query({ code: 'field', is_use: '0' })
- if ($checkRes(result)) fieldList.value = result.data
- // 职称
- result = await dictDataStore.query({ code: 'title', is_use: '0' })
- if ($checkRes(result)) titleList.value = result.data
- // 城市
- getCity().then((response) => (cityList.value = response.address))
- }
- const search = async (query = { skip: 0, limit }) => {
- const info = {
- skip: query.skip,
- limit: query.limit,
- ...searchForm.value,
- is_show: '0',
- status: '1'
- }
- const res = await store.query(info)
- if (res.errcode == '0') {
- list.value = res.data
- total.value = res.total
- }
- }
- // 字典数据转换
- const getDict = (data, model) => {
- let res
- if (model == 'education') res = educationList.value.find((f) => f.value == data)
- if (model == 'field') res = fieldList.value.find((f) => f.value == data)
- if (model == 'title') res = titleList.value.find((f) => f.value == data)
- return get(res, 'label')
- }
- // 地区显示
- const getArea = (data) => {
- if (data) return data.join(',')
- else return '暂无地区'
- }
- // 联络专家
- const toChat = (item) => {
- router.push({ path: '/chat', query: { id: item.user } })
- }
- // 选择查询
- const toSelect = (item, num) => {
- if (num == 'one') {
- for (const val of fieldList.value) {
- if (val.value == item.value) val.is_active = true
- }
- const one = oneList.value.find((f) => f.value == item.value)
- if (!one) oneList.value.push(item)
- else oneList.value = oneList.value.filter((f) => f.value == item.value)
- }
- if (num == 'two') {
- for (const val of titleList.value) {
- if (val.value == item.value) val.is_active = true
- }
- const two = twoList.value.find((f) => f.value == item.value)
- if (!two) twoList.value.push(item)
- else twoList.value = twoList.value.filter((f) => f.value == item.value)
- }
- if (num == 'thr') {
- for (const val of cityList.value) {
- if (val.value == item.value) val.is_active = true
- }
- const thr = thrList.value.find((f) => f.value == item.value)
- if (!thr) thrList.value.push(item)
- else thrList.value = thrList.value.filter((f) => f.value == item.value)
- }
- if (num == 'four') {
- for (const val of educationList.value) {
- if (val.value == item.value) val.is_active = true
- }
- const four = fourList.value.find((f) => f.value == item.value)
- if (!four) fourList.value.push(item)
- else fourList.value = fourList.value.filter((f) => f.value == item.value)
- }
- }
- // 删除标签
- const toDel = (item, type) => {
- if (type == 'one') {
- const one = oneList.value.filter((f) => f.value != item.value)
- oneList.value = one
- for (const i of fieldList.value) {
- if (i.value == item.value) i.is_active = !i.is_active
- }
- }
- if (type == 'two') {
- const two = twoList.value.filter((f) => f.value != item.value)
- twoList.value = two
- for (const i of titleList.value) {
- if (i.value == item.value) i.is_active = !i.is_active
- }
- }
- if (type == 'thr') {
- const thr = thrList.value.filter((f) => f.value != item.value)
- thrList.value = thr
- for (const i of cityList.value) {
- if (i.value == item.value) i.is_active = !i.is_active
- }
- }
- if (type == 'four') {
- const four = fourList.value.filter((f) => f.value != item.value)
- fourList.value = four
- for (const i of educationList.value) {
- if (i.value == item.value) i.is_active = !i.is_active
- }
- }
- }
- const currentPage = ref(1)
- // 分页
- const changePage = (page = currentPage.value) => {
- search({ skip: (page - 1) * limit, limit: limit })
- }
- const sizeChange = (limits) => {
- limit = limits
- currentPage.value = 1
- search({ skip: 0, limit: limit })
- }
- </script>
- <style lang="scss" scoped>
- .main {
- background: rgb(248, 248, 248);
- .idemand {
- position: relative;
- .image {
- width: 100%;
- height: 200px;
- }
- .select {
- width: 1200px;
- position: absolute;
- left: 20%;
- bottom: 10%;
- .select_1 {
- display: flex;
- align-items: flex-end;
- .over {
- max-height: 106px;
- overflow-y: auto;
- .list {
- border-radius: 5px;
- margin-right: 10px;
- background-color: #fff;
- padding: 5px;
- font-size: 14px;
- .left {
- padding: 10px;
- }
- .right {
- display: flex;
- flex-wrap: wrap;
- .label {
- display: flex;
- align-items: center;
- margin: 3px;
- padding: 5px;
- background: #f5f5f5;
- border: 1px solid #f0f0f0;
- border-radius: 2px;
- }
- }
- }
- }
- .over::-webkit-scrollbar {
- display: none;
- }
- }
- }
- }
- .one {
- background: #ffffff;
- border-radius: 10px;
- padding: 15px;
- margin: 10px 0 0 0;
- .one_1 {
- display: flex;
- align-items: center;
- padding: 10px 0;
- border-bottom: #9d9898 1px dashed;
- .left {
- background: #2280ff;
- border-radius: 15px;
- line-height: 26px;
- color: #fff;
- text-align: center;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-family: PingFangSC-Medium;
- }
- .right {
- .title {
- color: #666;
- font-size: 14px;
- line-height: 15px;
- margin: 0 10px;
- display: inline-block;
- overflow: hidden;
- text-decoration: none;
- }
- .title:hover {
- color: #2374ff;
- }
- }
- }
- }
- .two {
- margin: 15px;
- .list {
- background: #fff;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.03);
- border-radius: 2px;
- width: 285px;
- height: 190px;
- margin-bottom: 15px;
- cursor: pointer;
- transition: all 0.3s;
- padding: 20px;
- .name {
- display: flex;
- align-items: center;
- font-size: 16px;
- color: #121834;
- font-weight: 500;
- margin: 5px 0 0 0;
- .tags {
- grid-gap: 0.5rem;
- gap: 0.5rem;
- display: flex;
- margin: 0 0 0 10px;
- }
- }
- .name:hover {
- color: #2374ff;
- }
- .two_1 {
- font-size: 12px;
- text-align: justify;
- line-height: 12px;
- font-weight: 400;
- letter-spacing: 0;
- color: #8f97a3;
- margin-top: 10px;
- span:last-child {
- color: #525a68;
- }
- }
- .bottom {
- margin: 10px;
- text-align: right;
- .button {
- font-size: 12px;
- color: #fff;
- text-align: center;
- line-height: 12px;
- font-weight: 500;
- padding: 5px 12px;
- background: #2374ff;
- box-shadow: 0 3px 6px 0 rgba(35, 116, 255, 0.1);
- border-radius: 2px;
- }
- }
- }
- .list:hover {
- background: #f0f7ff;
- box-shadow: 0 0 16px rgba(205, 205, 205, 0.6);
- }
- }
- .thr {
- display: flex;
- flex-direction: row-reverse;
- padding: 20px;
- }
- }
- </style>
|