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