详情页添加标签
This commit is contained in:
parent
0941a3c92b
commit
f25e57e9b1
Binary file not shown.
After Width: | Height: | Size: 544 B |
Binary file not shown.
After Width: | Height: | Size: 706 B |
|
@ -1,14 +1,32 @@
|
||||||
<!--
|
<!--
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:32:22
|
* @Date: 2022-06-08 11:32:22
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-07-18 18:49:30
|
* @LastEditTime: 2022-11-03 16:53:02
|
||||||
* @Description: 算法详情页
|
* @Description: 算法详情页
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="algorithm-details" :class="{ fixed2: scrollTop >= 600 }">
|
<div class="algorithm-details" :class="{ fixed2: scrollTop >= 600 }">
|
||||||
<!-- 头部基本信息 -->
|
<!-- 头部基本信息 -->
|
||||||
<algorithm-top-details :dataList="dataList.data"></algorithm-top-details>
|
<algorithm-top-details :dataList="dataList.data"></algorithm-top-details>
|
||||||
|
|
||||||
|
<div style="position: absolute; top: 240px; left: 320px">
|
||||||
|
<div style="display: flex; align-items: center; color: #99ffff">
|
||||||
|
<i class="jc"></i>
|
||||||
|
<div style="margin-left: 10px">能力基本信息</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #67b1fc;
|
||||||
|
margin-top: 450px;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<i class="kz"></i>
|
||||||
|
<div style="margin-left: 10px">能力扩展信息</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 导航 -->
|
<!-- 导航 -->
|
||||||
<algorithm-navigation
|
<algorithm-navigation
|
||||||
:dataList="dataList.data"
|
:dataList="dataList.data"
|
||||||
|
@ -201,4 +219,18 @@
|
||||||
.fixed2 > div:nth-of-type(3) {
|
.fixed2 > div:nth-of-type(3) {
|
||||||
margin-top: 0.84rem;
|
margin-top: 0.84rem;
|
||||||
}
|
}
|
||||||
|
.jc {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/jc.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.kz {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/kz.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<!--
|
<!--
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:32:22
|
* @Date: 2022-06-08 11:32:22
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-07-22 18:43:37
|
* @LastEditTime: 2022-11-03 16:52:08
|
||||||
* @Description: 应用详情页
|
* @Description: 应用详情页
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -11,6 +11,23 @@
|
||||||
<application-top-details
|
<application-top-details
|
||||||
:dataList="dataList.data"
|
:dataList="dataList.data"
|
||||||
></application-top-details>
|
></application-top-details>
|
||||||
|
<div style="position: absolute; top: 240px; left: 320px">
|
||||||
|
<div style="display: flex; align-items: center; color: #99ffff">
|
||||||
|
<i class="jc"></i>
|
||||||
|
<div style="margin-left: 10px">能力基本信息</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #67b1fc;
|
||||||
|
margin-top: 450px;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<i class="kz"></i>
|
||||||
|
<div style="margin-left: 10px">能力扩展信息</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 导航 -->
|
<!-- 导航 -->
|
||||||
<application-navigation
|
<application-navigation
|
||||||
:dataList="dataList.data"
|
:dataList="dataList.data"
|
||||||
|
@ -216,4 +233,18 @@
|
||||||
.fixed2 > div:nth-of-type(3) {
|
.fixed2 > div:nth-of-type(3) {
|
||||||
margin-top: 0.84rem;
|
margin-top: 0.84rem;
|
||||||
}
|
}
|
||||||
|
.jc {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/jc.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.kz {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/kz.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,14 +1,32 @@
|
||||||
<!--
|
<!--
|
||||||
* @Author: hisense.gaoyuanwei
|
* @Author: hisense.gaoyuanwei
|
||||||
* @Date: 2022-06-20 10:12:22
|
* @Date: 2022-06-20 10:12:22
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-07-18 18:49:01
|
* @LastEditTime: 2022-11-03 16:53:10
|
||||||
* @Description: 业务组件详情页
|
* @Description: 业务组件详情页
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="business-details" :class="{ fixed2: scrollTop >= 600 }">
|
<div class="business-details" :class="{ fixed2: scrollTop >= 600 }">
|
||||||
<!-- 头部基本信息 -->
|
<!-- 头部基本信息 -->
|
||||||
<business-top-details :dataList="dataList.data"></business-top-details>
|
<business-top-details :dataList="dataList.data"></business-top-details>
|
||||||
|
|
||||||
|
<div style="position: absolute; top: 240px; left: 320px">
|
||||||
|
<div style="display: flex; align-items: center; color: #99ffff">
|
||||||
|
<i class="jc"></i>
|
||||||
|
<div style="margin-left: 10px">能力基本信息</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #67b1fc;
|
||||||
|
margin-top: 450px;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<i class="kz"></i>
|
||||||
|
<div style="margin-left: 10px">能力扩展信息</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 导航 -->
|
<!-- 导航 -->
|
||||||
<business-navigation
|
<business-navigation
|
||||||
:dataList="dataList.data"
|
:dataList="dataList.data"
|
||||||
|
@ -184,4 +202,18 @@
|
||||||
.fixed2 > div:nth-of-type(3) {
|
.fixed2 > div:nth-of-type(3) {
|
||||||
margin-top: 0.84rem;
|
margin-top: 0.84rem;
|
||||||
}
|
}
|
||||||
|
.jc {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/jc.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.kz {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/kz.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,14 +1,32 @@
|
||||||
<!--
|
<!--
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:32:22
|
* @Date: 2022-06-08 11:32:22
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-07-18 18:48:53
|
* @LastEditTime: 2022-11-03 16:53:13
|
||||||
* @Description: 开发组件详情页
|
* @Description: 开发组件详情页
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="application-details" :class="{ fixed2: scrollTop >= 600 }">
|
<div class="application-details" :class="{ fixed2: scrollTop >= 600 }">
|
||||||
<!-- 头部基本信息 -->
|
<!-- 头部基本信息 -->
|
||||||
<developer-top-details :dataList="dataList.data"></developer-top-details>
|
<developer-top-details :dataList="dataList.data"></developer-top-details>
|
||||||
|
|
||||||
|
<div style="position: absolute; top: 240px; left: 320px">
|
||||||
|
<div style="display: flex; align-items: center; color: #99ffff">
|
||||||
|
<i class="jc"></i>
|
||||||
|
<div style="margin-left: 10px">能力基本信息</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #67b1fc;
|
||||||
|
margin-top: 450px;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<i class="kz"></i>
|
||||||
|
<div style="margin-left: 10px">能力扩展信息</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 导航 -->
|
<!-- 导航 -->
|
||||||
<developer-navigation
|
<developer-navigation
|
||||||
:dataList="dataList.data"
|
:dataList="dataList.data"
|
||||||
|
@ -194,4 +212,18 @@
|
||||||
.fixed2 > div:nth-of-type(3) {
|
.fixed2 > div:nth-of-type(3) {
|
||||||
margin-top: 0.84rem;
|
margin-top: 0.84rem;
|
||||||
}
|
}
|
||||||
|
.jc {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/jc.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.kz {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/kz.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<!--
|
<!--
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:32:22
|
* @Date: 2022-06-08 11:32:22
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: Light
|
||||||
* @LastEditTime: 2022-07-18 18:48:32
|
* @LastEditTime: 2022-11-03 16:53:17
|
||||||
* @Description: 图层服务详情页
|
* @Description: 图层服务详情页
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -11,6 +11,24 @@
|
||||||
<layer-service-top-details
|
<layer-service-top-details
|
||||||
:dataList="dataList.data"
|
:dataList="dataList.data"
|
||||||
></layer-service-top-details>
|
></layer-service-top-details>
|
||||||
|
|
||||||
|
<div style="position: absolute; top: 240px; left: 320px">
|
||||||
|
<div style="display: flex; align-items: center; color: #99ffff">
|
||||||
|
<i class="jc"></i>
|
||||||
|
<div style="margin-left: 10px">能力基本信息</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
style="
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
color: #67b1fc;
|
||||||
|
margin-top: 450px;
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<i class="kz"></i>
|
||||||
|
<div style="margin-left: 10px">能力扩展信息</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<!-- 导航 -->
|
<!-- 导航 -->
|
||||||
<layer-service-navigation
|
<layer-service-navigation
|
||||||
:dataList="dataList.data"
|
:dataList="dataList.data"
|
||||||
|
@ -193,4 +211,18 @@
|
||||||
.fixed2 > div:nth-of-type(3) {
|
.fixed2 > div:nth-of-type(3) {
|
||||||
margin-top: 0.84rem;
|
margin-top: 0.84rem;
|
||||||
}
|
}
|
||||||
|
.jc {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/jc.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.kz {
|
||||||
|
width: 15px;
|
||||||
|
height: 15px;
|
||||||
|
background: url('~@/assets/home/kz.png') no-repeat;
|
||||||
|
background-size: 100%;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-content-father" :key="listKey">
|
<!-- <div class="top-content-father" :key="listKey">
|
||||||
<template
|
<template
|
||||||
v-if="
|
v-if="
|
||||||
Cardsname == 'GIS图层' || Cardsname == '应用系统' || Cardsname == ''
|
Cardsname == 'GIS图层' || Cardsname == '应用系统' || Cardsname == ''
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div> -->
|
||||||
<searchResultList
|
<searchResultList
|
||||||
v-show="resourceList.data && resourceList.data.length > 0"
|
v-show="resourceList.data && resourceList.data.length > 0"
|
||||||
:resourceList="resourceList"
|
:resourceList="resourceList"
|
||||||
|
@ -336,7 +336,7 @@
|
||||||
<div class="hengxian"></div>
|
<div class="hengxian"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-content-father" :key="listKey">
|
<!-- <div class="top-content-father" :key="listKey">
|
||||||
<template
|
<template
|
||||||
v-if="
|
v-if="
|
||||||
Cardsname == 'GIS图层' || Cardsname == '应用系统' || Cardsname == ''
|
Cardsname == 'GIS图层' || Cardsname == '应用系统' || Cardsname == ''
|
||||||
|
@ -390,7 +390,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div> -->
|
||||||
<searchResultList
|
<searchResultList
|
||||||
v-show="resourceList.data && resourceList.data.length > 0"
|
v-show="resourceList.data && resourceList.data.length > 0"
|
||||||
:key="listKey2"
|
:key="listKey2"
|
||||||
|
@ -538,8 +538,7 @@
|
||||||
<div class="hengxian"></div>
|
<div class="hengxian"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-content-father" :key="listKey">
|
<!-- <div class="top-content-father" :key="listKey">
|
||||||
<!-- todo -->
|
|
||||||
<template
|
<template
|
||||||
v-if="
|
v-if="
|
||||||
Cardsname == 'GIS图层' || Cardsname == '应用系统' || Cardsname == ''
|
Cardsname == 'GIS图层' || Cardsname == '应用系统' || Cardsname == ''
|
||||||
|
@ -593,7 +592,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div> -->
|
||||||
<searchResultList
|
<searchResultList
|
||||||
v-show="resourceList.data && resourceList.data.length"
|
v-show="resourceList.data && resourceList.data.length"
|
||||||
:key="listKey2"
|
:key="listKey2"
|
||||||
|
|
Loading…
Reference in New Issue