技术文档-定位、联系我们
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 122 KiB |
Before Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 119 KiB After Width: | Height: | Size: 119 KiB |
Before Width: | Height: | Size: 123 KiB After Width: | Height: | Size: 128 KiB |
|
@ -48,7 +48,7 @@
|
|||
</div>
|
||||
<!-- 联系我们 -->
|
||||
<div class="img-bg callus-box">
|
||||
<div class="title" style="margin-bottom: 20px">
|
||||
<!-- <div class="title" style="margin-bottom: 20px">
|
||||
<div class="text text-white">联系我们</div>
|
||||
<div class="line line-white"></div>
|
||||
</div>
|
||||
|
@ -61,7 +61,7 @@
|
|||
手机号:
|
||||
<span>0530-0000000</span>
|
||||
</p>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
<!-- 能力上架弹窗 -->
|
||||
<a-modal
|
||||
|
|
|
@ -34,13 +34,15 @@
|
|||
</div>
|
||||
</div>
|
||||
<!-- 使用手册 -->
|
||||
<div class="manual"><p>使用手册</p></div>
|
||||
<div class="manual" v-if="titleData.name === '新手指引'">
|
||||
<p>使用手册</p>
|
||||
</div>
|
||||
</div>
|
||||
<menuBook v-if="titleData.name === '新手指引'"></menuBook>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<home-footer></home-footer>
|
||||
<home-footer v-if="footShow"></home-footer>
|
||||
</template>
|
||||
<script setup>
|
||||
import HomeHeader from '@/views/home/components/header'
|
||||
|
@ -70,6 +72,7 @@
|
|||
let doc_base_url = ref(window.SITE_CONFIG['frontUrl'])
|
||||
|
||||
const treeClick = (item) => {
|
||||
footShow.value = false
|
||||
clickData.value = item
|
||||
console.log('clickData------------>', item)
|
||||
titleData.value = titleList.value[1]
|
||||
|
@ -89,13 +92,16 @@
|
|||
message.error(err)
|
||||
})
|
||||
}
|
||||
const footShow = ref(true)
|
||||
|
||||
const changeName = (item) => {
|
||||
titleData.value = item
|
||||
if (item.name == '新手指引') {
|
||||
footShow.value = true
|
||||
clickData.value = {}
|
||||
}
|
||||
if (item.name == '技术文档') {
|
||||
footShow.value = false
|
||||
if (!clickData.value.title) {
|
||||
clickData.value = {}
|
||||
treeArray.value = []
|
||||
|
@ -178,6 +184,7 @@
|
|||
justify-content: flex-start;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box;
|
||||
position: relative;
|
||||
// position: fixed;
|
||||
// left: 50%;
|
||||
// bottom: 0;
|
||||
|
@ -193,9 +200,9 @@
|
|||
margin-right: 20px;
|
||||
background: rgba(244, 245, 248, 1);
|
||||
overflow-y: scroll;
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
top: 200px;
|
||||
left: 90px;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
.right {
|
||||
|
@ -211,9 +218,9 @@
|
|||
z-index: 10;
|
||||
width: 74px;
|
||||
height: 136px;
|
||||
position: fixed;
|
||||
position: absolute;
|
||||
top: 200px;
|
||||
right: 200px;
|
||||
right: 140px;
|
||||
background-size: 100% 100%;
|
||||
background-image: url('../../assets/menu/manual.png');
|
||||
display: flex;
|
||||
|
|