332 lines
9.3 KiB
Vue
332 lines
9.3 KiB
Vue
<!--
|
||
* @Author: hisense.liangjunhua
|
||
* @Date: 2022-06-08 11:56:28
|
||
* @LastEditors: hisense.liangjunhua
|
||
* @LastEditTime: 2022-07-19 15:02:47
|
||
* @Description: 算法详情页头部
|
||
-->
|
||
<template>
|
||
<div class="algorithm-top-details">
|
||
<div class="left">
|
||
<div class="top">
|
||
<a-tooltip placement="top">
|
||
<template #title>{{ props.dataList.name }}</template>
|
||
<span class="name">
|
||
{{ props.dataList.name }}
|
||
</span>
|
||
</a-tooltip>
|
||
<!-- <span class="name">{{ props.dataList.name }}</span> -->
|
||
<div class="label-content">
|
||
<p class="lable-father">
|
||
<span class="label" v-if="props.dataList.type">
|
||
{{ props.dataList.type }}
|
||
</span>
|
||
<span class="label" v-if="componentType">
|
||
{{ componentType }}
|
||
</span>
|
||
<span class="label" v-if="props.dataList.shareType">
|
||
{{ props.dataList.shareType }}
|
||
</span>
|
||
<span class="label" v-if="props.dataList.shareCondition">
|
||
{{ props.dataList.shareCondition }}
|
||
</span>
|
||
<span class="label" v-if="deploymentLocation">
|
||
{{ deploymentLocation }}
|
||
</span>
|
||
</p>
|
||
</div>
|
||
<!-- <span class="label">免费</span> -->
|
||
</div>
|
||
<div class="main">
|
||
<a-tooltip placement="top">
|
||
<template #title>应用领域:{{ businessArea }}</template>
|
||
<div>应用领域:{{ businessArea }}</div>
|
||
</a-tooltip>
|
||
<a-tooltip placement="top">
|
||
<template #title>{{ props.dataList.description }}</template>
|
||
<div>
|
||
{{ props.dataList.description }}
|
||
</div>
|
||
</a-tooltip>
|
||
</div>
|
||
<div class="bottom" v-if="props.dataList.id">
|
||
<a-button type="primary" @click="toView()">
|
||
<template #icon>
|
||
<form-outlined />
|
||
</template>
|
||
申请使用
|
||
</a-button>
|
||
<a-button type="primary" @click="addShoppingCart()">
|
||
<!-- <template #icon>
|
||
<shopping-cart-outlined />
|
||
</template> -->
|
||
{{ props.dataList.isInShoppingCart ? '已' : '' }}加入申购车
|
||
</a-button>
|
||
<a-button type="primary" @click="goTOCollection()">
|
||
{{ props.dataList.isCollect == 'true' ? '已' : '' }}收藏
|
||
</a-button>
|
||
</div>
|
||
</div>
|
||
<div class="right"></div>
|
||
</div>
|
||
</template>
|
||
<script setup>
|
||
import { ShoppingCartOutlined } from '@ant-design/icons-vue'
|
||
import { defineProps, ref, watch } from 'vue'
|
||
import { scInsert, scDel } from '@/api/personalCenter'
|
||
import { sgcInsert } from '@/api/home'
|
||
import { useRouter } from 'vue-router'
|
||
import mybus from '@/myplugins/mybus'
|
||
import { message } from 'ant-design-vue'
|
||
const props = defineProps({
|
||
dataList: { type: Object, default: null },
|
||
})
|
||
const router = useRouter()
|
||
const businessArea = ref('')
|
||
const deploymentLocation = ref('') //部署位置
|
||
const componentType = ref('') //组件类型
|
||
// // 加入申购车
|
||
const addShoppingCart = () => {
|
||
if (props.dataList.isInShoppingCart) {
|
||
message.error('已经加入申购车了')
|
||
} else {
|
||
console.log('加入申购车==================>', props.dataList)
|
||
sgcInsert({
|
||
delFlag: '0',
|
||
resourceId: props.dataList.id,
|
||
// userId: userId.value,
|
||
}).then((res) => {
|
||
console.log(res)
|
||
message.success('添加申购车成功!')
|
||
mybus.emit('getSgcNum')
|
||
props.dataList.isInShoppingCart = true
|
||
console.log(
|
||
props.dataList.isInShoppingCart,
|
||
'props.dataList.isInShoppingCart'
|
||
)
|
||
})
|
||
}
|
||
}
|
||
// // 立即申请
|
||
function toView() {
|
||
// window.open(newpage.href, '_blank')
|
||
console.log('一键申请===================>', props.dataList)
|
||
localStorage.setItem(
|
||
'applyList',
|
||
JSON.stringify([
|
||
{
|
||
arr: [
|
||
{
|
||
delFlag: props.dataList.delFlag,
|
||
description: props.dataList.description,
|
||
resourceId: props.dataList.id,
|
||
resourceName: props.dataList.name,
|
||
time: props.dataList.createDate,
|
||
type: props.dataList.type,
|
||
componentType: '业务组件',
|
||
},
|
||
],
|
||
deptId: props.dataList.deptId,
|
||
deptName: props.dataList.deptName,
|
||
},
|
||
])
|
||
)
|
||
router.push({
|
||
path: '/apply',
|
||
})
|
||
}
|
||
// 收藏
|
||
const scFlag2 = ref(true)
|
||
const goTOCollection = () => {
|
||
console.log('收藏===================》', props.dataList)
|
||
if (scFlag2.value) {
|
||
scFlag2.value = false
|
||
if (props.dataList.isCollect) {
|
||
scDel([props.dataList.id]).then((res) => {
|
||
if (res.data.msg === 'success') {
|
||
message.success('取消成功')
|
||
// eslint-disable-next-line vue/no-mutating-props
|
||
props.dataList.isCollect = 'false'
|
||
scFlag2.value = true
|
||
}
|
||
})
|
||
} else {
|
||
scInsert([
|
||
{
|
||
resourceId: props.dataList.id,
|
||
},
|
||
]).then((res) => {
|
||
if (res.data.msg === 'success') {
|
||
message.success('添加收藏成功!')
|
||
// eslint-disable-next-line vue/no-mutating-props
|
||
props.dataList.isCollect = 'true'
|
||
scFlag2.value = true
|
||
}
|
||
})
|
||
}
|
||
}
|
||
// scInsert([{ resourceId: props.dataList.id }]).then((res) => {
|
||
// console.log(res)
|
||
// message.success('收藏成功')
|
||
// })
|
||
}
|
||
if (props.dataList.infoList) {
|
||
businessArea.value = props.dataList.infoList.filter(
|
||
(val) => val.attrType === '应用领域'
|
||
)[0].attrValue
|
||
let obj = props.dataList.infoList.filter(
|
||
(val) => val.attrType === '组件类型'
|
||
)[0]
|
||
if (
|
||
props.dataList.infoList.filter((val) => val.attrType === '部署位置')[0]
|
||
) {
|
||
deploymentLocation.value = props.dataList.infoList.filter(
|
||
(val) => val.attrType === '部署位置'
|
||
)[0].attrValue
|
||
}
|
||
if (obj) {
|
||
componentType.value = obj.attrValue
|
||
}
|
||
}
|
||
watch(
|
||
() => props.dataList,
|
||
(val) => {
|
||
if (val) {
|
||
businessArea.value = props.dataList.infoList.filter(
|
||
(val) => val.attrType === '应用领域'
|
||
)[0].attrValue
|
||
let obj = props.dataList.infoList.filter(
|
||
(val) => val.attrType === '组件类型'
|
||
)[0]
|
||
if (
|
||
props.dataList.infoList.filter(
|
||
(val) => val.attrType === '部署位置'
|
||
)[0]
|
||
) {
|
||
deploymentLocation.value = props.dataList.infoList.filter(
|
||
(val) => val.attrType === '部署位置'
|
||
)[0].attrValue
|
||
}
|
||
if (obj) {
|
||
componentType.value = obj.attrValue
|
||
}
|
||
}
|
||
}
|
||
)
|
||
</script>
|
||
<style lang="less" scoped>
|
||
.algorithm-top-details {
|
||
height: 6rem;
|
||
padding: 1.8rem 0 0;
|
||
background: url('~@/assets/detailsAll/sf_top_bg.png') no-repeat;
|
||
background-size: 100%;
|
||
display: flex;
|
||
justify-content: center;
|
||
|
||
.left {
|
||
max-width: 7.2rem;
|
||
color: #fff;
|
||
margin-right: 0.8rem;
|
||
|
||
.top {
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
span {
|
||
font-size: 0.14rem;
|
||
}
|
||
|
||
.name {
|
||
// max-width: 3.3rem;
|
||
// overflow: hidden;
|
||
// text-overflow: ellipsis;
|
||
// white-space: nowrap;
|
||
font-size: 0.4rem;
|
||
margin-right: 0.2rem;
|
||
max-width: 6rem;
|
||
text-overflow: -o-ellipsis-lastline;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 1;
|
||
-webkit-box-orient: vertical;
|
||
word-break: break-all;
|
||
}
|
||
|
||
.label-content {
|
||
position: relative;
|
||
}
|
||
|
||
.lable-father {
|
||
position: absolute;
|
||
min-width: 5.5rem;
|
||
right: -5.5rem;
|
||
top: 0;
|
||
}
|
||
|
||
.label {
|
||
padding: 0.01rem 0.1rem;
|
||
margin-right: 0.1rem;
|
||
border-radius: 0.13rem;
|
||
background: rgba(255, 255, 255, 0.4);
|
||
}
|
||
}
|
||
|
||
.main {
|
||
margin-top: 0.2rem;
|
||
font-size: 0.18rem;
|
||
line-height: 0.34rem;
|
||
|
||
& > div:nth-of-type(1) {
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
|
||
& > div:nth-of-type(2) {
|
||
max-height: 1rem;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 3;
|
||
-webkit-box-orient: vertical;
|
||
word-break: break-all;
|
||
}
|
||
}
|
||
|
||
.bottom {
|
||
margin-top: 40px;
|
||
display: flex;
|
||
.ant-btn {
|
||
height: 50px;
|
||
margin-right: 20px;
|
||
background: #ff8b55;
|
||
border-radius: 6px;
|
||
font-size: 20px;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
}
|
||
.ant-btn:nth-of-type(1) {
|
||
width: 180px;
|
||
}
|
||
.ant-btn:nth-of-type(2) {
|
||
width: 220px;
|
||
}
|
||
.ant-btn:nth-of-type(3) {
|
||
width: 145px;
|
||
}
|
||
}
|
||
}
|
||
|
||
.right {
|
||
width: 5.8rem;
|
||
height: 4rem;
|
||
background: url('~@/assets/detailsAll/business/business_right_bg.png')
|
||
no-repeat;
|
||
background-size: 100%;
|
||
margin-top: -0.4rem;
|
||
}
|
||
}
|
||
</style>
|