@@ -4483,7 +4483,7 @@ button:focus { | |||||
background-color: #f0f0f0; | background-color: #f0f0f0; | ||||
} | } | ||||
.bottomBloder{ | .bottomBloder{ | ||||
border-bottom: 1px solid rgb(204,205,215); | |||||
border-bottom: 0.5px solid rgb(204,205,215); | |||||
} | } | ||||
.yiyun_Headtitle_center{ | .yiyun_Headtitle_center{ | ||||
margin:0 24px; | margin:0 24px; | ||||
@@ -7410,7 +7410,7 @@ button.yiyuntitle.nowFolderName{ | |||||
/* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); */ | /* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); */ | ||||
text-align: center; | text-align: center; | ||||
line-height: 37px; | line-height: 37px; | ||||
padding: 0 16px; | |||||
padding: 0 10px; | |||||
border: 0; | border: 0; | ||||
font-weight: 400; | font-weight: 400; | ||||
font-family: PingFang SC; | font-family: PingFang SC; | ||||
@@ -7418,6 +7418,7 @@ button.yiyuntitle.nowFolderName{ | |||||
margin-right: 11px; | margin-right: 11px; | ||||
position: relative; | position: relative; | ||||
top: 2px; | top: 2px; | ||||
left: 8px; | |||||
} | } | ||||
.shadowbtn{ | .shadowbtn{ | ||||
box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); | box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); | ||||
@@ -2,7 +2,7 @@ | |||||
<div class="line-chart"> | <div class="line-chart"> | ||||
<Title :topTitle="chartTitle"></Title> | <Title :topTitle="chartTitle"></Title> | ||||
<NoteContentItem> | <NoteContentItem> | ||||
<template v-slot="mian"> | |||||
<template v-slot:main> | |||||
<EchartItem :recChartData="chartData"/> | <EchartItem :recChartData="chartData"/> | ||||
</template> | </template> | ||||
</NoteContentItem> | </NoteContentItem> | ||||
@@ -2,7 +2,7 @@ | |||||
<div class="more-bar-chart"> | <div class="more-bar-chart"> | ||||
<Title :topTitle="chartTitle"/> | <Title :topTitle="chartTitle"/> | ||||
<NoteContentItem> | <NoteContentItem> | ||||
<template v-slot="main"> | |||||
<template v-slot:main> | |||||
<EchartItem :recChartData="chartData"></EchartItem> | <EchartItem :recChartData="chartData"></EchartItem> | ||||
</template> | </template> | ||||
</NoteContentItem> | </NoteContentItem> | ||||
@@ -2,7 +2,7 @@ | |||||
<div class="bar-item"> | <div class="bar-item"> | ||||
<Title :topTitle="chartTitle"/> | <Title :topTitle="chartTitle"/> | ||||
<NoteContentItem> | <NoteContentItem> | ||||
<template v-slot="main"> | |||||
<template v-slot:main> | |||||
<EchartItem :recChartData="chartData"/> | <EchartItem :recChartData="chartData"/> | ||||
</template> | </template> | ||||
</NoteContentItem> | </NoteContentItem> | ||||
@@ -66,9 +66,9 @@ | |||||
cursor: pointer; | cursor: pointer; | ||||
} | } | ||||
/* border为0.5px google显示不出来 */ | |||||
.operate-btn .wait { | .operate-btn .wait { | ||||
border: 1px solid rgba(151, 151, 151, 1); | |||||
border: 0.5px solid rgba(151, 151, 151, 1); | |||||
background-color: #fff; | background-color: #fff; | ||||
margin:0 0 15px 0; | margin:0 0 15px 0; | ||||
} | } | ||||
@@ -1,7 +1,6 @@ | |||||
<template> | <template> | ||||
<div class="note-content"> | <div class="note-content"> | ||||
<slot name="main"></slot> | <slot name="main"></slot> | ||||
<slot></slot> | |||||
</div> | </div> | ||||
</template> | </template> | ||||
@@ -35,7 +35,7 @@ | |||||
height: 44px; | height: 44px; | ||||
border-radius: 4px; | border-radius: 4px; | ||||
background-color: rgba(255, 255, 255, 1); | background-color: rgba(255, 255, 255, 1); | ||||
border: 1px solid #979797; | |||||
border: 0.5px solid #979797; | |||||
margin: 6px 0 6px 0; | margin: 6px 0 6px 0; | ||||
display: flex; | display: flex; | ||||
} | } | ||||
@@ -2,7 +2,7 @@ | |||||
<div class="progress-com" v-if="Object.keys(progressItem).length > 0"> | <div class="progress-com" v-if="Object.keys(progressItem).length > 0"> | ||||
<Title :topTitle="progressItem.title"/> | <Title :topTitle="progressItem.title"/> | ||||
<NoteContentItem> | <NoteContentItem> | ||||
<template v-slot="main"> | |||||
<template v-slot:main> | |||||
<div> | <div> | ||||
<div v-for="(item, index) in progressItem.content" :key="index" class="progress-content"> | <div v-for="(item, index) in progressItem.content" :key="index" class="progress-content"> | ||||
<div class="progress-name">{{item.pName}}</div> | <div class="progress-name">{{item.pName}}</div> | ||||
@@ -2,7 +2,7 @@ | |||||
<div class="text-com"> | <div class="text-com"> | ||||
<Title :topTitle="textItem.title"/> | <Title :topTitle="textItem.title"/> | ||||
<NoteContentItem> | <NoteContentItem> | ||||
<template v-slot="main"> | |||||
<template v-slot:main> | |||||
<div v-if="textItem.content.length > 0"> | <div v-if="textItem.content.length > 0"> | ||||
<div v-for="(item, index) in textItem.content" :key="index + '1'" class="text-content"> | <div v-for="(item, index) in textItem.content" :key="index + '1'" class="text-content"> | ||||
<div class="content-title">{{ item.itemName }}:</div> | <div class="content-title">{{ item.itemName }}:</div> | ||||
@@ -2,7 +2,7 @@ | |||||
<div class="waring-com"> | <div class="waring-com"> | ||||
<Title topTitle="告警概况"/> | <Title topTitle="告警概况"/> | ||||
<NoteContentItem> | <NoteContentItem> | ||||
<template v-slot="main"> | |||||
<template v-slot:main> | |||||
<div class="content-wrap"> | <div class="content-wrap"> | ||||
<MatterDetail iconKinds="warning"/> | <MatterDetail iconKinds="warning"/> | ||||
<div class="pending-matters"> | <div class="pending-matters"> | ||||
@@ -105,6 +105,8 @@ | |||||
backToIndex() { | backToIndex() { | ||||
this.$router.push({ | this.$router.push({ | ||||
path: 'index' | path: 'index' | ||||
}).catch(err => { | |||||
console.log(err); | |||||
}) | }) | ||||
} | } | ||||
} | } | ||||
@@ -7,7 +7,7 @@ | |||||
<div> | <div> | ||||
<Title topTitle="建筑联动模型展示"/> | <Title topTitle="建筑联动模型展示"/> | ||||
<NoteContentItem class="arch-model"> | <NoteContentItem class="arch-model"> | ||||
<template v-slot="main"> | |||||
<template v-slot:main> | |||||
<div>我是显示建筑联动模型的地方</div> | <div>我是显示建筑联动模型的地方</div> | ||||
</template> | </template> | ||||
</NoteContentItem> | </NoteContentItem> | ||||
@@ -23,7 +23,7 @@ | |||||
<div class="right-charts"> | <div class="right-charts"> | ||||
<Title topTitle="现场施工视频监控"/> | <Title topTitle="现场施工视频监控"/> | ||||
<NoteContentItem class="video"> | <NoteContentItem class="video"> | ||||
<template v-slot="main"> | |||||
<template v-slot:main> | |||||
<div>我是显示现场施工视频监控的地方</div> | <div>我是显示现场施工视频监控的地方</div> | ||||
</template> | </template> | ||||
</NoteContentItem> | </NoteContentItem> | ||||
@@ -80,6 +80,8 @@ | |||||
backToIndex() { | backToIndex() { | ||||
this.$router.push({ | this.$router.push({ | ||||
path: 'index' | path: 'index' | ||||
}).catch(err => { | |||||
console.log(err); | |||||
}) | }) | ||||
} | } | ||||
} | } | ||||
@@ -531,7 +531,7 @@ export default { | |||||
// } | // } | ||||
}, | }, | ||||
listenBottomHeight() { | listenBottomHeight() { | ||||
let oDivH = document.getElementById("bottomBox").offsetHeight; | |||||
let oDivH = document.getElementById('bottomBox') ? document.getElementById("bottomBox").offsetHeight : 0; | |||||
let oShodow = document.getElementById("bottomoShodow"); | let oShodow = document.getElementById("bottomoShodow"); | ||||
// console.log(oDivH) | // console.log(oDivH) | ||||
if (oDivH > 259) { | if (oDivH > 259) { | ||||
@@ -1198,6 +1198,9 @@ export default { | |||||
::v-deep .el-breadcrumb__item { | ::v-deep .el-breadcrumb__item { | ||||
user-select: none; | user-select: none; | ||||
font-size: 18px; | font-size: 18px; | ||||
display: inline-block; | |||||
height: 56px; | |||||
line-height: 56px; | |||||
.el-breadcrumb__separator { | .el-breadcrumb__separator { | ||||
color: #a7a8b7; | color: #a7a8b7; | ||||
} | } | ||||