123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654 |
- <template>
- <div class="index">
- <el-row>
- <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
- <el-col :span="24" class="one">
- <div class="one_left">
- <div class="button" @click="toAdd">发布成果</div>
- <div class="button" @click="toExpert">导入数据</div>
- <div class="button" @click="toDownload">导出数据</div>
- </div>
- <div class="one_right">
- <el-input v-model="searchForm.name" style="width: 250px" size="large" placeholder="搜索" @change="search" :suffix-icon="Search" />
- </div>
- </el-col>
- <el-col :span="24" class="two">
- <el-table :data="list" style="width: 100%" size="large" :header-cell-style="{ backgroundColor: '#edf3ff' }">
- <template #empty>
- <el-empty description="暂无数据" />
- </template>
- <el-table-column prop="name" align="center" label="成果名称" />
- <el-table-column prop="time" align="center" label="发布时间" width="180" />
- <el-table-column prop="status" align="center" label="状态" width="180">
- <template #default="scope">
- <div>{{ getDict(scope.row.status, 'status') }}</div>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作" width="180">
- <template #default="{ row }">
- <el-link v-if="row.status == '-2'" :underline="false" type="warning" size="mini" @click="toExam(row)" style="margin-right: 10px">提交审核</el-link>
- <el-link :underline="false" type="primary" size="mini" @click="toEdit(row)" style="margin-right: 10px">修改</el-link>
- <el-link :underline="false" type="danger" size="mini" @click="toDelete(row)"> 删除 </el-link>
- </template>
- </el-table-column>
- </el-table>
- </el-col>
- <el-col :span="24" class="thr">
- <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
- </el-col>
- </el-col>
- </el-row>
- <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose" :width="width">
- <el-row>
- <el-col :span="24" v-if="dialog.type == '1'">
- <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 #attribute>
- <el-option v-for="i in attributeList" :key="i.id" :label="i.label" :value="i.value"></el-option>
- </template>
- <template #mature>
- <el-option v-for="i in matureList" :key="i.id" :label="i.label" :value="i.value"></el-option>
- </template>
- <template #sell>
- <el-option v-for="i in sellList" :key="i.id" :label="i.label" :value="i.value"></el-option>
- </template>
- <template #technology>
- <el-option v-for="i in technologyList" :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 #file>
- <custom-upload model="file" :list="form.file" :limit="1" url="/files/web/cxyy_achievement/upload" @change="onUpload"></custom-upload>
- </template>
- <template #industry>
- <el-option v-for="i in sectorList" :key="i.id" :label="i.title" :value="i.title"></el-option>
- </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>
- <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="demandtotal == 0" description="暂无数据" />
- <div class="list" v-for="(item, index) in demandList" :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.money || '面议' }}
- </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 class="other_2 textOne">
- <el-icon color="#0085f5"><Location /></el-icon>
- {{ getArea(item.area) }}
- <span class="state">{{ getDict(item.status, 'status') || '未解决' }}</span>
- </div>
- </div>
- </div>
- <el-col :span="24" class="page">
- <el-pagination background layout="prev, pager, next" :total="demandtotal" :page-size="demandlimit" v-model:current-page="dcurrentPage" @current-change="dchangePage" @size-change="dsizeChange" />
- </el-col>
- </el-col>
- </transition>
- <el-col :span="24" class="dialog_thr" v-if="dialog.type == '3'">
- <el-col :span="24" class="one">
- <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">全选</el-checkbox>
- </el-col>
- <el-col :span="24" class="two">
- <el-checkbox-group v-model="checkedExport" @change="checkedExportChange">
- <el-checkbox v-for="i in formFields" :label="i" :key="i.model">{{ i.label }}</el-checkbox>
- </el-checkbox-group>
- </el-col>
- <el-col :span="24" class="btn">
- <el-button type="primary" size="mini" @click="toFile()">导出</el-button>
- </el-col>
- </el-col>
- <el-col :span="24" class="dialog_four" v-if="dialog.type == '4'">
- <el-row justify="center">
- <el-col :span="16">
- <el-steps style="max-width: 600px" :active="importActive" align-center>
- <el-step title="下载导入模板">
- <template #description v-if="importActive == 0">
- <el-button type="primary" size="mini" @click="toTemplate">下载导入模板</el-button>
- </template>
- </el-step>
- <el-step title="上传导入模板" description="上传导入模板">
- <template #description v-if="importActive == 1">
- <el-upload action="/files/web/cxyy_import/upload" :show-file-list="false" :on-success="onSuccess" accept=".xlsx">
- <el-button type="primary" size="mini">上传导入文件</el-button>
- </el-upload>
- </template>
- </el-step>
- <el-step title="确定导入" description="确定导入">
- <template #description v-if="importActive == 2">
- <el-button type="primary" size="mini" @click="onImport">确定</el-button>
- </template>
- </el-step>
- </el-steps>
- </el-col>
- </el-row>
- </el-col>
- </el-row>
- </el-dialog>
- </div>
- </template>
- <script setup>
- import { Search } from '@element-plus/icons-vue'
- import { cloneDeep, get } from 'lodash-es'
- const $checkRes = inject('$checkRes')
- import { UserStore } from '@/store/user'
- const userStore = UserStore()
- const user = computed(() => userStore.user)
- // 接口
- import { AchievementStore } from '@/store/api/platform/achievement'
- 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 { UtilStore } from '@/store/api/util'
- import { EsStore } from '@/store/api/es'
- const esStore = EsStore()
- const utilStore = UtilStore()
- const regionStore = RegionStore()
- const store = AchievementStore()
- const dictDataStore = DictDataStore()
- const tagsStore = TagsStore()
- const sectorStore = SectorStore()
- // 加载中
- const loading = ref(false)
- const searchForm = ref({})
- // 列表
- const list = ref([])
- let skip = 0
- let limit = inject('limit')
- const total = ref(0)
- const currentPage = ref(1)
- // 字典表
- const isUseList = ref([])
- const statusList = ref([])
- const fieldList = ref([])
- const attributeList = ref([])
- const matureList = ref([])
- const sellList = ref([])
- const technologyList = ref([])
- const cityList = ref([])
- const achievementList = ref([])
- const tagsList = ref([])
- const sectorList = ref([])
- const urgentList = ref([])
- const form = ref({ file: [] })
- const dialog = ref({ type: '1', show: false, title: '发布成果' })
- const formFields = ref([
- { label: '成果名称', model: 'name' },
- { label: '标签', model: 'tags', custom: true, mark: 'tags' },
- { label: '所属产业', model: 'industry', type: 'select' },
- { label: '专利号', model: 'patent' },
- { label: '行业领域', model: 'field' },
- { label: '属性', model: 'attribute', type: 'select', mark: 'dict', code: 'attribute' },
- { label: '成熟度', model: 'mature', type: 'select', mark: 'dict', code: 'mature' },
- { label: '出让方式', model: 'sell', type: 'select', mark: 'dict', code: 'sell' },
- { label: '技术分类', model: 'technology', type: 'select', mark: 'dict', code: 'technology' },
- { label: '成果地区', model: 'area', custom: true, mark: 'area' },
- { label: '发布时间', model: 'time', type: 'date' },
- { label: '价格(万元)', model: 'money' },
- { label: '项目来源', model: 'source' },
- { label: '联系人', model: 'person' },
- { label: '联系电话', model: 'tel' },
- { label: '是否公开', model: 'is_use', type: 'radio', mark: 'dict', code: 'isUse' },
- { label: '简介', model: 'brief', type: 'textarea' },
- { label: '附件', model: 'file', custom: true, mark: 'file' }
- ])
- const rules = reactive({ name: [{ required: true, message: '请输入成果名称', trigger: 'blur' }] })
- // 导出文件
- const checkAll = ref(false)
- const checkedExport = ref([])
- const isIndeterminate = ref(true)
- // 导入文件
- const importActive = ref(0)
- const url = ref('')
- const isLoading = ref(false)
- const router = useRouter()
- 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 demandList = ref([])
- let demandskip = 0
- let demandlimit = 4
- const demandtotal = ref(0)
- const key = ref('')
- const width = ref('50%')
- // 请求
- onMounted(async () => {
- loading.value = true
- await searchOther()
- await search()
- loading.value = false
- })
- const search = async (query = { skip, limit }) => {
- skip = query.skip
- limit = query.limit
- const info = {
- skip: query.skip,
- limit: query.limit,
- user: user.value.id,
- ...searchForm.value
- }
- const res = await store.query(info)
- if (res.errcode == '0') {
- list.value = res.data
- total.value = res.total
- }
- }
- 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: 'mature', is_use: '0' })
- if ($checkRes(result)) matureList.value = result.data
- // 出让方式
- result = await dictDataStore.query({ code: 'sell', is_use: '0' })
- if ($checkRes(result)) sellList.value = result.data
- // 技术领域
- result = await dictDataStore.query({ code: 'field', is_use: '0' })
- if ($checkRes(result)) fieldList.value = result.data
- // 属性
- result = await dictDataStore.query({ code: 'attribute', is_use: '0' })
- if ($checkRes(result)) attributeList.value = result.data
- // 技术分类
- result = await dictDataStore.query({ code: 'technology', is_use: '0' })
- if ($checkRes(result)) technologyList.value = result.data
- // 成果状态
- result = await dictDataStore.query({ code: 'demandStatus', is_use: '0' })
- if ($checkRes(result)) achievementList.value = result.data
- // 需求紧急度
- result = await dictDataStore.query({ code: 'urgent', is_use: '0' })
- if ($checkRes(result)) urgentList.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 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 toAdd = () => {
- dialog.value = { type: '1', show: true, title: '发布成果' }
- }
- // 修改
- const toEdit = (data) => {
- if (!data.file) data.file = []
- form.value = data
- dialog.value = { type: '1', show: true, title: '修改成果' }
- }
- // 删除
- const toDelete = (data) => {
- ElMessageBox.confirm(`您确认删除${data.name}该数据?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
- .then(async () => {
- const res = await store.del(data.id)
- if ($checkRes(res, true)) {
- search({ skip, limit })
- }
- })
- .catch(() => {})
- }
- // 上传图片
- const onUpload = (e) => {
- const { model, value } = e
- form.value[model] = value
- }
- const toSave = async () => {
- const data = cloneDeep(form.value)
- const other = { status: '0', user: user.value.id }
- let res
- if (get(data, 'id')) res = await store.update({ ...data, ...other })
- else res = await store.create({ ...data, ...other })
- if ($checkRes(res, true)) {
- key.value = form.value.name
- await search({ skip, limit })
- await toClose()
- await searchDemand({ demandskip, demandlimit })
- 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 }
- let res
- if (get(data, 'id')) res = await store.update({ ...data, ...other })
- else res = await store.create({ ...data, ...other })
- if ($checkRes(res, true)) {
- key.value = form.value.name
- await search({ skip, limit })
- await toClose()
- await searchDemand({ demandskip, demandlimit })
- width.value = '90%'
- dialog.value = { type: '2', show: true, title: '相关需求推荐' }
- }
- }
- // 审核保存
- const toExam = async (row) => {
- ElMessageBox.confirm(`您确认保存并提交审核该数据?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
- .then(async () => {
- const data = cloneDeep(row)
- let res = await store.update({ id: data.id, status: '0', user: user.value.id })
- if ($checkRes(res, true)) {
- key.value = row.name
- await search({ skip, limit })
- await toClose()
- await searchDemand({ demandskip, demandlimit })
- width.value = '90%'
- dialog.value = { type: '2', show: true, title: '相关需求推荐' }
- }
- })
- .catch(() => {})
- }
- // 需求列表查询
- const searchDemand = async (query = { demandskip, demandlimit }) => {
- demandskip = query.demandskip
- demandlimit = query.demandlimit
- isLoading.value = true
- const info = { skip: demandskip, limit: demandlimit, keyword: key.value }
- const res = await esStore.demand(info)
- if (res.errcode == '0') {
- demandList.value = res.data
- demandtotal.value = res.total
- }
- setTimeout(() => {
- isLoading.value = false
- }, 3000) // 假设3秒后加载完成
- }
- const dcurrentPage = ref(1)
- // 分页
- const dchangePage = (page = dcurrentPage.value) => {
- searchDemand({ demandskip: (page - 1) * demandlimit, demandlimit: demandlimit })
- }
- const dsizeChange = (limits) => {
- demandlimit = limits
- dcurrentPage.value = 1
- searchDemand({ demandskip: 0, demandlimit: demandlimit })
- }
- // 地区
- const getArea = (data) => {
- if (data) return data.join('-')
- else return '暂无地区'
- }
- // 查看详情
- const toView = (item) => {
- router.push({ path: '/demand/detail', query: { id: item.id || item._id } })
- }
- const toClose = () => {
- importActive.value = 0
- url.value = ''
- checkedExport.value = []
- checkAll.value = false
- form.value = { file: [] }
- width.value = '50%'
- dialog.value = { show: false }
- }
- // 全选
- const handleCheckAllChange = (val) => {
- checkedExport.value = val ? formFields.value : []
- isIndeterminate.value = false
- }
- // 选择
- const checkedExportChange = (value) => {
- let checkedCount = value.length
- checkAll.value = checkedCount === formFields.value.length
- isIndeterminate.value = checkedCount > 0 && checkedCount < formFields.value.length
- }
- // 导入数据
- const toExpert = () => {
- dialog.value = { type: '4', show: true, title: '导入数据' }
- }
- // 导出数据
- const toDownload = () => {
- dialog.value = { type: '3', show: true, title: '导出数据' }
- }
- // 下载导入模板
- const toTemplate = () => {
- importActive.value = importActive.value + 1
- window.open('/cxyyWeb/产学研用成果模板.xlsx')
- }
- // 上传Excel
- const onSuccess = async (response) => {
- importActive.value = importActive.value + 1
- url.value = response.uri
- }
- // 确定导出
- const onImport = async () => {
- const msgbox = ElMessage({ message: '正在导入中,请稍后...', center: true, duration: 0 })
- try {
- const res = await utilStore.toImport({ url: url.value })
- if (res.errcode == '0') {
- if (res.data[0].errorList) {
- ElMessageBox.alert(res.data[0].errorList, '错误提示', {
- confirmButtonText: 'OK'
- })
- } else {
- ElMessage({ message: '导入成功', type: 'success' })
- }
- await search({ skip, limit })
- await toClose()
- }
- } catch (error) {
- console.error(error)
- } finally {
- msgbox.close()
- }
- }
- // 导出数据
- const toFile = async () => {
- if (checkedExport.value.length > 0) {
- const reqData = { table: 'achievement', config: checkedExport.value, user: user.value.id }
- const res = await utilStore.toExport(reqData)
- if (res.errcode == '0') {
- ElMessage({ type: `success`, message: `导出成功` })
- window.open(res.data)
- }
- toClose()
- } else {
- ElMessage({ type: `warning`, message: `请选择导出信息字段` })
- }
- }
- // 分页
- 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 scoped lang="scss">
- .main {
- .one {
- height: 50px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 0 0 10px 0;
- .one_left {
- display: flex;
- font-size: 16px;
- .button {
- background: #1875df;
- padding: 0 10px;
- height: 30px;
- color: #fff;
- line-height: 30px;
- text-align: center;
- cursor: default;
- margin: 0 10px 0 0;
- }
- }
- }
- .thr {
- display: flex;
- justify-content: center;
- margin: 20px 0 0 0;
- }
- }
- .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;
- justify-content: space-between;
- 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;
- 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;
- }
- }
- .dialog_thr {
- padding: 20px;
- .one {
- margin: 0 0 10px 0;
- }
- .two {
- margin: 0 0 10px 0;
- :deep(.el-checkbox) {
- padding: 0 0 20px 0;
- }
- }
- .btn {
- text-align: center;
- margin: 20px 0 0 0;
- }
- }
- .dialog_four {
- padding: 20px;
- }
- </style>
|