123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368 |
- <template>
- <div class="index">
- <el-row>
- <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
- <custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" @draftSave="toDraftSave">
- <template #is_use>
- <el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
- </template>
- <template #field>
- <el-option v-for="i in fieldList" :key="i.id" :label="i.label" :value="i.label"></el-option>
- </template>
- <template #industry>
- <el-option v-for="i in sectorList" :key="i.id" :label="i.title" :value="i.title"></el-option>
- </template>
- <template #urgent>
- <el-option v-for="i in urgentList" :key="i.id" :label="i.label" :value="i.value"></el-option>
- </template>
- <template #method>
- <el-option v-for="i in methodList" :key="i.id" :label="i.label" :value="i.value"></el-option>
- </template>
- <template #area>
- <el-cascader v-model="form.area" :props="{ value: 'name', label: 'name' }" :options="cityList" style="width: 100%" />
- </template>
- <template #tags>
- <el-select v-model="form.tags" multiple filterable allow-create default-first-option :reserve-keyword="false" placeholder="请选择标签" style="width: 100%">
- <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
- </el-select>
- </template>
- </custom-form>
- </el-col>
- </el-row>
- <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose" :width="width">
- <el-row>
- <transition name="why">
- <el-col :span="24" v-if="dialog.type == '2'" class="dialog" v-loading="isLoading" element-loading-text="智能推荐中..." :element-loading-svg="svg" element-loading-svg-view-box="-10,-10,50,50">
- <el-empty v-if="supplytotal == 0" description="暂无数据" />
- <div class="list" v-for="(item, index) in supplyList" :key="index" @click="toView(item)">
- <h2 class="name textMore">
- <span>{{ item.name || '暂无' }}</span>
- </h2>
- <div class="other">
- <span class="other_1">{{ getDict(item.urgent, 'urgent') || '暂无' }}</span>
- <div class="other_2">
- <span>应用行业:</span>
- {{ item.field || '暂无' }}
- </div>
- <div class="other_2">
- <span>所属产业:</span>
- {{ item.industry || '暂无' }}
- </div>
- <div class="other_2">
- <span>来源:</span>
- {{ item.source || '暂无' }}
- </div>
- <div class="other_2">
- <span>推荐指数:</span>
- <el-rate size="large" v-model="item._recommend" disabled show-score text-color="#ff9900" :score-template="`${item._recommend} 星`" />
- </div>
- </div>
- </div>
- <el-col :span="24" class="page">
- <el-pagination background layout="prev, pager, next" :total="supplytotal" :page-size="supplylimit" v-model:current-page="scurrentPage" @current-change="schangePage" @size-change="ssizeChange" />
- </el-col>
- </el-col>
- </transition>
- </el-row>
- </el-dialog>
- </div>
- </template>
- <script setup>
- const router = useRouter()
- import { cloneDeep, get } from 'lodash-es'
- const $checkRes = inject('$checkRes')
- import { UserStore } from '@/store/user'
- const userStore = UserStore()
- const user = computed(() => userStore.user)
- // 接口
- import { DemandStore } from '@/store/api/platform/demand'
- import { DictDataStore } from '@/store/api/system/dictData'
- import { TagsStore } from '@/store/api/system/tags'
- import { SectorStore } from '@/store/api/platform/sector'
- import { RegionStore } from '@/store/api/system/region'
- import { EsStore } from '@/store/api/es'
- const esStore = EsStore()
- const regionStore = RegionStore()
- const store = DemandStore()
- const dictDataStore = DictDataStore()
- const tagsStore = TagsStore()
- const sectorStore = SectorStore()
- // 加载中
- const loading = ref(false)
- // 字典表
- const isUseList = ref([])
- const statusList = ref([])
- const methodList = ref([])
- const urgentList = ref([])
- const fieldList = ref([])
- const cityList = ref([])
- const demandList = ref([])
- const tagsList = ref([])
- const sectorList = ref([])
- const form = ref({ time: [] })
- const formFields = ref([
- { label: '需求名称', model: 'name' },
- { label: '标签', model: 'tags', custom: true, mark: 'tags' },
- { label: '行业', model: 'industry', type: 'select' },
- { label: '行业领域', model: 'field', type: 'select' },
- { label: '需求紧急度', model: 'urgent', type: 'select', mark: 'dict', code: 'urgent' },
- { label: '合作方式', model: 'method', type: 'select', mark: 'dict', code: 'method' },
- { label: '价格(万元)', model: 'money' },
- { label: '所属企业', model: 'company' },
- { label: '企业简况', model: 'company_brief', type: 'textarea' },
- { label: '联系人', model: 'contacts' },
- { label: '联系电话', model: 'tel' },
- { label: '年份', model: 'year', type: 'year' },
- { label: '月份', model: 'month', type: 'month' },
- { label: '技术需求名称', model: 'tec_name' },
- { label: '待解决问题', model: 'question', type: 'textarea' },
- { label: '需求地区', model: 'area', custom: true, mark: 'area' },
- { label: '发布时间', model: 'time', type: 'datetimerange', mark: 'time' },
- { label: '是否公开', model: 'is_use', type: 'radio', mark: 'dict', code: 'isUse' },
- { label: '简介', model: 'brief', type: 'textarea' }
- ])
- const rules = reactive({
- name: [{ required: true, message: '请输入需求名称', trigger: 'blur' }],
- field: [{ required: true, message: '请输入行业领域', trigger: 'blur' }],
- urgent: [{ required: true, message: '请选择需求紧急度', trigger: 'blur' }],
- method: [{ required: true, message: '请选择合作方式', trigger: 'blur' }],
- money: [{ required: true, message: '请输入价格', trigger: 'blur' }],
- company: [{ required: true, message: '请输入所属企业', trigger: 'blur' }],
- contacts: [{ required: true, message: '请输入联系人', trigger: 'blur' }],
- tel: [{ required: true, message: '请输入联系电话', trigger: 'blur' }],
- area: [{ required: true, message: '请选择需求地区', trigger: 'blur' }],
- time: [{ required: true, message: '请选择发布时间', trigger: 'blur' }]
- })
- // 推荐供给列表
- const supplyList = ref([])
- let supplyskip = 0
- let supplylimit = 4
- const supplytotal = ref(0)
- const key = ref('')
- const width = ref('50%')
- const isLoading = ref(false)
- const svg = ref(`
- <path class="path" d="
- M 30 15
- L 28 17
- M 25.61 25.61
- A 15 15, 0, 0, 1, 15 30
- A 15 15, 0, 1, 1, 27.99 7.5
- L 15 15
- " style="stroke-width: 4px; fill: rgba(0, 0, 0, 0)"/>
- `)
- const dialog = ref({ type: '1', show: false, title: '供给智能推荐' })
- // 请求
- onMounted(async () => {
- loading.value = true
- await searchOther()
- loading.value = false
- })
- const searchOther = async () => {
- let result
- // 是否使用
- result = await dictDataStore.query({ code: 'isUse', is_use: '0' })
- if ($checkRes(result)) isUseList.value = result.data
- // 状态
- result = await dictDataStore.query({ code: 'examStatus', is_use: '0' })
- if ($checkRes(result)) statusList.value = result.data
- // 合作方式
- result = await dictDataStore.query({ code: 'method', is_use: '0' })
- if ($checkRes(result)) methodList.value = result.data
- // 需求紧急度
- result = await dictDataStore.query({ code: 'urgent', is_use: '0' })
- if ($checkRes(result)) urgentList.value = result.data
- // 技术领域
- result = await dictDataStore.query({ code: 'field', is_use: '0' })
- if ($checkRes(result)) fieldList.value = result.data
- // 需求状态
- result = await dictDataStore.query({ code: 'demandStatus', is_use: '0' })
- if ($checkRes(result)) demandList.value = result.data
- // 标签
- result = await tagsStore.query({ is_use: '0' })
- if ($checkRes(result)) tagsList.value = result.data
- // 行业
- result = await sectorStore.query({ is_use: '0' })
- if ($checkRes(result)) sectorList.value = result.data
- // 城市
- result = await regionStore.area({ level: 'province', code: 22 })
- if ($checkRes(result)) cityList.value = result.data
- }
- const toSave = async () => {
- const data = cloneDeep(form.value)
- const other = { status: '0', user: user.value.id }
- if (data.time && data.time.length > 1) {
- data.start_time = data.time[0]
- data.end_time = data.time[1]
- }
- delete data.time
- let res
- if (get(data, 'id')) res = await store.update({ ...data, ...other })
- else res = await store.create({ ...data, ...other })
- if (res.errcode == 0) {
- ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
- key.value = form.value.name
- await toClose()
- await searchSupply({ supplyskip, supplylimit })
- width.value = '90%'
- dialog.value = { type: '2', show: true, title: '相关供给推荐' }
- }
- }
- const toDraftSave = async () => {
- const data = cloneDeep(form.value)
- const other = { status: '-2', user: user.value.id }
- if (data.time && data.time.length > 1) {
- data.start_time = data.time[0]
- data.end_time = data.time[1]
- }
- delete data.time
- let res
- if (get(data, 'id')) res = await store.update({ ...data, ...other })
- else res = await store.create({ ...data, ...other })
- if (res.errcode == 0) {
- ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
- key.value = form.value.name
- await toClose()
- await searchSupply({ supplyskip, supplylimit })
- width.value = '90%'
- dialog.value = { type: '2', show: true, title: '相关供给推荐' }
- }
- }
- // 供给列表查询
- const searchSupply = async (query = { supplyskip, supplylimit }) => {
- supplyskip = query.supplyskip
- supplylimit = query.supplylimit
- isLoading.value = true
- const info = { skip: supplyskip, limit: supplylimit, keyword: key.value }
- const res = await esStore.supply(info)
- if (res.errcode == '0') {
- supplyList.value = res.data
- supplytotal.value = res.total
- }
- setTimeout(() => {
- isLoading.value = false
- }, 3000) // 假设3秒后加载完成
- }
- const scurrentPage = ref(1)
- // 分页
- const schangePage = (page = scurrentPage.value) => {
- searchSupply({ supplyskip: (page - 1) * supplylimit, supplylimit: supplylimit })
- }
- const ssizeChange = (limits) => {
- supplylimit = limits
- scurrentPage.value = 1
- searchSupply({ supplyskip: 0, supplylimit: supplylimit })
- }
- // 字典数据转换
- const getDict = (data, model) => {
- if (data) {
- let res
- if (model == 'status') res = statusList.value.find((f) => f.value == data)
- else if (model == 'urgent') res = urgentList.value.find((f) => f.value == data)
- return get(res, 'label')
- }
- }
- // 查看详情
- const toView = (item) => {
- router.push({ path: '/supply/detail', query: { id: item.id || item._id } })
- }
- const toClose = () => {
- form.value = {}
- width.value = '50%'
- dialog.value = { show: false }
- }
- </script>
- <style scoped lang="scss">
- .why-enter-from,
- .why-leave-to {
- opacity: 0;
- transform: scale(0.6);
- }
- .why-enter-to,
- .why-leave-from {
- opacity: 1;
- transform: scale(1);
- }
- .why-enter-active,
- .why-leave-active {
- transition: all 2s ease;
- }
- .dialog {
- display: flex;
- flex-wrap: wrap;
- margin-top: 20px;
- .list {
- position: relative;
- margin-right: 10px;
- margin-bottom: 10px;
- width: 380px;
- box-shadow: 0 0 13px 0 rgba(5, 88, 219, 0.18);
- .name {
- padding: 10px 20px;
- width: 380px;
- height: 71px;
- background-color: #dce5ff;
- font-size: 16px;
- line-height: 24px;
- color: #0d0d0d;
- display: flex;
- align-items: center;
- }
- .other {
- padding: 10px 20px 20px;
- .other_1 {
- padding: 0 10px;
- height: 25px;
- background-color: #e6f2fd;
- border-radius: 2px;
- border: solid 1px #cae0f5;
- font-size: $global-font-size-14;
- line-height: 25px;
- color: #0085f5;
- }
- .other_2 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 15px;
- font-size: $global-font-size-16;
- span {
- color: #909090;
- }
- .state {
- position: absolute;
- right: 20px;
- bottom: 15px;
- display: inline-block;
- vertical-align: middle;
- padding: 0 20px;
- height: 30px;
- line-height: 30px;
- background-image: linear-gradient(90deg, #ff8a00 0, #ff5a00 100%), linear-gradient(#ff7800, #ff7800);
- background-blend-mode: normal, normal;
- border-radius: 14px;
- border: solid 1px #e5e5e5;
- color: #fff;
- }
- }
- }
- }
- .list:hover {
- box-shadow: 0 0 5px 0 $global-color-107;
- .name {
- background-color: $global-color-107;
- color: $global-color-fff;
- }
- }
- .page {
- margin: 10px 0;
- display: flex;
- justify-content: center;
- }
- }
- </style>
|