achievementDetail.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <template>
  2. <custom-layout class="main">
  3. <el-col :span="24" class="one">
  4. <div class="w_1300">
  5. <div class="info_1">
  6. <h3 class="name">{{ info.name || '暂无' }}</h3>
  7. <div class="collect iscollect" @click="toCollect" v-if="info.is_collection">
  8. <el-icon :size="24" color="#1073ff"><StarFilled /></el-icon>
  9. <span>已收藏</span>
  10. </div>
  11. <div class="collect" v-else @click="toCollect">
  12. <el-icon :size="24"><Star /></el-icon>
  13. <span>收藏</span>
  14. </div>
  15. <div class="other_1">
  16. <div class="value">
  17. <el-image class="image" :src="icon1" fit="fill" />
  18. <span class="span">{{ info.time || '暂无' }}</span>
  19. </div>
  20. <div class="value">
  21. <el-image class="image" :src="icon2" fit="fill" />
  22. <span class="span">{{ info.num || '0' }}</span>
  23. </div>
  24. </div>
  25. <div class="other_2">
  26. <div class="value">
  27. <el-image class="image" :src="icon4" fit="fill" />
  28. <span class="span">技术领域:{{ info.field || '暂无' }}</span>
  29. </div>
  30. <div class="value">
  31. <el-image class="image" :src="icon5" fit="fill" />
  32. <span class="span">项目来源:{{ info.source || '暂无' }}</span>
  33. </div>
  34. <div class="value" v-if="user && user.id">
  35. <el-image class="image" :src="icon9" fit="fill" />
  36. <span class="span">负责人:{{ info.person || '暂无' }}</span>
  37. </div>
  38. <!-- <div class="value" v-if="user && user.id">
  39. <el-image class="image" :src="icon6" fit="fill" />
  40. <span class="span">联系电话:{{ info.tel || '暂无' }}</span>
  41. </div> -->
  42. <div class="value">
  43. <el-image class="image" :src="icon7" fit="fill" />
  44. <span class="span">成熟度:{{ getDict(info.mature, 'mature') || '暂无' }}</span>
  45. </div>
  46. <div class="value">
  47. <el-image class="image" :src="icon8" fit="fill" />
  48. <span class="span">出让方式:{{ getDict(info.sell, 'sell') || '暂无' }}</span>
  49. </div>
  50. <div class="infoButton">
  51. <div class="button" @click="toChat">预约对接</div>
  52. </div>
  53. </div>
  54. </div>
  55. <div class="info_2">
  56. <div class="title">成果简介</div>
  57. <div class="content">
  58. <div class="tit">
  59. <el-image class="image" :src="icon3" fit="fill" />
  60. <span>成果简介</span>
  61. </div>
  62. <div class="brief">{{ info.brief || '暂无' }}</div>
  63. </div>
  64. </div>
  65. <div class="info_2" v-if="info.file && info.file.length > 0">
  66. <div class="title">成果附件</div>
  67. <div class="file">
  68. <el-link :href="info.file[0].url" target="_blank">{{ info.file[0].name }}</el-link>
  69. </div>
  70. </div>
  71. <div class="info_3">
  72. <div class="title">相关成果推荐</div>
  73. <div class="content">
  74. <div class="list" v-for="(item, index) in list" :key="index" @click="toView(item)">
  75. <div class="list_1">
  76. <el-image class="image" :src="file[index]" fit="fill" />
  77. <div class="box">
  78. <p class="name textMore">{{ item.name || '暂无' }}</p>
  79. </div>
  80. <div class="list_2">
  81. <div class="other">
  82. <el-image class="image" :src="one" fit="fill" />
  83. <div class="text">{{ item.field || '暂无' }}</div>
  84. </div>
  85. <div class="other">
  86. <el-image class="image" :src="two" fit="fill" />
  87. <div class="text">{{ item.person || '暂无' }}</div>
  88. </div>
  89. <div class="other">
  90. <el-image class="image" :src="thr" fit="fill" />
  91. <div class="text">{{ item.source || '暂无' }}</div>
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. </el-col>
  100. </custom-layout>
  101. </template>
  102. <script setup>
  103. import { get } from 'lodash-es'
  104. import bg_1 from '/images/achievement/tec_bg_1.png'
  105. import bg_2 from '/images/achievement/tec_bg_2.png'
  106. import bg_3 from '/images/achievement/tec_bg_3.png'
  107. import bg_4 from '/images/achievement/tec_bg_4.png'
  108. import one from '/images/achievement/bg-cgyx-list-icon1.png'
  109. import two from '/images/achievement/bg-cgyx-list-icon2.png'
  110. import thr from '/images/achievement/bg-cgyx-list-icon3.png'
  111. import icon1 from '/images/achievement/cg-detail-icon1.png'
  112. import icon2 from '/images/achievement/cg-detail-icon2.png'
  113. import icon3 from '/images/achievement/bg-cg_detail-cgjj1.png'
  114. import icon4 from '/images/achievement/cg-detail-icon4.png'
  115. import icon5 from '/images/achievement/cg-detail-icon5.png'
  116. // import icon6 from '/images/achievement/cg-detail-icon6.png'
  117. import icon7 from '/images/achievement/cg-detail-icon7.png'
  118. import icon8 from '/images/achievement/cg-detail-icon8.png'
  119. import icon9 from '/images/achievement/cg-detail-icon9.png'
  120. // 接口
  121. import { AchievementStore } from '@/store/api/platform/achievement'
  122. import { ContactApplyStore } from '@/store/api/user/contactApply'
  123. const contactApplyStore = ContactApplyStore()
  124. const store = AchievementStore()
  125. const $checkRes = inject('$checkRes')
  126. // 收藏
  127. import moment from 'moment'
  128. import { CollectionStore } from '@/store/api/platform/collection'
  129. import { DictDataStore } from '@/store/api/system/dictData'
  130. const dictDataStore = DictDataStore()
  131. const collectionStore = CollectionStore()
  132. import { UserStore } from '@/store/user'
  133. const userStore = UserStore()
  134. const user = computed(() => userStore.user)
  135. // 加载中
  136. const loading = ref(false)
  137. // 路由
  138. const route = useRoute()
  139. const router = useRouter()
  140. const info = ref({})
  141. const file = ref([bg_1, bg_2, bg_3, bg_4])
  142. const list = ref([])
  143. // 请求
  144. onMounted(async () => {
  145. loading.value = true
  146. await searchOther()
  147. await search()
  148. await searchAchieve()
  149. loading.value = false
  150. })
  151. // 字典表
  152. const matureList = ref([])
  153. const sellList = ref([])
  154. const searchOther = async () => {
  155. let result
  156. // 成熟度
  157. result = await dictDataStore.query({ code: 'mature', is_use: '0' })
  158. if ($checkRes(result)) matureList.value = result.data
  159. // 出让方式
  160. result = await dictDataStore.query({ code: 'sell', is_use: '0' })
  161. if ($checkRes(result)) sellList.value = result.data
  162. }
  163. const search = async () => {
  164. let id = route.query.id
  165. if (id) {
  166. let res = await store.detail(id)
  167. if (res.errcode == '0') info.value = res.data
  168. }
  169. }
  170. const searchAchieve = async () => {
  171. const data = {
  172. skip: 0,
  173. limit: 4,
  174. is_use: '0',
  175. status: '1',
  176. field: info.value.field
  177. }
  178. const res = await store.list(data)
  179. if (res.errcode == '0') list.value = res.data
  180. }
  181. // 查看详情
  182. const toView = async (item) => {
  183. router.push({ path: '/achievement/detail', query: { id: item.id || item._id } }).then(() => {
  184. // 重新刷新页面
  185. location.reload()
  186. })
  187. }
  188. // 字典数据转换
  189. const getDict = (data, model) => {
  190. if (data) {
  191. let res
  192. if (model == 'mature') res = matureList.value.find((f) => f.value == data)
  193. else if (model == 'sell') res = sellList.value.find((f) => f.value == data)
  194. return get(res, 'label')
  195. }
  196. }
  197. const toCollect = async () => {
  198. if (user.value.id) {
  199. info.value.is_collection = !info.value.is_collection
  200. let res
  201. let message
  202. const data = {
  203. user: user.value.id,
  204. source: info.value.id,
  205. type: 'achievement',
  206. time: moment().format('YYYY-MM-DD')
  207. }
  208. if (info.value.is_collection) {
  209. message = '收藏成功'
  210. res = await collectionStore.create(data)
  211. } else {
  212. message = '取消收藏成功'
  213. res = await collectionStore.cancel(data)
  214. }
  215. if (res.errcode === 0) {
  216. ElMessage({ message, type: 'success' })
  217. await search()
  218. }
  219. } else ElMessage({ message: '未登录!', type: 'error' })
  220. }
  221. const toChat = () => {
  222. if (user.value.id) {
  223. ElMessageBox.confirm(`您确认要预约对接?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
  224. .then(async () => {
  225. const obj = {
  226. source_id: route.query.id,
  227. source: 'achievement',
  228. apply_user: user.value.id
  229. }
  230. const res = await contactApplyStore.create(obj)
  231. $checkRes(res, `预约对接成功等待消息通知`, res.errmsg)
  232. })
  233. .catch(() => {})
  234. } else ElMessage({ message: '未登录!', type: 'error' })
  235. }
  236. </script>
  237. <style scoped lang="scss">
  238. .main {
  239. .one {
  240. background: url(/images/bg-cg_detail-infor.png) no-repeat top right;
  241. .info_1 {
  242. padding: 100px 80px 0 80px;
  243. .name {
  244. font-size: $global-font-size-36;
  245. width: 70%;
  246. font-weight: bold;
  247. }
  248. .collect {
  249. display: flex;
  250. align-items: center;
  251. width: 35%;
  252. font-size: $global-font-size-20;
  253. color: #929292;
  254. cursor: default;
  255. span {
  256. margin: 0 0 0 5px;
  257. }
  258. }
  259. .iscollect {
  260. color: #1073ff;
  261. }
  262. .other_1 {
  263. width: 430px;
  264. margin-top: 40px !important;
  265. display: flex;
  266. align-items: center;
  267. justify-content: space-between;
  268. .value {
  269. display: flex;
  270. align-items: center;
  271. .span {
  272. margin: 0 0 0 10px;
  273. font-size: 18px;
  274. line-height: 36px;
  275. color: #18284d;
  276. }
  277. }
  278. }
  279. .other_2 {
  280. width: 430px;
  281. .value {
  282. display: flex;
  283. align-items: center;
  284. margin: 5px 0 0 0;
  285. .span {
  286. margin: 0 0 0 10px;
  287. font-size: 18px;
  288. line-height: 36px;
  289. color: #18284d;
  290. }
  291. }
  292. .infoButton {
  293. margin: 10px 0 0 0;
  294. .button {
  295. cursor: default;
  296. justify-content: center;
  297. display: flex;
  298. align-items: center;
  299. width: 136px;
  300. height: 44px;
  301. color: #fff;
  302. font-size: $global-font-size-16;
  303. background-image: linear-gradient(90deg, #0455da 0%, #378cff 100%), linear-gradient(#0455da, #0455da);
  304. background-blend-mode: normal, normal;
  305. border-radius: 4px;
  306. }
  307. }
  308. }
  309. }
  310. .info_2 {
  311. padding: 0 80px;
  312. margin-top: 70px !important;
  313. .title {
  314. color: #000;
  315. display: inline-block;
  316. margin-right: 80px;
  317. padding-bottom: 20px;
  318. font-size: $global-font-size-30;
  319. color: #000000;
  320. border-bottom: 5px solid #378cff;
  321. cursor: pointer;
  322. }
  323. .file {
  324. margin: 20px 0 0 0;
  325. .el-link {
  326. font-size: $global-font-size-20;
  327. }
  328. }
  329. .content {
  330. padding: 20px;
  331. margin-top: 25px !important;
  332. width: 100%;
  333. background-image: linear-gradient(90deg, #3dbef2 0, #5b3bff 100%), linear-gradient(#5b3bff, #5b3bff);
  334. background-blend-mode: normal, normal;
  335. .tit {
  336. span {
  337. font-size: 20px !important;
  338. margin-left: 15px !important;
  339. color: #fff;
  340. }
  341. }
  342. .brief {
  343. line-height: 28px;
  344. color: #fff;
  345. font-size: 16px;
  346. margin-top: 20px !important;
  347. }
  348. }
  349. }
  350. .info_3 {
  351. padding: 80px !important;
  352. background: #fff;
  353. .title {
  354. color: #000;
  355. display: inline-block;
  356. margin-right: 80px;
  357. padding-bottom: 20px;
  358. font-size: $global-font-size-30;
  359. color: #000000;
  360. border-bottom: 5px solid #378cff;
  361. cursor: pointer;
  362. }
  363. .content {
  364. margin: 10px 0;
  365. display: flex;
  366. flex-wrap: wrap;
  367. align-items: center;
  368. .list {
  369. margin-right: 10px;
  370. margin-bottom: 15px;
  371. padding-top: 3px;
  372. width: 277px;
  373. height: 325px;
  374. background-color: #fff;
  375. box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.3);
  376. .list_1 {
  377. position: relative;
  378. .image {
  379. height: 100%;
  380. width: 100%;
  381. }
  382. .box {
  383. display: flex !important;
  384. align-items: center;
  385. position: absolute;
  386. top: 40px;
  387. left: 0;
  388. padding: 15px 10px;
  389. width: 100%;
  390. height: 70px;
  391. background-color: rgba(0, 25, 79, 0.5);
  392. font-size: $global-font-size-18;
  393. line-height: 24px;
  394. color: #fff;
  395. }
  396. }
  397. .list_2 {
  398. margin: 10px 13px 0;
  399. .other {
  400. display: flex;
  401. align-items: center;
  402. margin: 0 0 5px 0;
  403. .image {
  404. width: 25px;
  405. height: 25px;
  406. margin: 0 5px 0 0;
  407. }
  408. .text {
  409. font-size: $global-font-size-16;
  410. line-height: 32px;
  411. color: #404040;
  412. }
  413. }
  414. }
  415. }
  416. .list:nth-child(4n) {
  417. margin-right: 0;
  418. }
  419. .list:hover {
  420. box-shadow: 0 2px 5px 0 rgba(159, 158, 158, 0.8);
  421. }
  422. }
  423. }
  424. }
  425. }
  426. </style>