2022-06-20 18:34:31 +08:00
|
|
|
|
<!--
|
|
|
|
|
* @Author: hisense.liangjunhua
|
|
|
|
|
* @Date: 2022-06-08 11:56:28
|
|
|
|
|
* @LastEditors: hisense.liangjunhua
|
2022-07-15 17:32:47 +08:00
|
|
|
|
* @LastEditTime: 2022-07-15 17:32:08
|
2022-06-20 18:34:31 +08:00
|
|
|
|
* @Description: 开发组件详情页头部
|
|
|
|
|
-->
|
|
|
|
|
<template>
|
|
|
|
|
<div class="algorithm-top-details">
|
|
|
|
|
<div class="left">
|
|
|
|
|
<div class="top">
|
2022-06-30 11:42:01 +08:00
|
|
|
|
<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> -->
|
2022-06-20 18:34:31 +08:00
|
|
|
|
<div class="label-content">
|
|
|
|
|
<p class="lable-father">
|
2022-07-07 20:35:13 +08:00
|
|
|
|
<span class="label" v-if="props.dataList.type">
|
|
|
|
|
{{ props.dataList.type }}
|
|
|
|
|
</span>
|
2022-07-15 14:12:04 +08:00
|
|
|
|
<span class="label" v-if="componentType">
|
|
|
|
|
{{ componentType }}
|
|
|
|
|
</span>
|
2022-07-07 20:35:13 +08:00
|
|
|
|
<span class="label" v-if="props.dataList.shareType">
|
|
|
|
|
{{ props.dataList.shareType }}
|
|
|
|
|
</span>
|
|
|
|
|
<span class="label" v-if="props.dataList.shareCondition">
|
|
|
|
|
{{ props.dataList.shareCondition }}
|
2022-06-21 11:33:12 +08:00
|
|
|
|
</span>
|
2022-07-15 14:12:04 +08:00
|
|
|
|
<span class="label" v-if="deploymentLocation">
|
|
|
|
|
{{ deploymentLocation }}
|
|
|
|
|
</span>
|
2022-06-20 18:34:31 +08:00
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <span class="label">免费</span> -->
|
|
|
|
|
</div>
|
|
|
|
|
<div class="main">
|
2022-07-01 11:24:19 +08:00
|
|
|
|
<a-tooltip placement="top">
|
|
|
|
|
<template #title>应用领域:{{ applicationArea }}</template>
|
|
|
|
|
<div>应用领域:{{ applicationArea }}</div>
|
|
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip placement="top">
|
|
|
|
|
<template #title>{{ props.dataList.description }}</template>
|
|
|
|
|
<div>
|
|
|
|
|
{{ props.dataList.description }}
|
|
|
|
|
</div>
|
|
|
|
|
</a-tooltip>
|
2022-06-20 18:34:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="bottom" v-if="props.dataList.id">
|
2022-06-30 15:35:49 +08:00
|
|
|
|
<a-button type="primary" @click="toView()">
|
2022-06-20 18:34:31 +08:00
|
|
|
|
<template #icon><form-outlined /></template>
|
|
|
|
|
申请使用
|
|
|
|
|
</a-button>
|
|
|
|
|
<a-button type="primary" @click="addShoppingCart()">
|
|
|
|
|
<template #icon><shopping-cart-outlined /></template>
|
|
|
|
|
加入购物车
|
2022-06-30 15:35:49 +08:00
|
|
|
|
</a-button>
|
2022-07-15 17:32:47 +08:00
|
|
|
|
<a-button type="primary" @click="goTOCollection()">
|
|
|
|
|
{{ scFlag ? '已' : '' }}收藏
|
|
|
|
|
</a-button>
|
2022-06-20 18:34:31 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="right"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup>
|
2022-06-30 15:35:49 +08:00
|
|
|
|
import { FormOutlined, ShoppingCartOutlined } from '@ant-design/icons-vue'
|
2022-06-20 18:34:31 +08:00
|
|
|
|
import { defineProps, ref, watch } from 'vue'
|
2022-07-15 17:32:47 +08:00
|
|
|
|
import { scInsert, scDel } from '@/api/personalCenter'
|
2022-06-30 15:35:49 +08:00
|
|
|
|
import { sgcInsert } from '@/api/home'
|
|
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|
import mybus from '@/myplugins/mybus'
|
2022-06-20 18:34:31 +08:00
|
|
|
|
import { message } from 'ant-design-vue'
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
dataList: { type: Object, default: null },
|
|
|
|
|
})
|
2022-06-30 15:35:49 +08:00
|
|
|
|
const router = useRouter()
|
2022-06-20 18:34:31 +08:00
|
|
|
|
const applicationArea = ref('')
|
2022-07-15 14:12:04 +08:00
|
|
|
|
const deploymentLocation = ref('') //部署位置
|
2022-06-30 15:35:49 +08:00
|
|
|
|
// 加入申购车
|
|
|
|
|
const addShoppingCart = () => {
|
|
|
|
|
console.log('加入申购车==================>', props.dataList)
|
|
|
|
|
sgcInsert({
|
|
|
|
|
delFlag: '0',
|
|
|
|
|
resourceId: props.dataList.id,
|
|
|
|
|
// userId: userId.value,
|
|
|
|
|
}).then((res) => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
message.success('添加申购车成功!')
|
|
|
|
|
mybus.emit('getSgcNum')
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// 立即申请
|
|
|
|
|
function toView() {
|
|
|
|
|
// window.open(newpage.href, '_blank')
|
2022-07-01 14:31:46 +08:00
|
|
|
|
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,
|
2022-07-05 11:51:31 +08:00
|
|
|
|
componentType: '开发组件',
|
2022-07-01 14:31:46 +08:00
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
deptId: props.dataList.deptId,
|
|
|
|
|
deptName: props.dataList.deptName,
|
|
|
|
|
},
|
|
|
|
|
])
|
|
|
|
|
)
|
2022-06-30 15:35:49 +08:00
|
|
|
|
router.push({
|
|
|
|
|
path: '/apply',
|
|
|
|
|
})
|
|
|
|
|
}
|
2022-06-20 18:34:31 +08:00
|
|
|
|
// 收藏
|
2022-07-15 17:32:47 +08:00
|
|
|
|
const scFlag = ref(props.dataList.isCollect)
|
|
|
|
|
const scFlag2 = ref(true)
|
2022-06-20 18:34:31 +08:00
|
|
|
|
const goTOCollection = () => {
|
|
|
|
|
console.log('收藏===================》', props.dataList)
|
2022-07-15 17:32:47 +08:00
|
|
|
|
if (scFlag2.value) {
|
|
|
|
|
scFlag2.value = false
|
|
|
|
|
if (scFlag.value) {
|
|
|
|
|
scDel([props.dataList.id]).then((res) => {
|
|
|
|
|
if (res.data.msg === 'success') {
|
|
|
|
|
message.success('取消成功')
|
|
|
|
|
scFlag.value = false
|
|
|
|
|
scFlag2.value = true
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
scInsert([
|
|
|
|
|
{
|
|
|
|
|
resourceId: props.dataList.id,
|
|
|
|
|
},
|
|
|
|
|
]).then((res) => {
|
|
|
|
|
if (res.data.msg === 'success') {
|
|
|
|
|
message.success('添加收藏成功!')
|
|
|
|
|
scFlag.value = true
|
|
|
|
|
scFlag2.value = true
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// scInsert([{ resourceId: props.dataList.id }]).then((res) => {
|
|
|
|
|
// console.log(res)
|
|
|
|
|
// message.success('收藏成功')
|
|
|
|
|
// })
|
2022-06-20 18:34:31 +08:00
|
|
|
|
}
|
2022-06-21 11:33:12 +08:00
|
|
|
|
const componentType = ref('')
|
2022-06-20 18:34:31 +08:00
|
|
|
|
if (props.dataList.infoList) {
|
|
|
|
|
applicationArea.value = props.dataList.infoList.filter(
|
|
|
|
|
(val) => val.attrType === '应用领域'
|
|
|
|
|
)[0].attrValue
|
2022-06-21 11:33:12 +08:00
|
|
|
|
let obj = props.dataList.infoList.filter(
|
|
|
|
|
(val) => val.attrType === '组件类型'
|
|
|
|
|
)[0]
|
2022-07-15 14:12:04 +08:00
|
|
|
|
if (
|
|
|
|
|
props.dataList.infoList.filter((val) => val.attrType === '部署位置')[0]
|
|
|
|
|
) {
|
|
|
|
|
deploymentLocation.value = props.dataList.infoList.filter(
|
|
|
|
|
(val) => val.attrType === '部署位置'
|
|
|
|
|
)[0].attrValue
|
|
|
|
|
}
|
2022-06-21 11:33:12 +08:00
|
|
|
|
if (obj) {
|
|
|
|
|
componentType.value = obj.attrValue
|
|
|
|
|
}
|
2022-06-20 18:34:31 +08:00
|
|
|
|
}
|
|
|
|
|
watch(
|
|
|
|
|
() => props.dataList,
|
|
|
|
|
(val) => {
|
|
|
|
|
if (val) {
|
|
|
|
|
applicationArea.value = props.dataList.infoList.filter(
|
|
|
|
|
(val) => val.attrType === '应用领域'
|
|
|
|
|
)[0].attrValue
|
2022-06-21 11:33:12 +08:00
|
|
|
|
let obj = props.dataList.infoList.filter(
|
|
|
|
|
(val) => val.attrType === '组件类型'
|
|
|
|
|
)[0]
|
2022-07-15 14:12:04 +08:00
|
|
|
|
if (
|
|
|
|
|
props.dataList.infoList.filter(
|
|
|
|
|
(val) => val.attrType === '部署位置'
|
|
|
|
|
)[0]
|
|
|
|
|
) {
|
|
|
|
|
deploymentLocation.value = props.dataList.infoList.filter(
|
|
|
|
|
(val) => val.attrType === '部署位置'
|
|
|
|
|
)[0].attrValue
|
|
|
|
|
}
|
2022-06-21 11:33:12 +08:00
|
|
|
|
if (obj) {
|
|
|
|
|
componentType.value = obj.attrValue
|
|
|
|
|
}
|
2022-06-20 18:34:31 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
</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;
|
2022-06-30 11:42:01 +08:00
|
|
|
|
// white-space: nowrap;
|
2022-06-20 18:34:31 +08:00
|
|
|
|
font-size: 0.4rem;
|
|
|
|
|
margin-right: 0.2rem;
|
2022-06-30 11:42:01 +08:00
|
|
|
|
max-width: 7rem;
|
|
|
|
|
text-overflow: -o-ellipsis-lastline;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
|
-webkit-box-orient: vertical;
|
2022-06-20 18:34:31 +08:00
|
|
|
|
}
|
|
|
|
|
.label-content {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
.lable-father {
|
|
|
|
|
position: absolute;
|
2022-07-15 14:12:04 +08:00
|
|
|
|
min-width: 5.5rem;
|
|
|
|
|
right: -5.5rem;
|
2022-06-20 18:34:31 +08:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.bottom {
|
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
.ant-btn {
|
|
|
|
|
height: 0.5rem;
|
|
|
|
|
margin-right: 0.2rem;
|
|
|
|
|
background: #ff8b55;
|
|
|
|
|
border-radius: 0.06rem;
|
|
|
|
|
font-size: 0.2rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.ant-btn:nth-of-type(1) {
|
|
|
|
|
width: 1.8rem;
|
|
|
|
|
}
|
|
|
|
|
.ant-btn:nth-of-type(2) {
|
|
|
|
|
width: 2.2rem;
|
|
|
|
|
}
|
|
|
|
|
.ant-btn:nth-of-type(3) {
|
|
|
|
|
width: 1.45rem;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: #526aff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.right {
|
|
|
|
|
width: 5.8rem;
|
|
|
|
|
height: 4rem;
|
|
|
|
|
background: url('~@/assets/detailsAll/sf_right_bg.png') no-repeat;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
margin-top: -0.4rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|