|
@@ -34,11 +34,11 @@
|
|
|
</ul>
|
|
|
<span class="title2-left">工程信息</span>
|
|
|
<ul class="gcxx-main" :class="{'is-short-list': listData_gcxx.value.length<3}">
|
|
|
- <li class="gcxx-item" v-for="item,index in listData_gcxx.value" @click="handleChangeProject(item.id)">
|
|
|
+ <li class="gcxx-item" v-for="item,index in listData_gcxx.value" @click="handleChangeProject(item)">
|
|
|
<img :src="require('@/assets/imgs/page_hdsj/icon-gcxx.png')" alt="">
|
|
|
<div>
|
|
|
<div>
|
|
|
- <div :class="{'highlight': currentYear==='2022'&&item.id===currentProjectId}"><span>{{ item.prjName }}</span></div>
|
|
|
+ <div :class="{'highlight': currentYear==='2022'&&item.id===currentProject.id}"><span :title="item.prjName">{{ item.prjName }}</span></div>
|
|
|
<!-- <span
|
|
|
:class="{'status-wks': item.status==='未开始','status-jxz': item.status==='进行中','status-ywc': item.status==='已完成'}"
|
|
|
>{{ item.status }}</span> -->
|
|
@@ -56,9 +56,11 @@
|
|
|
</ul>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="panel-right">
|
|
|
+ <div class="panel-right" v-if="showRightDetail">
|
|
|
<div class="pr-b1 pr">
|
|
|
<span class="title1-right">疏浚监控</span>
|
|
|
+ <span class="title2-right">工程名称</span>
|
|
|
+ <span class="pro-name">{{ currentProject.name }}</span>
|
|
|
<span class="title2-right">工程概况</span>
|
|
|
<div class="part1-item" v-for="item in data_gcgk.sta">
|
|
|
<img :src="item.iconUrl" alt="">
|
|
@@ -129,6 +131,7 @@
|
|
|
</ul>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div v-else class="panel-right pr-no-data">无数据</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -207,17 +210,22 @@ export default {
|
|
|
|
|
|
const listData_gcxx = reactive({value: []})
|
|
|
|
|
|
- function handleChangeProject(id) {
|
|
|
- currentProjectId.value = id
|
|
|
+ function handleChangeProject(item) {
|
|
|
+ currentProject.id = item.id
|
|
|
+ currentProject.name = item.prjName
|
|
|
}
|
|
|
|
|
|
- const currentProjectId = ref('')
|
|
|
- watch(currentProjectId, (val)=> {
|
|
|
+ const currentProject = reactive({ id: '', name: '' })
|
|
|
+ const showRightDetail = ref(true)
|
|
|
+ watch(()=>currentProject.id, (val)=> {
|
|
|
if(+currentYear.value>2021) {
|
|
|
fstjListShow.value = false
|
|
|
getFstj(val)
|
|
|
getYjWarning(val)
|
|
|
getBoatNum(val)
|
|
|
+ showRightDetail.value = true
|
|
|
+ }else {
|
|
|
+ showRightDetail.value = false
|
|
|
}
|
|
|
})
|
|
|
|
|
@@ -246,7 +254,8 @@ export default {
|
|
|
function getGcxx(year) {
|
|
|
GetGcxx(year).then(res => {
|
|
|
listData_gcxx.value = res.data.Rows
|
|
|
- currentProjectId.value = res.data.Rows[0].id
|
|
|
+ currentProject.id = res.data.Rows[0].id
|
|
|
+ currentProject.name = res.data.Rows[0].prjName
|
|
|
})
|
|
|
}
|
|
|
|
|
@@ -430,12 +439,17 @@ export default {
|
|
|
|
|
|
.panel-right {
|
|
|
right: 0;
|
|
|
- padding: 0 30px 10px;
|
|
|
+ padding: 0 30px 30px;
|
|
|
.pr {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
align-items: flex-end;
|
|
|
}
|
|
|
+ &.pr-no-data {
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.pl-b1 {
|
|
@@ -659,13 +673,21 @@ export default {
|
|
|
}
|
|
|
|
|
|
.pr-b1 {
|
|
|
+ .pro-name {
|
|
|
+ width: 80%;
|
|
|
+ display: block;
|
|
|
+ font-family: YSBTH;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #f8ec95;
|
|
|
+ line-height: 26px;
|
|
|
+ }
|
|
|
.part1-item {
|
|
|
width: 80%;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- &:not(:last-child) {
|
|
|
- margin-bottom: 15px;
|
|
|
- }
|
|
|
+ // &:not(:last-child) {
|
|
|
+ // margin-bottom: 15px;
|
|
|
+ // }
|
|
|
&>img {
|
|
|
width: 89px;
|
|
|
height: 95px;
|
|
@@ -698,6 +720,7 @@ export default {
|
|
|
width: 90%;
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
+ margin-top: 10px;
|
|
|
&>div {
|
|
|
width: 140px;
|
|
|
height: 49px;
|
|
@@ -728,7 +751,7 @@ export default {
|
|
|
.pr-b2 {
|
|
|
#chart_fstj {
|
|
|
width: 90%;
|
|
|
- height: 23vh;
|
|
|
+ height: 20vh;
|
|
|
}
|
|
|
.fstj-list {
|
|
|
// margin-top: 0.5vh;
|
|
@@ -797,14 +820,14 @@ export default {
|
|
|
align-items: flex-end;
|
|
|
width: 100%;
|
|
|
// height: 20vh;
|
|
|
- margin: 10px 0 25px;
|
|
|
+ // margin: 10px 0 25px;
|
|
|
|
|
|
.prb3-item2 {
|
|
|
width: 85%;
|
|
|
height: 24px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- margin: 14px 0;
|
|
|
+ margin: 10px 0;
|
|
|
background: url('@/assets/imgs/page_hdsj/bg-wgyj-list.png') no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
span:nth-child(2) {
|