西海岸版本 基础设施开发
This commit is contained in:
parent
8a02cc43b4
commit
84ea475d64
|
@ -1,5 +1,4 @@
|
|||
<template>
|
||||
itShowQingDao
|
||||
<!-- 青岛 -->
|
||||
<div class="details-pageconetent" v-if="whoShow1 && whoShow1.itShowQingDao">
|
||||
<home-header></home-header>
|
||||
|
@ -305,7 +304,7 @@
|
|||
<div class="details-pageconetent-left" v-if="Cardsname != '基础设施'">
|
||||
<detailsPageconetentTree />
|
||||
</div>
|
||||
<div class="details-pageconetent-left" style="left:0.16rem" v-else>
|
||||
<div class="details-pageconetent-left" style="left: 0.16rem" v-else>
|
||||
<detailsPageInfrastructureTreeXha />
|
||||
</div>
|
||||
<div class="top" v-if="Cardsname != '知识库' && Cardsname != '基础设施'">
|
||||
|
@ -436,7 +435,11 @@
|
|||
<a-empty />
|
||||
</div>
|
||||
</div>
|
||||
<div class="top" style="width: 13.5rem;margin-left:0" v-else-if="Cardsname === '基础设施'">
|
||||
<div
|
||||
class="top"
|
||||
style="width: 13.5rem; margin-left: 0"
|
||||
v-else-if="Cardsname === '基础设施'"
|
||||
>
|
||||
<div class="top-title">
|
||||
<div
|
||||
v-for="item in titleName"
|
||||
|
@ -507,6 +510,9 @@
|
|||
:resourceTotal="resourceTotal"
|
||||
></KnowledgeBase>
|
||||
</div>
|
||||
<div v-if="Cardsname == '基础设施'">
|
||||
<infrastructureApplication></infrastructureApplication>
|
||||
</div>
|
||||
<div class="talk-monitor" @click="openMonitor">
|
||||
<a-tooltip>
|
||||
<template #title>问答机器人</template>
|
||||
|
@ -778,6 +784,7 @@
|
|||
import infrastructurePageXha from '@/views/home/infrastructurePageXha.vue'
|
||||
import detailsPageInfrastructureTree from '@/views/home/detailsPageInfrastructureTree.vue'
|
||||
import detailsPageInfrastructureTreeXha from '@/views/home/detailsPageInfrastructureTreeXha.vue'
|
||||
import infrastructureApplication from '@/views/home/infrastructureApplication.vue'
|
||||
import { DETAIL_PAGE_CONTENT_DEFAULT_TAB } from '@/global/GlobalConfig.js'
|
||||
import { useStore } from 'vuex'
|
||||
import { message } from 'ant-design-vue'
|
||||
|
@ -803,7 +810,7 @@
|
|||
const handleAdd = (value) => {
|
||||
flag.value = value
|
||||
}
|
||||
const titleName=ref([])
|
||||
const titleName = ref([])
|
||||
const openMonitor = () => {
|
||||
window.open('http://www.qingdao.gov.cn:8083/ghwd/znwdqd/index.html')
|
||||
}
|
||||
|
@ -904,15 +911,14 @@
|
|||
name: '',
|
||||
})
|
||||
//调整标题顺序 西海岸基础设施放在最前面
|
||||
const setTitle = () => {
|
||||
let title = titleNameArray
|
||||
let whoShow1 = ref(whoShow)
|
||||
if( whoShow1 && whoShow1.value.itShowXiHaiAn){
|
||||
title[0] = title.splice(2, 1, title[0])[0];
|
||||
|
||||
}
|
||||
titleName.value=title
|
||||
}
|
||||
const setTitle = () => {
|
||||
let title = titleNameArray
|
||||
let whoShow1 = ref(whoShow)
|
||||
if (whoShow1 && whoShow1.value.itShowXiHaiAn) {
|
||||
title[0] = title.splice(2, 1, title[0])[0]
|
||||
}
|
||||
titleName.value = title
|
||||
}
|
||||
// 查询
|
||||
const onSearch = () => {
|
||||
loading.value = true
|
||||
|
@ -1751,7 +1757,7 @@
|
|||
onMounted(() => {
|
||||
// 从本地读取查询条件,赋值
|
||||
//西海岸基础设施放在最前面
|
||||
setTitle();
|
||||
setTitle()
|
||||
handleSetSearchData()
|
||||
listKey2.value++
|
||||
// 获取筛选条件
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
<!--
|
||||
* @Author: Light
|
||||
* @Date: 2022-11-18 11:53:43
|
||||
* @LastEditors: Light
|
||||
* @LastEditTime: 2022-11-18 11:54:11
|
||||
* @Description: 告诉大家这是什么
|
||||
-->
|
||||
<template>
|
||||
<div>基础设施申请</div>
|
||||
</template>
|
||||
<script setup></script>
|
||||
<style lang="less" scoped></style>
|
Loading…
Reference in New Issue