Selaa lähdekoodia

协作空间头部 显示样式微调

dev-remain
kim131 4 vuotta sitten
vanhempi
commit
1c3609e9c1
13 muutettua tiedostoa jossa 22 lisäystä ja 15 poistoa
  1. +3
    -2
      public/static/css/main.css
  2. +1
    -1
      src/views/main_web/watchall/components/EchartLineItem.vue
  3. +1
    -1
      src/views/main_web/watchall/components/EchartMoreBarItem.vue
  4. +1
    -1
      src/views/main_web/watchall/components/EchartOneBarItem.vue
  5. +2
    -2
      src/views/main_web/watchall/components/MatterDetail.vue
  6. +0
    -1
      src/views/main_web/watchall/components/NoteContentItem.vue
  7. +1
    -1
      src/views/main_web/watchall/components/PendingMatterEntry.vue
  8. +1
    -1
      src/views/main_web/watchall/components/ProgressItem.vue
  9. +1
    -1
      src/views/main_web/watchall/components/TextItem.vue
  10. +1
    -1
      src/views/main_web/watchall/components/WaringItem.vue
  11. +2
    -0
      src/views/main_web/watchall/watchall.vue
  12. +4
    -2
      src/views/main_web/watchall/watchlink.vue
  13. +4
    -1
      src/views/main_web/workspace/workspace.new.vue

+ 3
- 2
public/static/css/main.css Näytä tiedosto

@@ -4483,7 +4483,7 @@ button:focus {
background-color: #f0f0f0;
}
.bottomBloder{
border-bottom: 1px solid rgb(204,205,215);
border-bottom: 0.5px solid rgb(204,205,215);
}
.yiyun_Headtitle_center{
margin:0 24px;
@@ -7410,7 +7410,7 @@ button.yiyuntitle.nowFolderName{
/* box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2); */
text-align: center;
line-height: 37px;
padding: 0 16px;
padding: 0 10px;
border: 0;
font-weight: 400;
font-family: PingFang SC;
@@ -7418,6 +7418,7 @@ button.yiyuntitle.nowFolderName{
margin-right: 11px;
position: relative;
top: 2px;
left: 8px;
}
.shadowbtn{
box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);


+ 1
- 1
src/views/main_web/watchall/components/EchartLineItem.vue Näytä tiedosto

@@ -2,7 +2,7 @@
<div class="line-chart">
<Title :topTitle="chartTitle"></Title>
<NoteContentItem>
<template v-slot="mian">
<template v-slot:main>
<EchartItem :recChartData="chartData"/>
</template>
</NoteContentItem>


+ 1
- 1
src/views/main_web/watchall/components/EchartMoreBarItem.vue Näytä tiedosto

@@ -2,7 +2,7 @@
<div class="more-bar-chart">
<Title :topTitle="chartTitle"/>
<NoteContentItem>
<template v-slot="main">
<template v-slot:main>
<EchartItem :recChartData="chartData"></EchartItem>
</template>
</NoteContentItem>


+ 1
- 1
src/views/main_web/watchall/components/EchartOneBarItem.vue Näytä tiedosto

@@ -2,7 +2,7 @@
<div class="bar-item">
<Title :topTitle="chartTitle"/>
<NoteContentItem>
<template v-slot="main">
<template v-slot:main>
<EchartItem :recChartData="chartData"/>
</template>
</NoteContentItem>


+ 2
- 2
src/views/main_web/watchall/components/MatterDetail.vue Näytä tiedosto

@@ -66,9 +66,9 @@
cursor: pointer;
}
/* border为0.5px google显示不出来 */
.operate-btn .wait {
border: 1px solid rgba(151, 151, 151, 1);
border: 0.5px solid rgba(151, 151, 151, 1);
background-color: #fff;
margin:0 0 15px 0;
}


+ 0
- 1
src/views/main_web/watchall/components/NoteContentItem.vue Näytä tiedosto

@@ -1,7 +1,6 @@
<template>
<div class="note-content">
<slot name="main"></slot>
<slot></slot>
</div>
</template>



+ 1
- 1
src/views/main_web/watchall/components/PendingMatterEntry.vue Näytä tiedosto

@@ -35,7 +35,7 @@
height: 44px;
border-radius: 4px;
background-color: rgba(255, 255, 255, 1);
border: 1px solid #979797;
border: 0.5px solid #979797;
margin: 6px 0 6px 0;
display: flex;
}


+ 1
- 1
src/views/main_web/watchall/components/ProgressItem.vue Näytä tiedosto

@@ -2,7 +2,7 @@
<div class="progress-com" v-if="Object.keys(progressItem).length > 0">
<Title :topTitle="progressItem.title"/>
<NoteContentItem>
<template v-slot="main">
<template v-slot:main>
<div>
<div v-for="(item, index) in progressItem.content" :key="index" class="progress-content">
<div class="progress-name">{{item.pName}}</div>


+ 1
- 1
src/views/main_web/watchall/components/TextItem.vue Näytä tiedosto

@@ -2,7 +2,7 @@
<div class="text-com">
<Title :topTitle="textItem.title"/>
<NoteContentItem>
<template v-slot="main">
<template v-slot:main>
<div v-if="textItem.content.length > 0">
<div v-for="(item, index) in textItem.content" :key="index + '1'" class="text-content">
<div class="content-title">{{ item.itemName }}:</div>


+ 1
- 1
src/views/main_web/watchall/components/WaringItem.vue Näytä tiedosto

@@ -2,7 +2,7 @@
<div class="waring-com">
<Title topTitle="告警概况"/>
<NoteContentItem>
<template v-slot="main">
<template v-slot:main>
<div class="content-wrap">
<MatterDetail iconKinds="warning"/>
<div class="pending-matters">


+ 2
- 0
src/views/main_web/watchall/watchall.vue Näytä tiedosto

@@ -105,6 +105,8 @@
backToIndex() {
this.$router.push({
path: 'index'
}).catch(err => {
console.log(err);
})
}
}


+ 4
- 2
src/views/main_web/watchall/watchlink.vue Näytä tiedosto

@@ -7,7 +7,7 @@
<div>
<Title topTitle="建筑联动模型展示"/>
<NoteContentItem class="arch-model">
<template v-slot="main">
<template v-slot:main>
<div>我是显示建筑联动模型的地方</div>
</template>
</NoteContentItem>
@@ -23,7 +23,7 @@
<div class="right-charts">
<Title topTitle="现场施工视频监控"/>
<NoteContentItem class="video">
<template v-slot="main">
<template v-slot:main>
<div>我是显示现场施工视频监控的地方</div>
</template>
</NoteContentItem>
@@ -80,6 +80,8 @@
backToIndex() {
this.$router.push({
path: 'index'
}).catch(err => {
console.log(err);
})
}
}


+ 4
- 1
src/views/main_web/workspace/workspace.new.vue Näytä tiedosto

@@ -531,7 +531,7 @@ export default {
// }
},
listenBottomHeight() {
let oDivH = document.getElementById("bottomBox").offsetHeight;
let oDivH = document.getElementById('bottomBox') ? document.getElementById("bottomBox").offsetHeight : 0;
let oShodow = document.getElementById("bottomoShodow");
// console.log(oDivH)
if (oDivH > 259) {
@@ -1198,6 +1198,9 @@ export default {
::v-deep .el-breadcrumb__item {
user-select: none;
font-size: 18px;
display: inline-block;
height: 56px;
line-height: 56px;
.el-breadcrumb__separator {
color: #a7a8b7;
}


Ladataan…
Peruuta
Tallenna