业务组件bug
This commit is contained in:
parent
86580758f4
commit
d93cfa543c
|
@ -20,104 +20,112 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
||||||
import { ref, defineProps, watch } from 'vue'
|
import { ref, defineProps, watch } from 'vue'
|
||||||
const flag = ref(true)
|
const flag = ref(true)
|
||||||
let dataFrom = ref([])
|
let dataFrom = ref([])
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
})
|
})
|
||||||
if (props.dataList.infoList) {
|
if (props.dataList.infoList) {
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(item) => item.attrType === '常见问题'
|
(item) => item.attrType === '常见问题'
|
||||||
)[0]
|
)[0]
|
||||||
if (!obj) {
|
if (!obj) {
|
||||||
flag.value = false
|
flag.value = false
|
||||||
} else {
|
} else {
|
||||||
obj.attrValue = JSON.parse(obj.attrValue)
|
obj.attrValue = JSON.parse(obj.attrValue)
|
||||||
obj.attrValue.map((item) => {
|
obj.attrValue.map((item) => {
|
||||||
let params = {
|
let params = {
|
||||||
title: item.question,
|
title: item.question,
|
||||||
answer: item.answer,
|
answer: item.answer,
|
||||||
}
|
}
|
||||||
dataFrom.value.push(params)
|
dataFrom.value.push(params)
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
watch(
|
}
|
||||||
() => props.dataList,
|
watch(
|
||||||
(val) => {
|
() => props.dataList,
|
||||||
if (val) {
|
(val) => {
|
||||||
let obj = val.infoList.filter((item) => item.attrType === '常见问题')[0]
|
if (val) {
|
||||||
if (!obj) {
|
let obj = val.infoList.filter((item) => item.attrType === '常见问题')[0]
|
||||||
flag.value = false
|
if (!obj) {
|
||||||
} else {
|
flag.value = false
|
||||||
obj.attrValue = JSON.parse(obj.attrValue)
|
} else {
|
||||||
obj.attrValue.map((item) => {
|
obj.attrValue = JSON.parse(obj.attrValue)
|
||||||
let params = {
|
obj.attrValue.map((item) => {
|
||||||
title: item.question,
|
let params = {
|
||||||
answer: item.answer,
|
title: item.question,
|
||||||
}
|
answer: item.answer,
|
||||||
dataFrom.value.push(params)
|
}
|
||||||
})
|
dataFrom.value.push(params)
|
||||||
}
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
}
|
||||||
|
)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.cpmmon-problem {
|
.cpmmon-problem {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-top: 80px;
|
padding-top: 160px;
|
||||||
background: #f7f8fa;
|
background: #f7f8fa;
|
||||||
.content {
|
|
||||||
width: 1300px;
|
.content {
|
||||||
margin: 20px 0px;
|
width: 1300px;
|
||||||
background: #ffffff;
|
margin: 20px 0px;
|
||||||
padding: 40px;
|
background: #ffffff;
|
||||||
.content-son {
|
padding: 40px;
|
||||||
font-size: 20px;
|
|
||||||
margin-bottom: 60px;
|
.content-son {
|
||||||
.content-top {
|
font-size: 20px;
|
||||||
display: flex;
|
margin-bottom: 60px;
|
||||||
align-items: center;
|
|
||||||
margin-bottom: 20px;
|
.content-top {
|
||||||
line-height: 20px;
|
display: flex;
|
||||||
}
|
align-items: center;
|
||||||
.content-bottom {
|
margin-bottom: 20px;
|
||||||
display: flex;
|
line-height: 20px;
|
||||||
line-height: 34px;
|
}
|
||||||
color: #666666;
|
|
||||||
}
|
.content-bottom {
|
||||||
.content-top,
|
display: flex;
|
||||||
.content-bottom {
|
line-height: 34px;
|
||||||
div:last-child {
|
color: #666666;
|
||||||
width: calc(100% - 54px);
|
}
|
||||||
}
|
|
||||||
}
|
.content-top,
|
||||||
.top-img {
|
.content-bottom {
|
||||||
width: 34px;
|
div:last-child {
|
||||||
height: 30px;
|
width: calc(100% - 54px);
|
||||||
background: url('~@/assets/detailsAll/sf_top_img.png') no-repeat;
|
|
||||||
background-position: center;
|
|
||||||
background-size: cover;
|
|
||||||
margin-right: 20px;
|
|
||||||
}
|
|
||||||
.bottom-img {
|
|
||||||
width: 34px;
|
|
||||||
height: 30px;
|
|
||||||
background: url('~@/assets/detailsAll/sf_bottom_img.png') no-repeat;
|
|
||||||
ackground-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
margin-right: 20px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.content-son:last-child {
|
|
||||||
margin-bottom: 0px;
|
.top-img {
|
||||||
|
width: 34px;
|
||||||
|
height: 30px;
|
||||||
|
background: url('~@/assets/detailsAll/sf_top_img.png') no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: cover;
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom-img {
|
||||||
|
width: 34px;
|
||||||
|
height: 30px;
|
||||||
|
background: url('~@/assets/detailsAll/sf_bottom_img.png') no-repeat;
|
||||||
|
ackground-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content-son:last-child {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -7,42 +7,26 @@
|
||||||
<DetalsTitle :title="dataFrom.attrType" type="INTRODUCE"></DetalsTitle>
|
<DetalsTitle :title="dataFrom.attrType" type="INTRODUCE"></DetalsTitle>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab">
|
<div class="tab">
|
||||||
<div
|
<div v-for="(itemSonTitle, indexSonTitle) in dataFrom.attrValue" :key="itemSonTitle.name"
|
||||||
v-for="(itemSonTitle, indexSonTitle) in dataFrom.attrValue"
|
@click="tabSwitch(itemSonTitle.name)" class="tab-son" :class="
|
||||||
:key="itemSonTitle.name"
|
|
||||||
@click="tabSwitch(itemSonTitle.name)"
|
|
||||||
class="tab-son"
|
|
||||||
:class="
|
|
||||||
tabIndexClass(indexSonTitle, dataFrom.name, dataFrom.attrValue)
|
tabIndexClass(indexSonTitle, dataFrom.name, dataFrom.attrValue)
|
||||||
"
|
">
|
||||||
>
|
|
||||||
<a-tooltip>
|
<a-tooltip>
|
||||||
<template #title>{{ itemSonTitle.name }}</template>
|
<template #title>{{ itemSonTitle.name }}</template>
|
||||||
<div
|
<div class="tab-top" :class="
|
||||||
class="tab-top"
|
tabInitialize() == itemSonTitle.name ? 'tab-top-down' : ''
|
||||||
:class="
|
">
|
||||||
tabInitialize() == itemSonTitle.name ? 'tab-top-down' : ''
|
|
||||||
"
|
|
||||||
>
|
|
||||||
{{ itemSonTitle.name }}
|
{{ itemSonTitle.name }}
|
||||||
</div>
|
</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<div
|
<div class="tab-bottom" v-if="tabInitialize() == itemSonTitle.name"></div>
|
||||||
class="tab-bottom"
|
|
||||||
v-if="tabInitialize() == itemSonTitle.name"
|
|
||||||
></div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<template v-for="itemSonTitle in dataFrom.attrValue" :key="itemSonTitle">
|
<template v-for="itemSonTitle in dataFrom.attrValue" :key="itemSonTitle">
|
||||||
<div class="content" v-if="tabindex == itemSonTitle.name">
|
<div class="content" v-if="tabindex == itemSonTitle.name">
|
||||||
<div class="content-left">
|
<div class="content-left">
|
||||||
<div class="content-left-scene" v-if="!itemSonTitle.img"></div>
|
<div class="content-left-scene" v-if="!itemSonTitle.img"></div>
|
||||||
<a-image
|
<a-image :width="635" :height="340" :src="itemSonTitle.img" v-if="itemSonTitle.img"></a-image>
|
||||||
:width="635"
|
|
||||||
:height="340"
|
|
||||||
:src="itemSonTitle.img"
|
|
||||||
v-if="itemSonTitle.img"
|
|
||||||
></a-image>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="content-right">
|
<div class="content-right">
|
||||||
<div class="content-right-scene">
|
<div class="content-right-scene">
|
||||||
|
@ -60,194 +44,215 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
||||||
import { ref, defineProps, watch } from 'vue'
|
import { ref, defineProps, watch } from 'vue'
|
||||||
const flag = ref(true)
|
const flag = ref(true)
|
||||||
let dataFrom = ref([])
|
let dataFrom = ref([])
|
||||||
// tab切换方法
|
// tab切换方法
|
||||||
let tabindex = ref('场景说明一')
|
let tabindex = ref('场景说明一')
|
||||||
//数据初始化
|
//数据初始化
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
})
|
})
|
||||||
if (props.dataList.infoList) {
|
if (props.dataList.infoList) {
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(item) => item.attrType === '功能介绍'
|
(item) => item.attrType === '功能介绍'
|
||||||
)[0]
|
)[0]
|
||||||
if (!obj) {
|
if (!obj) {
|
||||||
flag.value = false
|
flag.value = false
|
||||||
} else {
|
} else {
|
||||||
obj.attrValue = JSON.parse(obj.attrValue)
|
obj.attrValue = JSON.parse(obj.attrValue)
|
||||||
dataFrom.value = obj
|
dataFrom.value = obj
|
||||||
tabindex.value = dataFrom.value.attrValue[0].name
|
tabindex.value = dataFrom.value.attrValue[0].name
|
||||||
}
|
|
||||||
}
|
}
|
||||||
watch(
|
}
|
||||||
() => props.dataList,
|
watch(
|
||||||
(val) => {
|
() => props.dataList,
|
||||||
if (val) {
|
(val) => {
|
||||||
let obj = val.infoList.filter((item) => item.attrType === '功能介绍')[0]
|
if (val) {
|
||||||
if (!obj) {
|
let obj = val.infoList.filter((item) => item.attrType === '功能介绍')[0]
|
||||||
flag.value = false
|
if (!obj) {
|
||||||
} else {
|
flag.value = false
|
||||||
obj.attrValue = JSON.parse(obj.attrValue)
|
} else {
|
||||||
dataFrom.value = obj
|
obj.attrValue = JSON.parse(obj.attrValue)
|
||||||
tabindex.value = dataFrom.value.attrValue[0].name
|
dataFrom.value = obj
|
||||||
}
|
tabindex.value = dataFrom.value.attrValue[0].name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
|
||||||
//滚动条样式
|
|
||||||
function tabIndexClass(index, title, content) {
|
|
||||||
if (title == '功能介绍' && index == 0 && content.length > 6) {
|
|
||||||
return 'tab-son-class'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//初始化tab切换(判断标题不同,点击事件的判断变量不同)
|
)
|
||||||
function tabInitialize() {
|
//滚动条样式
|
||||||
return tabindex.value
|
function tabIndexClass(index, title, content) {
|
||||||
}
|
if (title == '功能介绍' && index == 0 && content.length > 6) {
|
||||||
//tab切换点击事件
|
return 'tab-son-class'
|
||||||
function tabSwitch(name) {
|
|
||||||
tabindex.value = name
|
|
||||||
return tabindex.value
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
//初始化tab切换(判断标题不同,点击事件的判断变量不同)
|
||||||
|
function tabInitialize() {
|
||||||
|
return tabindex.value
|
||||||
|
}
|
||||||
|
//tab切换点击事件
|
||||||
|
function tabSwitch(name) {
|
||||||
|
tabindex.value = name
|
||||||
|
return tabindex.value
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.function-intorduction {
|
.function-intorduction {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: #f7f8fa;
|
background: #f7f8fa;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
overflow-x: unset;
|
||||||
|
|
||||||
|
.application-scenarios-and-case-son {
|
||||||
|
padding-top: 0.8rem;
|
||||||
|
padding-bottom: 0.8rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
overflow-x: unset;
|
overflow: unset;
|
||||||
.application-scenarios-and-case-son {
|
|
||||||
padding-top: 0.8rem;
|
.tab {
|
||||||
padding-bottom: 0.8rem;
|
max-width: 13rem;
|
||||||
|
overflow-x: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
justify-content: center;
|
||||||
align-items: center;
|
color: #808080;
|
||||||
overflow: unset;
|
border-bottom: 0.01rem #e4e6f5 solid;
|
||||||
.tab {
|
margin-top: 0.45rem;
|
||||||
max-width: 13rem;
|
margin-bottom: 0.4rem;
|
||||||
overflow-x: auto;
|
cursor: pointer;
|
||||||
|
padding-left: 0.4rem;
|
||||||
|
padding-right: 0.4rem;
|
||||||
|
|
||||||
|
.tab-son {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
flex-direction: column;
|
||||||
color: #808080;
|
align-items: center;
|
||||||
border-bottom: 0.01rem #e4e6f5 solid;
|
margin-right: 1rem;
|
||||||
margin-top: 0.45rem;
|
|
||||||
margin-bottom: 0.4rem;
|
.tab-top {
|
||||||
cursor: pointer;
|
min-width: 1.2rem;
|
||||||
padding-left: 0.4rem;
|
font-size: 0.24rem;
|
||||||
padding-right: 0.4rem;
|
line-height: 0.24rem;
|
||||||
.tab-son {
|
margin-bottom: 0.2rem;
|
||||||
display: flex;
|
max-width: 2rem;
|
||||||
flex-direction: column;
|
height: 0.24rem;
|
||||||
align-items: center;
|
|
||||||
margin-right: 1rem;
|
|
||||||
.tab-top {
|
|
||||||
min-width: 1.2rem;
|
|
||||||
font-size: 0.24rem;
|
|
||||||
line-height: 0.24rem;
|
|
||||||
margin-bottom: 0.2rem;
|
|
||||||
max-width: 2rem;
|
|
||||||
height: 0.24rem;
|
|
||||||
display: -webkit-box;
|
|
||||||
overflow: hidden;
|
|
||||||
-webkit-line-clamp: 1;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
}
|
|
||||||
.tab-top-down {
|
|
||||||
min-width: 1.2rem;
|
|
||||||
color: #526aff;
|
|
||||||
margin-bottom: 0.16rem;
|
|
||||||
}
|
|
||||||
.tab-bottom {
|
|
||||||
height: 0.04rem;
|
|
||||||
width: 0.6rem;
|
|
||||||
background: #526aff;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.tab-son-class {
|
|
||||||
margin-left: 4.3rem;
|
|
||||||
margin-bottom: 0.02rem;
|
|
||||||
}
|
|
||||||
.tab-son-class-two {
|
|
||||||
margin-left: 2.3rem;
|
|
||||||
margin-bottom: 0.02rem;
|
|
||||||
}
|
|
||||||
.tab-son:last-child {
|
|
||||||
margin-right: 0rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.tab::-webkit-scrollbar-thumb {
|
|
||||||
background: rgba(82, 106, 255, 0.4);
|
|
||||||
}
|
|
||||||
.content {
|
|
||||||
display: flex;
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
min-width: 13rem;
|
|
||||||
height: 3.4rem;
|
|
||||||
.content-left {
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
min-width: 6.2rem;
|
|
||||||
:deep(.ant-image-img) {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
object-fit: contain;
|
|
||||||
}
|
|
||||||
// text-align: center;
|
|
||||||
.content-top {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.content-right {
|
|
||||||
width: 6.2rem;
|
|
||||||
height: 3.4rem;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.content-right-scene,
|
|
||||||
.content-right-case {
|
|
||||||
width: 6.2rem;
|
|
||||||
height: 3.4rem;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.content-left-scene,
|
|
||||||
.content-left-case {
|
|
||||||
height: 3.4rem;
|
|
||||||
width: 6.35rem;
|
|
||||||
border-radius: 0.1rem;
|
|
||||||
background: url('~@/assets/detailsAll/sf_tupianceshi.png') no-repeat;
|
|
||||||
background-position: center;
|
|
||||||
background-size: 6.35rem 3.4rem;
|
|
||||||
}
|
|
||||||
.content-top {
|
|
||||||
font-size: 0.22rem;
|
|
||||||
line-height: 0.22rem;
|
|
||||||
color: #000000;
|
|
||||||
margin-bottom: 0.35rem;
|
|
||||||
}
|
|
||||||
.content-bottom {
|
|
||||||
font-size: 0.18rem;
|
|
||||||
color: #999999;
|
|
||||||
line-height: 0.26rem;
|
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
-webkit-line-clamp: 6;
|
-webkit-line-clamp: 1;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-top-down {
|
||||||
|
min-width: 1.2rem;
|
||||||
|
color: #526aff;
|
||||||
|
margin-bottom: 0.16rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-bottom {
|
||||||
|
height: 0.04rem;
|
||||||
|
width: 0.6rem;
|
||||||
|
background: #526aff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tab-son-class {
|
||||||
|
margin-left: 4.3rem;
|
||||||
|
margin-bottom: 0.02rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-son-class-two {
|
||||||
|
margin-left: 2.3rem;
|
||||||
|
margin-bottom: 0.02rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-son:last-child {
|
||||||
|
margin-right: 0rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.application-scenarios-and-case-son:first-child {
|
|
||||||
padding-top: 1rem;
|
.tab::-webkit-scrollbar-thumb {
|
||||||
|
background: rgba(82, 106, 255, 0.4);
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
min-width: 13rem;
|
||||||
|
height: 3.4rem;
|
||||||
|
|
||||||
|
.content-left {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
min-width: 6.2rem;
|
||||||
|
|
||||||
|
:deep(.ant-image-img) {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
|
||||||
|
// text-align: center;
|
||||||
|
.content-top {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-right {
|
||||||
|
width: 6.2rem;
|
||||||
|
height: 3.4rem;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-right-scene,
|
||||||
|
.content-right-case {
|
||||||
|
width: 6.2rem;
|
||||||
|
height: 3.4rem;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-left-scene,
|
||||||
|
.content-left-case {
|
||||||
|
height: 3.4rem;
|
||||||
|
width: 6.35rem;
|
||||||
|
border-radius: 0.1rem;
|
||||||
|
background: url('~@/assets/detailsAll/sf_tupianceshi.png') no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: 6.35rem 3.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-top {
|
||||||
|
font-size: 0.22rem;
|
||||||
|
line-height: 0.22rem;
|
||||||
|
color: #000000;
|
||||||
|
margin-bottom: 0.35rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-bottom {
|
||||||
|
font-size: 0.18rem;
|
||||||
|
color: #999999;
|
||||||
|
line-height: 0.26rem;
|
||||||
|
display: -webkit-box;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-line-clamp: 6;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.application-scenarios-and-case-son:first-child {
|
||||||
|
padding-top: 1rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -8,12 +8,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="application-navigation" v-if="navList.length > 0">
|
<div class="application-navigation" v-if="navList.length > 0">
|
||||||
<template v-for="nav in navList" :key="nav.key">
|
<template v-for="nav in navList" :key="nav.key">
|
||||||
<div
|
<div class="nav" :class="{ select: nav.key == select }" v-if="nav.show" @click="selectNav(nav.key)">
|
||||||
class="nav"
|
|
||||||
:class="{ select: nav.key == select }"
|
|
||||||
v-if="nav.show"
|
|
||||||
@click="selectNav(nav.key)"
|
|
||||||
>
|
|
||||||
{{ nav.name }}
|
{{ nav.name }}
|
||||||
<span class="line"></span>
|
<span class="line"></span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -21,164 +16,187 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, defineProps, watch } from 'vue'
|
import { ref, defineProps, watch } from 'vue'
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
const navList = ref([
|
import { useRouter } from 'vue-router'
|
||||||
{
|
// 获取当前路由地址
|
||||||
name: '应用展示',
|
const router = useRouter()
|
||||||
key: 'application-presentation',
|
const keyId = router.currentRoute.value.query.id
|
||||||
},
|
const navList = ref([
|
||||||
{
|
{
|
||||||
name: '关联组件',
|
name: '应用展示',
|
||||||
key: 'application-associated-ability',
|
key: 'application-presentation',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '功能介绍',
|
name: '关联组件',
|
||||||
key: 'function-introduction',
|
key: 'application-associated-ability',
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// name: '关联组件',
|
name: '功能介绍',
|
||||||
// key: 'application-associated-components',
|
key: 'function-introduction',
|
||||||
// },
|
},
|
||||||
{
|
// {
|
||||||
name: '使用能力',
|
// name: '关联组件',
|
||||||
key: 'ability-to-use',
|
// key: 'application-associated-components',
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
name: '部署与安全',
|
name: '使用能力',
|
||||||
key: 'deployment-and-security',
|
key: 'ability-to-use',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '归属部门与服务商',
|
name: '部署与安全',
|
||||||
key: 'department-and-service-provider',
|
key: 'deployment-and-security',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '常见问题',
|
name: '归属部门与服务商',
|
||||||
key: 'common-problem',
|
key: 'department-and-service-provider',
|
||||||
},
|
},
|
||||||
])
|
{
|
||||||
const props = defineProps({
|
name: '常见问题',
|
||||||
selectNow: { type: String, default: '' },
|
key: 'common-problem',
|
||||||
dataList: { type: Object, default: null },
|
},
|
||||||
associatedComponents: { type: Array, default: null },
|
])
|
||||||
|
const props = defineProps({
|
||||||
|
selectNow: { type: String, default: '' },
|
||||||
|
dataList: { type: Object, default: null },
|
||||||
|
associatedComponents: { type: Array, default: null },
|
||||||
|
})
|
||||||
|
const select = ref('algorithm-display')
|
||||||
|
const list = ref([])
|
||||||
|
// 根据能力id查询是否存在关联应用
|
||||||
|
if (keyId) {
|
||||||
|
queryPartAppByKeyId2({ keyId: keyId }).then((res) => {
|
||||||
|
console.log('ressssssss', res)
|
||||||
|
if (res.data.data.length > 0) {
|
||||||
|
// 存在关联应用时在导航栏加入关联应用
|
||||||
|
navList.value.unshift({
|
||||||
|
name: '关联组件',
|
||||||
|
key: 'layer-service-associated-ability',
|
||||||
|
show: true,
|
||||||
|
})
|
||||||
|
list.value.unshift('关联组件')
|
||||||
|
}
|
||||||
})
|
})
|
||||||
const select = ref('algorithm-display')
|
}
|
||||||
const list = ref([])
|
const selectNav = (key) => {
|
||||||
const selectNav = (key) => {
|
select.value = key
|
||||||
select.value = key
|
mybus.emit('flyToView', select.value)
|
||||||
mybus.emit('flyToView', select.value)
|
}
|
||||||
}
|
if (props.dataList.infoList) {
|
||||||
if (props.dataList.infoList) {
|
list.value = []
|
||||||
list.value = []
|
props.dataList.infoList.map((item) => {
|
||||||
props.dataList.infoList.map((item) => {
|
if (
|
||||||
|
item.attrType === '算法优势' ||
|
||||||
|
item.attrType === '常见问题' ||
|
||||||
|
item.attrType === '使用能力' ||
|
||||||
|
item.attrType === '关联组件'
|
||||||
|
) {
|
||||||
|
list.value.push(item.attrType)
|
||||||
|
} else if (item.attrType === '应用展示视频') {
|
||||||
|
list.value.push('应用展示')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
list.value.push('关联组件')
|
||||||
|
navList.value.forEach((item) => {
|
||||||
|
console.log(item)
|
||||||
|
if (list.value.indexOf(item.name) > -1) {
|
||||||
if (
|
if (
|
||||||
item.attrType === '算法优势' ||
|
item.name == '关联组件' &&
|
||||||
item.attrType === '常见问题' ||
|
props.associatedComponents[0].length != 0
|
||||||
item.attrType === '使用能力' ||
|
|
||||||
item.attrType === '关联组件'
|
|
||||||
) {
|
) {
|
||||||
list.value.push(item.attrType)
|
item.show = true
|
||||||
} else if (item.attrType === '应用展示视频') {
|
} else {
|
||||||
list.value.push('应用展示')
|
item.show = true
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
list.value.push('关联组件')
|
})
|
||||||
navList.value.forEach((item) => {
|
select.value = navList.value.filter(
|
||||||
console.log(item)
|
(item) => item.name === list.value[0]
|
||||||
if (list.value.indexOf(item.name) > -1) {
|
)[0].key
|
||||||
if (
|
console.log('11111111111111111111111111', list.value, navList.value)
|
||||||
item.name == '关联组件' &&
|
}
|
||||||
props.associatedComponents[0].length != 0
|
watch(
|
||||||
) {
|
() => props.selectNow,
|
||||||
item.show = true
|
(newValue) => {
|
||||||
} else {
|
select.value = newValue
|
||||||
item.show = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
select.value = navList.value.filter(
|
|
||||||
(item) => item.name === list.value[0]
|
|
||||||
)[0].key
|
|
||||||
console.log('11111111111111111111111111', list.value, navList.value)
|
|
||||||
}
|
}
|
||||||
watch(
|
)
|
||||||
() => props.selectNow,
|
watch(
|
||||||
(newValue) => {
|
() => props.dataList,
|
||||||
select.value = newValue
|
(val) => {
|
||||||
}
|
if (val) {
|
||||||
)
|
list.value = []
|
||||||
watch(
|
val.infoList.map((item) => {
|
||||||
() => props.dataList,
|
if (
|
||||||
(val) => {
|
item.attrType === '功能介绍' ||
|
||||||
if (val) {
|
item.attrType === '常见问题' ||
|
||||||
list.value = []
|
item.attrType === '使用能力' ||
|
||||||
val.infoList.map((item) => {
|
item.attrType === '关联组件'
|
||||||
if (
|
) {
|
||||||
item.attrType === '功能介绍' ||
|
list.value.push(item.attrType)
|
||||||
item.attrType === '常见问题' ||
|
} else if (item.attrType === '应用展示视频') {
|
||||||
item.attrType === '使用能力' ||
|
list.value.push('应用展示')
|
||||||
item.attrType === '关联组件'
|
|
||||||
) {
|
|
||||||
list.value.push(item.attrType)
|
|
||||||
} else if (item.attrType === '应用展示视频') {
|
|
||||||
list.value.push('应用展示')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
list.value.push('关联组件')
|
|
||||||
list.value.push('部署与安全')
|
|
||||||
list.value.push('归属部门与服务商')
|
|
||||||
navList.value.forEach((item) => {
|
|
||||||
console.log(item)
|
|
||||||
if (list.value.indexOf(item.name) > -1) {
|
|
||||||
if (
|
|
||||||
item.name == '关联组件' &&
|
|
||||||
props.associatedComponents[0].length != 0
|
|
||||||
) {
|
|
||||||
item.show = true
|
|
||||||
} else {
|
|
||||||
item.show = true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
if (list.value.length > 0) {
|
|
||||||
select.value = navList.value.filter(
|
|
||||||
(item) => item.name === list.value[0]
|
|
||||||
)[0].key
|
|
||||||
}
|
}
|
||||||
console.log('11111111111111111111111111', list.value, navList.value)
|
})
|
||||||
|
list.value.push('关联组件')
|
||||||
|
list.value.push('部署与安全')
|
||||||
|
list.value.push('归属部门与服务商')
|
||||||
|
navList.value.forEach((item) => {
|
||||||
|
console.log(item)
|
||||||
|
if (list.value.indexOf(item.name) > -1) {
|
||||||
|
if (
|
||||||
|
item.name == '关联组件' &&
|
||||||
|
props.associatedComponents[0].length != 0
|
||||||
|
) {
|
||||||
|
item.show = true
|
||||||
|
} else {
|
||||||
|
item.show = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
if (list.value.length > 0) {
|
||||||
|
select.value = navList.value.filter(
|
||||||
|
(item) => item.name === list.value[0]
|
||||||
|
)[0].key
|
||||||
}
|
}
|
||||||
|
console.log('11111111111111111111111111', list.value, navList.value)
|
||||||
}
|
}
|
||||||
)
|
}
|
||||||
|
)
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.application-navigation {
|
.application-navigation {
|
||||||
width: 19.12rem;
|
width: 19.12rem;
|
||||||
height: 0.84rem;
|
height: 0.84rem;
|
||||||
line-height: 0.8rem;
|
line-height: 0.8rem;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
font-size: 0.24rem;
|
||||||
|
color: #666;
|
||||||
|
background: #fff;
|
||||||
|
padding: 0 3rem;
|
||||||
|
box-shadow: 0rem 0.05rem 0.1rem #f2f3fb;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-around;
|
flex-direction: column;
|
||||||
font-size: 0.24rem;
|
justify-content: space-between;
|
||||||
color: #666;
|
align-items: center;
|
||||||
background: #fff;
|
|
||||||
padding: 0 3rem;
|
.line {
|
||||||
box-shadow: 0rem 0.05rem 0.1rem #f2f3fb;
|
width: 0.4rem;
|
||||||
position: relative;
|
height: 0.04rem;
|
||||||
.nav {
|
|
||||||
cursor: pointer;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
.line {
|
|
||||||
width: 0.4rem;
|
|
||||||
height: 0.04rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.select {
|
|
||||||
color: #526aff;
|
|
||||||
.line {
|
|
||||||
background: #526aff;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.select {
|
||||||
|
color: #526aff;
|
||||||
|
|
||||||
|
.line {
|
||||||
|
background: #526aff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,17 +2,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="application-deployment-and-security">
|
<div class="application-deployment-and-security">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<DetalsTitle
|
<DetalsTitle :title="dataFrom.title" :type="dataFrom.englishTitle"></DetalsTitle>
|
||||||
:title="dataFrom.title"
|
|
||||||
:type="dataFrom.englishTitle"
|
|
||||||
></DetalsTitle>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div
|
<div v-for="(item, index) in dataFrom.content" :key="index" class="content-card">
|
||||||
v-for="(item, index) in dataFrom.content"
|
|
||||||
:key="index"
|
|
||||||
class="content-card"
|
|
||||||
>
|
|
||||||
<div class="card-title">{{ item.childrenTitle }}</div>
|
<div class="card-title">{{ item.childrenTitle }}</div>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<div v-for="carditem in item.childrenContent" :key="carditem">
|
<div v-for="carditem in item.childrenContent" :key="carditem">
|
||||||
|
@ -31,191 +24,197 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
||||||
import { ref, defineProps, watch } from 'vue'
|
import { ref, defineProps, watch } from 'vue'
|
||||||
let dataFrom = ref({
|
let dataFrom = ref({
|
||||||
title: '归属部门与服务商',
|
title: '归属部门与服务商',
|
||||||
englishTitle: 'DEPARTMENT&ERVICE',
|
englishTitle: 'DEPARTMENT&ERVICE',
|
||||||
content: [
|
content: [
|
||||||
{
|
{
|
||||||
childrenTitle: '归属部门信息',
|
childrenTitle: '归属部门信息',
|
||||||
childrenContent: [],
|
childrenContent: [],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
childrenTitle: '服务商信息',
|
childrenTitle: '服务商信息',
|
||||||
childrenContent: [],
|
childrenContent: [],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
console.log(dataFrom.value)
|
console.log(dataFrom.value)
|
||||||
//数据初始化
|
//数据初始化
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
})
|
})
|
||||||
if (props.dataList.infoList) {
|
if (props.dataList.infoList) {
|
||||||
let obj = {
|
let obj = {
|
||||||
attrType: '部门名称',
|
attrType: '部门名称',
|
||||||
attrValue: props.dataList.deptName || '------',
|
attrValue: props.dataList.deptName || '------',
|
||||||
}
|
}
|
||||||
dataFrom.value.content[0].childrenContent[0] = obj
|
dataFrom.value.content[0].childrenContent[0] = obj
|
||||||
let deptContacts = {
|
let deptContacts = {
|
||||||
attrType: '部门联系人',
|
attrType: '部门联系人',
|
||||||
attrValue: props.dataList.deptContacts || '------',
|
attrValue: props.dataList.deptContacts || '------',
|
||||||
}
|
}
|
||||||
dataFrom.value.content[0].childrenContent[1] = deptContacts
|
dataFrom.value.content[0].childrenContent[1] = deptContacts
|
||||||
let deptPhone = {
|
let deptPhone = {
|
||||||
attrType: '部门联系人',
|
attrType: '部门联系电话',
|
||||||
attrValue: props.dataList.deptPhone || '------',
|
attrValue: props.dataList.deptPhone || '------',
|
||||||
}
|
}
|
||||||
dataFrom.value.content[0].childrenContent[2] = deptPhone
|
dataFrom.value.content[0].childrenContent[2] = deptPhone
|
||||||
props.dataList.infoList.map((item) => {
|
props.dataList.infoList.map((item) => {
|
||||||
|
if (
|
||||||
|
item.attrType === '服务商' ||
|
||||||
|
item.attrType === '服务商联系人' ||
|
||||||
|
item.attrType === '服务商联系电话' ||
|
||||||
|
item.attrType.indexOf('服务商名') != -1
|
||||||
|
) {
|
||||||
if (
|
if (
|
||||||
item.attrType === '服务商' ||
|
item.attrType === '服务商' ||
|
||||||
item.attrType === '服务商联系人' ||
|
|
||||||
item.attrType === '服务商联系电话' ||
|
|
||||||
item.attrType.indexOf('服务商名') != -1
|
item.attrType.indexOf('服务商名') != -1
|
||||||
) {
|
) {
|
||||||
if (
|
dataFrom.value.content[1].childrenContent[0] = item
|
||||||
item.attrType === '服务商' ||
|
if (dataFrom.value.content[1].childrenContent[0].attrValue == '') {
|
||||||
item.attrType.indexOf('服务商名') != -1
|
dataFrom.value.content[1].childrenContent[0].attrValue = '------'
|
||||||
) {
|
|
||||||
dataFrom.value.content[1].childrenContent[0] = item
|
|
||||||
if (dataFrom.value.content[1].childrenContent[0].attrValue == '') {
|
|
||||||
dataFrom.value.content[1].childrenContent[0].attrValue = '------'
|
|
||||||
}
|
|
||||||
} else if (item.attrType === '服务商联系人') {
|
|
||||||
dataFrom.value.content[1].childrenContent[1] = item
|
|
||||||
if (dataFrom.value.content[1].childrenContent[1].attrValue == '') {
|
|
||||||
dataFrom.value.content[1].childrenContent[1].attrValue = '------'
|
|
||||||
}
|
|
||||||
} else if (item.attrType === '服务商联系电话') {
|
|
||||||
dataFrom.value.content[1].childrenContent[2] = item
|
|
||||||
if (dataFrom.value.content[1].childrenContent[2].attrValue == '') {
|
|
||||||
dataFrom.value.content[1].childrenContent[2].attrValue = '------'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
} else if (item.attrType === '服务商联系人') {
|
||||||
})
|
dataFrom.value.content[1].childrenContent[1] = item
|
||||||
console.log('obj', dataFrom.value)
|
if (dataFrom.value.content[1].childrenContent[1].attrValue == '') {
|
||||||
}
|
dataFrom.value.content[1].childrenContent[1].attrValue = '------'
|
||||||
watch(
|
|
||||||
() => props.dataList,
|
|
||||||
(val) => {
|
|
||||||
if (val) {
|
|
||||||
// dataFrom.value.content[0].childrenContent = []
|
|
||||||
// dataFrom.value.content[1].childrenContent = []
|
|
||||||
let obj = {
|
|
||||||
attrType: '部门名称',
|
|
||||||
attrValue: props.dataList.deptName || '------',
|
|
||||||
}
|
}
|
||||||
dataFrom.value.content[0].childrenContent[0] = obj
|
} else if (item.attrType === '服务商联系电话') {
|
||||||
let deptContacts = {
|
dataFrom.value.content[1].childrenContent[2] = item
|
||||||
attrType: '部门联系人',
|
if (dataFrom.value.content[1].childrenContent[2].attrValue == '') {
|
||||||
attrValue: props.dataList.deptContacts || '------',
|
dataFrom.value.content[1].childrenContent[2].attrValue = '------'
|
||||||
}
|
}
|
||||||
dataFrom.value.content[0].childrenContent[1] = deptContacts
|
|
||||||
let deptPhone = {
|
|
||||||
attrType: '部门联系人',
|
|
||||||
attrValue: props.dataList.deptPhone || '------',
|
|
||||||
}
|
|
||||||
dataFrom.value.content[0].childrenContent[2] = deptPhone
|
|
||||||
props.dataList.infoList.map((item) => {
|
|
||||||
if (
|
|
||||||
item.attrType === '服务商' ||
|
|
||||||
item.attrType === '服务商联系人' ||
|
|
||||||
item.attrType === '服务商联系电话' ||
|
|
||||||
item.attrType.indexOf('服务商名') != -1
|
|
||||||
) {
|
|
||||||
if (
|
|
||||||
item.attrType === '服务商' ||
|
|
||||||
item.attrType.indexOf('服务商名') != -1
|
|
||||||
) {
|
|
||||||
dataFrom.value.content[1].childrenContent.push(item)
|
|
||||||
if (
|
|
||||||
dataFrom.value.content[1].childrenContent[0].attrValue == ''
|
|
||||||
) {
|
|
||||||
dataFrom.value.content[1].childrenContent[0].attrValue =
|
|
||||||
'------'
|
|
||||||
}
|
|
||||||
} else if (item.attrType === '服务商联系人') {
|
|
||||||
dataFrom.value.content[1].childrenContent[1] = item
|
|
||||||
if (
|
|
||||||
dataFrom.value.content[1].childrenContent[1].attrValue == ''
|
|
||||||
) {
|
|
||||||
dataFrom.value.content[1].childrenContent[1].attrValue =
|
|
||||||
'------'
|
|
||||||
}
|
|
||||||
} else if (item.attrType === '服务商联系电话') {
|
|
||||||
dataFrom.value.content[1].childrenContent[2] = item
|
|
||||||
if (
|
|
||||||
dataFrom.value.content[1].childrenContent[2].attrValue == ''
|
|
||||||
) {
|
|
||||||
dataFrom.value.content[1].childrenContent[2].attrValue =
|
|
||||||
'------'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
console.log('obj', dataFrom.value)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
})
|
||||||
|
console.log('obj', dataFrom.value)
|
||||||
|
}
|
||||||
|
watch(
|
||||||
|
() => props.dataList,
|
||||||
|
(val) => {
|
||||||
|
if (val) {
|
||||||
|
// dataFrom.value.content[0].childrenContent = []
|
||||||
|
// dataFrom.value.content[1].childrenContent = []
|
||||||
|
let obj = {
|
||||||
|
attrType: '部门名称',
|
||||||
|
attrValue: props.dataList.deptName || '------',
|
||||||
|
}
|
||||||
|
dataFrom.value.content[0].childrenContent[0] = obj
|
||||||
|
let deptContacts = {
|
||||||
|
attrType: '部门联系人',
|
||||||
|
attrValue: props.dataList.deptContacts || '------',
|
||||||
|
}
|
||||||
|
dataFrom.value.content[0].childrenContent[1] = deptContacts
|
||||||
|
let deptPhone = {
|
||||||
|
attrType: '部门联系电话',
|
||||||
|
attrValue: props.dataList.deptPhone || '------',
|
||||||
|
}
|
||||||
|
dataFrom.value.content[0].childrenContent[2] = deptPhone
|
||||||
|
props.dataList.infoList.map((item) => {
|
||||||
|
if (
|
||||||
|
item.attrType === '服务商' ||
|
||||||
|
item.attrType === '服务商联系人' ||
|
||||||
|
item.attrType === '服务商联系电话' ||
|
||||||
|
item.attrType.indexOf('服务商名') != -1
|
||||||
|
) {
|
||||||
|
if (
|
||||||
|
item.attrType === '服务商' ||
|
||||||
|
item.attrType.indexOf('服务商名') != -1
|
||||||
|
) {
|
||||||
|
dataFrom.value.content[1].childrenContent.push(item)
|
||||||
|
if (
|
||||||
|
dataFrom.value.content[1].childrenContent[0].attrValue == ''
|
||||||
|
) {
|
||||||
|
dataFrom.value.content[1].childrenContent[0].attrValue =
|
||||||
|
'------'
|
||||||
|
}
|
||||||
|
} else if (item.attrType === '服务商联系人') {
|
||||||
|
dataFrom.value.content[1].childrenContent[1] = item
|
||||||
|
if (
|
||||||
|
dataFrom.value.content[1].childrenContent[1].attrValue == ''
|
||||||
|
) {
|
||||||
|
dataFrom.value.content[1].childrenContent[1].attrValue =
|
||||||
|
'------'
|
||||||
|
}
|
||||||
|
} else if (item.attrType === '服务商联系电话') {
|
||||||
|
dataFrom.value.content[1].childrenContent[2] = item
|
||||||
|
if (
|
||||||
|
dataFrom.value.content[1].childrenContent[2].attrValue == ''
|
||||||
|
) {
|
||||||
|
dataFrom.value.content[1].childrenContent[2].attrValue =
|
||||||
|
'------'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
console.log('obj', dataFrom.value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.application-deployment-and-security {
|
.application-deployment-and-security {
|
||||||
padding: 0.8rem 0;
|
padding: 0.8rem 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin-bottom: 0.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
width: 13rem;
|
||||||
align-items: center;
|
justify-content: space-between;
|
||||||
.title {
|
|
||||||
margin-bottom: 0.3rem;
|
.content-card {
|
||||||
}
|
height: 1.5rem;
|
||||||
.content {
|
width: 6.2rem;
|
||||||
display: flex;
|
border-radius: 0.2rem;
|
||||||
width: 13rem;
|
background: linear-gradient(to right,
|
||||||
justify-content: space-between;
|
|
||||||
.content-card {
|
|
||||||
height: 1.5rem;
|
|
||||||
width: 6.2rem;
|
|
||||||
border-radius: 0.2rem;
|
|
||||||
background: linear-gradient(
|
|
||||||
to right,
|
|
||||||
rgba(113, 132, 252, 0.4),
|
rgba(113, 132, 252, 0.4),
|
||||||
rgba(148, 163, 252, 0.4)
|
rgba(148, 163, 252, 0.4));
|
||||||
);
|
padding: 0 0.3rem;
|
||||||
padding: 0 0.3rem;
|
display: flex;
|
||||||
display: flex;
|
flex-direction: column;
|
||||||
flex-direction: column;
|
justify-content: center;
|
||||||
justify-content: center;
|
|
||||||
.card-title {
|
.card-title {
|
||||||
font-size: 0.26rem;
|
font-size: 0.26rem;
|
||||||
color: #212956;
|
color: #212956;
|
||||||
margin-bottom: 0.2rem;
|
margin-bottom: 0.2rem;
|
||||||
line-height: 0.26rem;
|
line-height: 0.26rem;
|
||||||
}
|
}
|
||||||
.card-content {
|
|
||||||
white-space: nowrap;
|
.card-content {
|
||||||
|
white-space: nowrap;
|
||||||
|
|
||||||
|
div {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 0.2rem;
|
||||||
|
color: rgba(33, 41, 86, 0.8);
|
||||||
|
font-size: 0.2rem;
|
||||||
|
max-width: 2.8rem;
|
||||||
|
|
||||||
div {
|
div {
|
||||||
display: inline-block;
|
|
||||||
margin-right: 0.2rem;
|
|
||||||
color: rgba(33, 41, 86, 0.8);
|
|
||||||
font-size: 0.2rem;
|
|
||||||
max-width: 2.8rem;
|
max-width: 2.8rem;
|
||||||
div {
|
overflow: hidden;
|
||||||
max-width: 2.8rem;
|
text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
display: -webkit-box;
|
||||||
text-overflow: ellipsis;
|
-webkit-box-orient: vertical;
|
||||||
display: -webkit-box;
|
-webkit-line-clamp: 1;
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
-webkit-line-clamp: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
div:first-child {
|
|
||||||
display: block;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div:first-child {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -8,12 +8,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="business-navigation" v-if="navList.length > 0">
|
<div class="business-navigation" v-if="navList.length > 0">
|
||||||
<template v-for="nav in navList" :key="nav.key">
|
<template v-for="nav in navList" :key="nav.key">
|
||||||
<div
|
<div class="nav" :class="{ select: nav.key == select }" v-if="nav.show" @click="selectNav(nav.key)">
|
||||||
class="nav"
|
|
||||||
:class="{ select: nav.key == select }"
|
|
||||||
v-if="nav.show"
|
|
||||||
@click="selectNav(nav.key)"
|
|
||||||
>
|
|
||||||
{{ nav.name }}
|
{{ nav.name }}
|
||||||
<span class="line"></span>
|
<span class="line"></span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -21,209 +16,217 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, defineProps, watch, getCurrentInstance } from 'vue'
|
import { ref, defineProps, watch, getCurrentInstance } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
import { queryPartAppByKeyId2 } from '@/api/home'
|
import { queryPartAppByKeyId2 } from '@/api/home'
|
||||||
// 获取当前路由地址
|
// 获取当前路由地址
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const keyId = router.currentRoute.value.query.id
|
const keyId = router.currentRoute.value.query.id
|
||||||
const navList = ref([
|
const navList = ref([
|
||||||
{
|
{
|
||||||
name: '组件展示',
|
name: '组件展示',
|
||||||
key: 'business-presentation',
|
key: 'business-presentation',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '功能介绍',
|
name: '功能介绍',
|
||||||
key: 'function-introduction',
|
key: 'function-introduction',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
name: '应用场景',
|
name: '应用场景',
|
||||||
key: 'application-scenarios',
|
key: 'application-scenarios',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '应用案例',
|
name: '应用案例',
|
||||||
key: 'application-case',
|
key: 'application-case',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '使用方式',
|
name: '使用方式',
|
||||||
key: 'business-usage-mode',
|
key: 'business-usage-mode',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: '常见问题',
|
name: '常见问题',
|
||||||
key: 'common-problem',
|
key: 'common-problem',
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
associatedComponents: { type: Array, default: null },
|
associatedComponents: { type: Array, default: null },
|
||||||
selectNow: { type: String, default: '' },
|
selectNow: { type: String, default: '' },
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
|
})
|
||||||
|
const select = ref('business-associated-ability')
|
||||||
|
const list = ref([])
|
||||||
|
// 根据能力id查询是否存在关联应用
|
||||||
|
if (keyId) {
|
||||||
|
queryPartAppByKeyId2({ keyId: keyId }).then((res) => {
|
||||||
|
console.log('ressssssss', res)
|
||||||
|
if (res.data.data.length > 0) {
|
||||||
|
// 存在关联应用时在导航栏加入关联应用
|
||||||
|
navList.value.unshift({
|
||||||
|
name: '关联应用',
|
||||||
|
key: 'business-associated-ability',
|
||||||
|
show: true,
|
||||||
|
})
|
||||||
|
// list.value.push('关联应用')
|
||||||
|
console.log('navList', navList)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
const select = ref('business-associated-ability')
|
}
|
||||||
const list = ref([])
|
const selectNav = (key) => {
|
||||||
// 根据能力id查询是否存在关联应用
|
select.value = key
|
||||||
if (keyId) {
|
console.log(key, select.value)
|
||||||
queryPartAppByKeyId2({ keyId: keyId }).then((res) => {
|
mybus.emit('flyToView', select.value)
|
||||||
console.log('ressssssss', res)
|
}
|
||||||
if (res.data.data.length > 0) {
|
if (props.dataList.infoList) {
|
||||||
// 存在关联应用时在导航栏加入关联应用
|
list.value = []
|
||||||
navList.value.unshift({
|
let arr = [
|
||||||
name: '关联应用',
|
'关联应用',
|
||||||
key: 'business-associated-ability',
|
'组件视频介绍',
|
||||||
show: true,
|
'功能介绍',
|
||||||
})
|
'应用场景',
|
||||||
// list.value.push('关联应用')
|
'应用案例',
|
||||||
console.log('navList', navList)
|
'使用方式',
|
||||||
}
|
'常见问题',
|
||||||
})
|
]
|
||||||
}
|
// 排序
|
||||||
const selectNav = (key) => {
|
// eslint-disable-next-line vue/no-mutating-props
|
||||||
select.value = key
|
props.dataList.infoList.sort((a, b) => {
|
||||||
console.log(key, select.value)
|
return arr.indexOf(a.attrType) - arr.indexOf(b.attrType)
|
||||||
mybus.emit('flyToView', select.value)
|
})
|
||||||
}
|
props.dataList.infoList.map((item) => {
|
||||||
if (props.dataList.infoList) {
|
if (
|
||||||
list.value = []
|
item.attrType === '常见问题' ||
|
||||||
let arr = [
|
item.attrType === '功能介绍' ||
|
||||||
'关联应用',
|
item.attrType === '应用场景' ||
|
||||||
'组件视频介绍',
|
item.attrType === '应用案例'
|
||||||
'功能介绍',
|
) {
|
||||||
'应用场景',
|
list.value.push(item.attrType)
|
||||||
'应用案例',
|
} else if (item.attrType === '组件视频介绍') {
|
||||||
'使用方式',
|
list.value.push('组件展示')
|
||||||
'常见问题',
|
}
|
||||||
]
|
})
|
||||||
// 排序
|
list.value.unshift('关联应用')
|
||||||
// eslint-disable-next-line vue/no-mutating-props
|
list.value.push('使用方式')
|
||||||
props.dataList.infoList.sort((a, b) => {
|
navList.value.forEach((item) => {
|
||||||
return arr.indexOf(a.attrType) - arr.indexOf(b.attrType)
|
console.log(item)
|
||||||
})
|
if (list.value.indexOf(item.name) > -1) {
|
||||||
props.dataList.infoList.map((item) => {
|
if (item.name == '关联应用') {
|
||||||
if (
|
if (props.associatedComponents[0].dataList.length != 0) {
|
||||||
item.attrType === '常见问题' ||
|
|
||||||
item.attrType === '功能介绍' ||
|
|
||||||
item.attrType === '应用场景' ||
|
|
||||||
item.attrType === '应用案例'
|
|
||||||
) {
|
|
||||||
list.value.push(item.attrType)
|
|
||||||
} else if (item.attrType === '组件视频介绍') {
|
|
||||||
list.value.push('组件展示')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
list.value.unshift('关联应用')
|
|
||||||
list.value.push('使用方式')
|
|
||||||
navList.value.forEach((item) => {
|
|
||||||
console.log(item)
|
|
||||||
if (list.value.indexOf(item.name) > -1) {
|
|
||||||
if (item.name == '关联应用') {
|
|
||||||
if (props.associatedComponents[0].dataList.length != 0) {
|
|
||||||
item.show = true
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
item.show = true
|
item.show = true
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
item.show = true
|
||||||
}
|
}
|
||||||
})
|
|
||||||
select.value = navList.value.filter(
|
|
||||||
(item) => item.name === list.value[0]
|
|
||||||
)[0].key
|
|
||||||
console.log('11111111111111111111111111', list.value, navList.value)
|
|
||||||
}
|
|
||||||
watch(
|
|
||||||
() => props.selectNow,
|
|
||||||
(newValue) => {
|
|
||||||
select.value = newValue
|
|
||||||
}
|
}
|
||||||
)
|
})
|
||||||
watch(
|
if (list.value.length > 0) {
|
||||||
() => props.dataList,
|
if (navList.value.filter((item) => item.name === list.value[0])[0]) {
|
||||||
(val) => {
|
select.value = navList.value.filter(
|
||||||
if (val) {
|
(item) => (item.name === '关联应用') | (item.name === list.value[0])
|
||||||
list.value = []
|
)[0].key
|
||||||
let arr = [
|
}
|
||||||
'关联应用',
|
}
|
||||||
'组件视频介绍',
|
console.log('11111111111111111111111111', list.value, navList.value)
|
||||||
'功能介绍',
|
}
|
||||||
'应用场景',
|
watch(
|
||||||
'应用案例',
|
() => props.selectNow,
|
||||||
'使用方式',
|
(newValue) => {
|
||||||
'常见问题',
|
select.value = newValue
|
||||||
]
|
}
|
||||||
// 排序
|
)
|
||||||
// eslint-disable-next-line vue/no-mutating-props
|
watch(
|
||||||
props.dataList.infoList.sort((a, b) => {
|
() => props.dataList,
|
||||||
// console.log('排序==============>', a, b)
|
(val) => {
|
||||||
return arr.indexOf(a.attrType) - arr.indexOf(b.attrType)
|
if (val) {
|
||||||
})
|
list.value = []
|
||||||
val.infoList.map((item) => {
|
let arr = [
|
||||||
if (
|
'关联应用',
|
||||||
item.attrType === '常见问题' ||
|
'组件视频介绍',
|
||||||
item.attrType === '功能介绍' ||
|
'功能介绍',
|
||||||
item.attrType === '应用场景' ||
|
'应用场景',
|
||||||
item.attrType === '应用案例'
|
'应用案例',
|
||||||
) {
|
'使用方式',
|
||||||
list.value.push(item.attrType)
|
'常见问题',
|
||||||
} else if (item.attrType === '组件视频介绍') {
|
]
|
||||||
list.value.push('组件展示')
|
// 排序
|
||||||
}
|
// eslint-disable-next-line vue/no-mutating-props
|
||||||
})
|
props.dataList.infoList.sort((a, b) => {
|
||||||
list.value.unshift('关联应用')
|
// console.log('排序==============>', a, b)
|
||||||
list.value.push('使用方式')
|
return arr.indexOf(a.attrType) - arr.indexOf(b.attrType)
|
||||||
navList.value.forEach((item) => {
|
})
|
||||||
console.log(item)
|
val.infoList.map((item) => {
|
||||||
if (list.value.indexOf(item.name) > -1) {
|
if (
|
||||||
if (item.name == '关联应用') {
|
item.attrType === '常见问题' ||
|
||||||
if (props.associatedComponents[0].dataList.length != 0) {
|
item.attrType === '功能介绍' ||
|
||||||
item.show = true
|
item.attrType === '应用场景' ||
|
||||||
}
|
item.attrType === '应用案例'
|
||||||
} else {
|
) {
|
||||||
|
list.value.push(item.attrType)
|
||||||
|
} else if (item.attrType === '组件视频介绍') {
|
||||||
|
list.value.push('组件展示')
|
||||||
|
}
|
||||||
|
})
|
||||||
|
list.value.unshift('关联应用')
|
||||||
|
list.value.push('使用方式')
|
||||||
|
navList.value.forEach((item) => {
|
||||||
|
console.log(item)
|
||||||
|
if (list.value.indexOf(item.name) > -1) {
|
||||||
|
if (item.name == '关联应用') {
|
||||||
|
if (props.associatedComponents[0].dataList.length != 0) {
|
||||||
item.show = true
|
item.show = true
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
})
|
item.show = true
|
||||||
if (list.value.length > 0) {
|
|
||||||
if (navList.value.filter((item) => item.name === list.value[0])[0]) {
|
|
||||||
select.value = navList.value.filter(
|
|
||||||
(item) =>
|
|
||||||
(item.name === '关联应用') | (item.name === list.value[0])
|
|
||||||
)[0].key
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log('11111111111111111111111111', list.value, navList.value)
|
})
|
||||||
}
|
if (list.value.length > 0) {
|
||||||
}
|
if (navList.value.filter((item) => item.name === list.value[0])[0]) {
|
||||||
)
|
select.value = navList.value.filter(
|
||||||
</script>
|
(item) =>
|
||||||
<style lang="less" scoped>
|
(item.name === '关联应用') | (item.name === list.value[0])
|
||||||
.business-navigation {
|
)[0].key
|
||||||
width: 19.12rem;
|
}
|
||||||
height: 0.84rem;
|
|
||||||
line-height: 0.8rem;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-around;
|
|
||||||
font-size: 0.24rem;
|
|
||||||
color: #666;
|
|
||||||
background: #fff;
|
|
||||||
padding: 0 3rem;
|
|
||||||
box-shadow: 0rem 0.05rem 0.1rem #f2f3fb;
|
|
||||||
position: relative;
|
|
||||||
.nav {
|
|
||||||
cursor: pointer;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
.line {
|
|
||||||
width: 0.4rem;
|
|
||||||
height: 0.04rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.select {
|
|
||||||
color: #526aff;
|
|
||||||
.line {
|
|
||||||
background: #526aff;
|
|
||||||
}
|
}
|
||||||
|
console.log('11111111111111111111111111', list.value, navList.value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
)
|
||||||
|
</script>
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.business-navigation {
|
||||||
|
width: 19.12rem;
|
||||||
|
height: 0.84rem;
|
||||||
|
line-height: 0.8rem;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-around;
|
||||||
|
font-size: 0.24rem;
|
||||||
|
color: #666;
|
||||||
|
background: #fff;
|
||||||
|
padding: 0 3rem;
|
||||||
|
box-shadow: 0rem 0.05rem 0.1rem #f2f3fb;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.line {
|
||||||
|
width: 0.4rem;
|
||||||
|
height: 0.04rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.select {
|
||||||
|
color: #526aff;
|
||||||
|
|
||||||
|
.line {
|
||||||
|
background: #526aff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -29,8 +29,8 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<a-tooltip placement="top">
|
<a-tooltip placement="top">
|
||||||
<template #title>应用领域:{{ applicationArea }}</template>
|
<template #title>应用领域:{{ businessArea }}</template>
|
||||||
<div>应用领域:{{ applicationArea }}</div>
|
<div>应用领域:{{ businessArea }}</div>
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
<a-tooltip placement="top">
|
<a-tooltip placement="top">
|
||||||
<template #title>{{ props.dataList.description }}</template>
|
<template #title>{{ props.dataList.description }}</template>
|
||||||
|
@ -41,11 +41,15 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom" v-if="props.dataList.id">
|
<div class="bottom" v-if="props.dataList.id">
|
||||||
<a-button type="primary" @click="toView()">
|
<a-button type="primary" @click="toView()">
|
||||||
<template #icon><form-outlined /></template>
|
<template #icon>
|
||||||
|
<form-outlined />
|
||||||
|
</template>
|
||||||
申请使用
|
申请使用
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button type="primary" @click="addShoppingCart()">
|
<a-button type="primary" @click="addShoppingCart()">
|
||||||
<template #icon><shopping-cart-outlined /></template>
|
<template #icon>
|
||||||
|
<shopping-cart-outlined />
|
||||||
|
</template>
|
||||||
加入申购车
|
加入申购车
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button type="primary" @click="goTOCollection()">收藏</a-button>
|
<a-button type="primary" @click="goTOCollection()">收藏</a-button>
|
||||||
|
@ -55,200 +59,215 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ShoppingCartOutlined } from '@ant-design/icons-vue'
|
import { ShoppingCartOutlined } from '@ant-design/icons-vue'
|
||||||
import { defineProps, ref, watch } from 'vue'
|
import { defineProps, ref, watch } from 'vue'
|
||||||
import { scInsert } from '@/api/personalCenter'
|
import { scInsert } from '@/api/personalCenter'
|
||||||
import { sgcInsert } from '@/api/home'
|
import { sgcInsert } from '@/api/home'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
import { message } from 'ant-design-vue'
|
import { message } from 'ant-design-vue'
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
|
})
|
||||||
|
const router = useRouter()
|
||||||
|
const businessArea = ref('')
|
||||||
|
// // 加入申购车
|
||||||
|
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')
|
||||||
})
|
})
|
||||||
const router = useRouter()
|
}
|
||||||
const businessArea = ref('')
|
// // 立即申请
|
||||||
// // 加入申购车
|
function toView() {
|
||||||
const addShoppingCart = () => {
|
// window.open(newpage.href, '_blank')
|
||||||
console.log('加入申购车==================>', props.dataList)
|
console.log('一键申请===================>', props.dataList)
|
||||||
sgcInsert({
|
localStorage.setItem(
|
||||||
delFlag: '0',
|
'applyList',
|
||||||
resourceId: props.dataList.id,
|
JSON.stringify([
|
||||||
// userId: userId.value,
|
{
|
||||||
}).then((res) => {
|
arr: [
|
||||||
console.log(res)
|
{
|
||||||
message.success('添加申购车成功!')
|
delFlag: props.dataList.delFlag,
|
||||||
mybus.emit('getSgcNum')
|
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 goTOCollection = () => {
|
||||||
|
console.log('收藏===================》', props.dataList)
|
||||||
|
scInsert([{ resourceId: props.dataList.id }]).then((res) => {
|
||||||
|
console.log(res)
|
||||||
|
message.success('收藏成功')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
const componentType = ref('')
|
||||||
|
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 (obj) {
|
||||||
|
componentType.value = obj.attrValue
|
||||||
}
|
}
|
||||||
// // 立即申请
|
}
|
||||||
function toView() {
|
watch(
|
||||||
// window.open(newpage.href, '_blank')
|
() => props.dataList,
|
||||||
console.log('一键申请===================>', props.dataList)
|
(val) => {
|
||||||
localStorage.setItem(
|
if (val) {
|
||||||
'applyList',
|
businessArea.value = props.dataList.infoList.filter(
|
||||||
JSON.stringify([
|
(val) => val.attrType === '应用领域'
|
||||||
{
|
)[0].attrValue
|
||||||
arr: [
|
let obj = props.dataList.infoList.filter(
|
||||||
{
|
(val) => val.attrType === '组件类型'
|
||||||
delFlag: props.dataList.delFlag,
|
)[0]
|
||||||
description: props.dataList.description,
|
if (obj) {
|
||||||
resourceId: props.dataList.id,
|
componentType.value = obj.attrValue
|
||||||
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 goTOCollection = () => {
|
|
||||||
console.log('收藏===================》', props.dataList)
|
|
||||||
scInsert([{ resourceId: props.dataList.id }]).then((res) => {
|
|
||||||
console.log(res)
|
|
||||||
message.success('收藏成功')
|
|
||||||
})
|
|
||||||
}
|
|
||||||
const componentType = ref('')
|
|
||||||
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 (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 (obj) {
|
|
||||||
componentType.value = obj.attrValue
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
}
|
||||||
|
)
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.algorithm-top-details {
|
.algorithm-top-details {
|
||||||
height: 6rem;
|
height: 6rem;
|
||||||
padding: 1.8rem 0 0;
|
padding: 1.8rem 0 0;
|
||||||
background: url('~@/assets/detailsAll/sf_top_bg.png') no-repeat;
|
background: url('~@/assets/detailsAll/sf_top_bg.png') no-repeat;
|
||||||
background-size: 100%;
|
background-size: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
.left {
|
|
||||||
max-width: 7.2rem;
|
|
||||||
color: #fff;
|
|
||||||
margin-right: 0.8rem;
|
|
||||||
|
|
||||||
.top {
|
.left {
|
||||||
display: flex;
|
max-width: 7.2rem;
|
||||||
align-items: center;
|
color: #fff;
|
||||||
span {
|
margin-right: 0.8rem;
|
||||||
font-size: 0.14rem;
|
|
||||||
}
|
.top {
|
||||||
.name {
|
display: flex;
|
||||||
// max-width: 3.3rem;
|
align-items: center;
|
||||||
// overflow: hidden;
|
|
||||||
// text-overflow: ellipsis;
|
span {
|
||||||
// white-space: nowrap;
|
font-size: 0.14rem;
|
||||||
font-size: 0.4rem;
|
|
||||||
margin-right: 0.2rem;
|
|
||||||
max-width: 7rem;
|
|
||||||
text-overflow: -o-ellipsis-lastline;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
display: -webkit-box;
|
|
||||||
-webkit-line-clamp: 1;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
}
|
|
||||||
.label-content {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.lable-father {
|
|
||||||
position: absolute;
|
|
||||||
min-width: 3.5rem;
|
|
||||||
right: -3.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;
|
.name {
|
||||||
font-size: 0.18rem;
|
// max-width: 3.3rem;
|
||||||
line-height: 0.34rem;
|
// overflow: hidden;
|
||||||
& > div:nth-of-type(1) {
|
// text-overflow: ellipsis;
|
||||||
overflow: hidden;
|
// white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
font-size: 0.4rem;
|
||||||
white-space: nowrap;
|
margin-right: 0.2rem;
|
||||||
}
|
max-width: 7rem;
|
||||||
& > div:nth-of-type(2) {
|
text-overflow: -o-ellipsis-lastline;
|
||||||
max-height: 1rem;
|
overflow: hidden;
|
||||||
overflow: hidden;
|
text-overflow: ellipsis;
|
||||||
text-overflow: ellipsis;
|
display: -webkit-box;
|
||||||
display: -webkit-box;
|
-webkit-line-clamp: 1;
|
||||||
-webkit-line-clamp: 3;
|
-webkit-box-orient: vertical;
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.bottom {
|
|
||||||
margin-top: 0.4rem;
|
.label-content {
|
||||||
display: flex;
|
position: relative;
|
||||||
.ant-btn {
|
}
|
||||||
height: 0.5rem;
|
|
||||||
margin-right: 0.2rem;
|
.lable-father {
|
||||||
background: #ffffff;
|
position: absolute;
|
||||||
border-radius: 0.06rem;
|
min-width: 3.5rem;
|
||||||
font-size: 0.2rem;
|
right: -3.5rem;
|
||||||
display: flex;
|
top: 0;
|
||||||
justify-content: center;
|
}
|
||||||
align-items: center;
|
|
||||||
}
|
.label {
|
||||||
.ant-btn-primary {
|
padding: 0.01rem 0.1rem;
|
||||||
color: #1890ff;
|
margin-right: 0.1rem;
|
||||||
}
|
border-radius: 0.13rem;
|
||||||
.ant-btn:nth-of-type(1) {
|
background: rgba(255, 255, 255, 0.4);
|
||||||
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;
|
.main {
|
||||||
height: 4rem;
|
margin-top: 0.2rem;
|
||||||
background: url('~@/assets/detailsAll/business/business_right_bg.png')
|
font-size: 0.18rem;
|
||||||
no-repeat;
|
line-height: 0.34rem;
|
||||||
background-size: 100%;
|
|
||||||
margin-top: -0.4rem;
|
&>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: #ffffff;
|
||||||
|
border-radius: 0.06rem;
|
||||||
|
font-size: 0.2rem;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ant-btn-primary {
|
||||||
|
color: #1890ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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/business/business_right_bg.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
margin-top: -0.4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -13,7 +13,10 @@
|
||||||
<div class="content-left-content">
|
<div class="content-left-content">
|
||||||
<p>
|
<p>
|
||||||
<span>{{ item.link.name }}</span>
|
<span>{{ item.link.name }}</span>
|
||||||
<span>{{ item.linkValue }}</span>
|
<a-tooltip>
|
||||||
|
<template #title>{{ item.linkValue }}</template>
|
||||||
|
<span>{{ item.linkValue }}</span>
|
||||||
|
</a-tooltip>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -270,10 +273,15 @@ function technicalNew() {
|
||||||
|
|
||||||
p {
|
p {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
overflow: hidden;
|
|
||||||
-webkit-line-clamp: 1;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
margin-bottom: 0.1rem;
|
margin-bottom: 0.1rem;
|
||||||
|
|
||||||
|
span:last-of-type {
|
||||||
|
width: 298px;
|
||||||
|
display: -webkit-box;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-line-clamp: 1;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue