123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430 |
- <template>
- <custom-layout class="main">
- <el-col :span="24" class="one">
- <div class="w_1300">
- <div class="info_1">
- <h3 class="name">{{ info.name || '暂无' }}</h3>
- <div class="collect iscollect" @click="toCollect" v-if="info.is_collection">
- <el-icon :size="24" color="#1073ff"><StarFilled /></el-icon>
- <span>已收藏</span>
- </div>
- <div class="collect" v-else @click="toCollect">
- <el-icon :size="24"><Star /></el-icon>
- <span>收藏</span>
- </div>
- <div class="other_1">
- <div class="value">
- <el-image class="image" :src="icon1" fit="fill" />
- <span class="span">{{ info.time || '暂无' }}</span>
- </div>
- <div class="value">
- <el-image class="image" :src="icon2" fit="fill" />
- <span class="span">{{ info.num || '0' }}</span>
- </div>
- </div>
- <div class="other_2">
- <div class="value">
- <el-image class="image" :src="icon4" fit="fill" />
- <span class="span">技术领域:{{ info.field || '暂无' }}</span>
- </div>
- <div class="value">
- <el-image class="image" :src="icon5" fit="fill" />
- <span class="span">项目来源:{{ info.source || '暂无' }}</span>
- </div>
- <div class="value" v-if="user && user.id">
- <el-image class="image" :src="icon9" fit="fill" />
- <span class="span">负责人:{{ info.person || '暂无' }}</span>
- </div>
- <!-- <div class="value" v-if="user && user.id">
- <el-image class="image" :src="icon6" fit="fill" />
- <span class="span">联系电话:{{ info.tel || '暂无' }}</span>
- </div> -->
- <div class="value">
- <el-image class="image" :src="icon7" fit="fill" />
- <span class="span">成熟度:{{ getDict(info.mature, 'mature') || '暂无' }}</span>
- </div>
- <div class="value">
- <el-image class="image" :src="icon8" fit="fill" />
- <span class="span">出让方式:{{ getDict(info.sell, 'sell') || '暂无' }}</span>
- </div>
- <div class="infoButton">
- <div class="button" @click="toChat">预约对接</div>
- </div>
- </div>
- </div>
- <div class="info_2">
- <div class="title">成果简介</div>
- <div class="content">
- <div class="tit">
- <el-image class="image" :src="icon3" fit="fill" />
- <span>成果简介</span>
- </div>
- <div class="brief">{{ info.brief || '暂无' }}</div>
- </div>
- </div>
- <div class="info_2" v-if="info.file && info.file.length > 0">
- <div class="title">成果附件</div>
- <div class="file">
- <el-link :href="info.file[0].url" target="_blank">{{ info.file[0].name }}</el-link>
- </div>
- </div>
- <div class="info_3">
- <div class="title">相关成果推荐</div>
- <div class="content">
- <div class="list" v-for="(item, index) in list" :key="index" @click="toView(item)">
- <div class="list_1">
- <el-image class="image" :src="file[index]" fit="fill" />
- <div class="box">
- <p class="name textMore">{{ item.name || '暂无' }}</p>
- </div>
- <div class="list_2">
- <div class="other">
- <el-image class="image" :src="one" fit="fill" />
- <div class="text">{{ item.field || '暂无' }}</div>
- </div>
- <div class="other">
- <el-image class="image" :src="two" fit="fill" />
- <div class="text">{{ item.person || '暂无' }}</div>
- </div>
- <div class="other">
- <el-image class="image" :src="thr" fit="fill" />
- <div class="text">{{ item.source || '暂无' }}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </el-col>
- </custom-layout>
- </template>
- <script setup>
- import { get } from 'lodash-es'
- import bg_1 from '/images/achievement/tec_bg_1.png'
- import bg_2 from '/images/achievement/tec_bg_2.png'
- import bg_3 from '/images/achievement/tec_bg_3.png'
- import bg_4 from '/images/achievement/tec_bg_4.png'
- import one from '/images/achievement/bg-cgyx-list-icon1.png'
- import two from '/images/achievement/bg-cgyx-list-icon2.png'
- import thr from '/images/achievement/bg-cgyx-list-icon3.png'
- import icon1 from '/images/achievement/cg-detail-icon1.png'
- import icon2 from '/images/achievement/cg-detail-icon2.png'
- import icon3 from '/images/achievement/bg-cg_detail-cgjj1.png'
- import icon4 from '/images/achievement/cg-detail-icon4.png'
- import icon5 from '/images/achievement/cg-detail-icon5.png'
- // import icon6 from '/images/achievement/cg-detail-icon6.png'
- import icon7 from '/images/achievement/cg-detail-icon7.png'
- import icon8 from '/images/achievement/cg-detail-icon8.png'
- import icon9 from '/images/achievement/cg-detail-icon9.png'
- // 接口
- import { AchievementStore } from '@/store/api/platform/achievement'
- import { ContactApplyStore } from '@/store/api/user/contactApply'
- const contactApplyStore = ContactApplyStore()
- const store = AchievementStore()
- const $checkRes = inject('$checkRes')
- // 收藏
- import moment from 'moment'
- import { CollectionStore } from '@/store/api/platform/collection'
- import { DictDataStore } from '@/store/api/system/dictData'
- const dictDataStore = DictDataStore()
- const collectionStore = CollectionStore()
- import { UserStore } from '@/store/user'
- const userStore = UserStore()
- const user = computed(() => userStore.user)
- // 加载中
- const loading = ref(false)
- // 路由
- const route = useRoute()
- const router = useRouter()
- const info = ref({})
- const file = ref([bg_1, bg_2, bg_3, bg_4])
- const list = ref([])
- // 请求
- onMounted(async () => {
- loading.value = true
- await searchOther()
- await search()
- await searchAchieve()
- loading.value = false
- })
- // 字典表
- const matureList = ref([])
- const sellList = ref([])
- const searchOther = async () => {
- let result
- // 成熟度
- 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
- }
- const search = async () => {
- let id = route.query.id
- if (id) {
- let res = await store.detail(id)
- if (res.errcode == '0') info.value = res.data
- }
- }
- const searchAchieve = async () => {
- const data = {
- skip: 0,
- limit: 4,
- is_use: '0',
- status: '1',
- field: info.value.field
- }
- const res = await store.list(data)
- if (res.errcode == '0') list.value = res.data
- }
- // 查看详情
- const toView = async (item) => {
- router.push({ path: '/achievement/detail', query: { id: item.id || item._id } }).then(() => {
- // 重新刷新页面
- location.reload()
- })
- }
- // 字典数据转换
- const getDict = (data, model) => {
- if (data) {
- let res
- if (model == 'mature') res = matureList.value.find((f) => f.value == data)
- else if (model == 'sell') res = sellList.value.find((f) => f.value == data)
- return get(res, 'label')
- }
- }
- const toCollect = async () => {
- if (user.value.id) {
- info.value.is_collection = !info.value.is_collection
- let res
- let message
- const data = {
- user: user.value.id,
- source: info.value.id,
- type: 'achievement',
- time: moment().format('YYYY-MM-DD')
- }
- if (info.value.is_collection) {
- message = '收藏成功'
- res = await collectionStore.create(data)
- } else {
- message = '取消收藏成功'
- res = await collectionStore.cancel(data)
- }
- if (res.errcode === 0) {
- ElMessage({ message, type: 'success' })
- await search()
- }
- } else ElMessage({ message: '未登录!', type: 'error' })
- }
- const toChat = () => {
- if (user.value.id) {
- ElMessageBox.confirm(`您确认要预约对接?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
- .then(async () => {
- const obj = {
- source_id: route.query.id,
- source: 'achievement',
- apply_user: user.value.id
- }
- const res = await contactApplyStore.create(obj)
- $checkRes(res, `预约对接成功等待消息通知`, res.errmsg)
- })
- .catch(() => {})
- } else ElMessage({ message: '未登录!', type: 'error' })
- }
- </script>
- <style scoped lang="scss">
- .main {
- .one {
- background: url(/images/bg-cg_detail-infor.png) no-repeat top right;
- .info_1 {
- padding: 100px 80px 0 80px;
- .name {
- font-size: $global-font-size-36;
- width: 70%;
- font-weight: bold;
- }
- .collect {
- display: flex;
- align-items: center;
- width: 35%;
- font-size: $global-font-size-20;
- color: #929292;
- cursor: default;
- span {
- margin: 0 0 0 5px;
- }
- }
- .iscollect {
- color: #1073ff;
- }
- .other_1 {
- width: 430px;
- margin-top: 40px !important;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .value {
- display: flex;
- align-items: center;
- .span {
- margin: 0 0 0 10px;
- font-size: 18px;
- line-height: 36px;
- color: #18284d;
- }
- }
- }
- .other_2 {
- width: 430px;
- .value {
- display: flex;
- align-items: center;
- margin: 5px 0 0 0;
- .span {
- margin: 0 0 0 10px;
- font-size: 18px;
- line-height: 36px;
- color: #18284d;
- }
- }
- .infoButton {
- margin: 10px 0 0 0;
- .button {
- cursor: default;
- justify-content: center;
- display: flex;
- align-items: center;
- width: 136px;
- height: 44px;
- color: #fff;
- font-size: $global-font-size-16;
- background-image: linear-gradient(90deg, #0455da 0%, #378cff 100%), linear-gradient(#0455da, #0455da);
- background-blend-mode: normal, normal;
- border-radius: 4px;
- }
- }
- }
- }
- .info_2 {
- padding: 0 80px;
- margin-top: 70px !important;
- .title {
- color: #000;
- display: inline-block;
- margin-right: 80px;
- padding-bottom: 20px;
- font-size: $global-font-size-30;
- color: #000000;
- border-bottom: 5px solid #378cff;
- cursor: pointer;
- }
- .file {
- margin: 20px 0 0 0;
- .el-link {
- font-size: $global-font-size-20;
- }
- }
- .content {
- padding: 20px;
- margin-top: 25px !important;
- width: 100%;
- background-image: linear-gradient(90deg, #3dbef2 0, #5b3bff 100%), linear-gradient(#5b3bff, #5b3bff);
- background-blend-mode: normal, normal;
- .tit {
- span {
- font-size: 20px !important;
- margin-left: 15px !important;
- color: #fff;
- }
- }
- .brief {
- line-height: 28px;
- color: #fff;
- font-size: 16px;
- margin-top: 20px !important;
- }
- }
- }
- .info_3 {
- padding: 80px !important;
- background: #fff;
- .title {
- color: #000;
- display: inline-block;
- margin-right: 80px;
- padding-bottom: 20px;
- font-size: $global-font-size-30;
- color: #000000;
- border-bottom: 5px solid #378cff;
- cursor: pointer;
- }
- .content {
- margin: 10px 0;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- .list {
- margin-right: 10px;
- margin-bottom: 15px;
- padding-top: 3px;
- width: 277px;
- height: 325px;
- background-color: #fff;
- box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.3);
- .list_1 {
- position: relative;
- .image {
- height: 100%;
- width: 100%;
- }
- .box {
- display: flex !important;
- align-items: center;
- position: absolute;
- top: 40px;
- left: 0;
- padding: 15px 10px;
- width: 100%;
- height: 70px;
- background-color: rgba(0, 25, 79, 0.5);
- font-size: $global-font-size-18;
- line-height: 24px;
- color: #fff;
- }
- }
- .list_2 {
- margin: 10px 13px 0;
- .other {
- display: flex;
- align-items: center;
- margin: 0 0 5px 0;
- .image {
- width: 25px;
- height: 25px;
- margin: 0 5px 0 0;
- }
- .text {
- font-size: $global-font-size-16;
- line-height: 32px;
- color: #404040;
- }
- }
- }
- }
- .list:nth-child(4n) {
- margin-right: 0;
- }
- .list:hover {
- box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.8);
- }
- }
- }
- }
- }
- </style>
|