|
@@ -33,7 +33,7 @@
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
<span class="title2-left">工程信息</span>
|
|
<span class="title2-left">工程信息</span>
|
|
- <ul class="gcxx-main" :class="{'is-short-list': listData_gcxx.value.length<3}">
|
|
|
|
|
|
+ <ul v-if="listData_gcxx.value.length>0" 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)">
|
|
<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="">
|
|
<img :src="require('@/assets/imgs/page_hdsj/icon-gcxx.png')" alt="">
|
|
<div>
|
|
<div>
|
|
@@ -55,7 +55,7 @@
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
- <!-- <div v-else class="no-data"><span>无数据</span></div> -->
|
|
|
|
|
|
+ <div v-else class="no-data"><span>无数据</span></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="panel-right" v-if="showRightDetail" :class="{'is-hide': aside_hide}">
|
|
<div class="panel-right" v-if="showRightDetail" :class="{'is-hide': aside_hide}">
|
|
@@ -223,14 +223,14 @@ export default {
|
|
const currentProject = reactive({ id: '', name: '' })
|
|
const currentProject = reactive({ id: '', name: '' })
|
|
const showRightDetail = ref(true)
|
|
const showRightDetail = ref(true)
|
|
watch(()=>currentProject.id, (val)=> {
|
|
watch(()=>currentProject.id, (val)=> {
|
|
- if(+currentYear.value>2021) {
|
|
|
|
|
|
+ if(val===null||+currentYear.value>2022) {
|
|
|
|
+ showRightDetail.value = false
|
|
|
|
+ } else {
|
|
fstjListShow.value = false
|
|
fstjListShow.value = false
|
|
getFstj(val)
|
|
getFstj(val)
|
|
getYjWarning(val)
|
|
getYjWarning(val)
|
|
getBoatNum(val)
|
|
getBoatNum(val)
|
|
showRightDetail.value = true
|
|
showRightDetail.value = true
|
|
- }else {
|
|
|
|
- showRightDetail.value = false
|
|
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
|
|
@@ -240,9 +240,6 @@ export default {
|
|
},{immediate: true})
|
|
},{immediate: true})
|
|
|
|
|
|
function handleChangeYear(item) {
|
|
function handleChangeYear(item) {
|
|
- if(item.TOTAL===0) {
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
currentYear.value = item.YEAR
|
|
currentYear.value = item.YEAR
|
|
}
|
|
}
|
|
|
|
|
|
@@ -278,6 +275,8 @@ export default {
|
|
currentProject.name = res.data.Rows[0].prjName
|
|
currentProject.name = res.data.Rows[0].prjName
|
|
} else {
|
|
} else {
|
|
listData_gcxx.value = []
|
|
listData_gcxx.value = []
|
|
|
|
+ currentProject.id = null
|
|
|
|
+ currentProject.name = null
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -714,17 +713,17 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- // .no-data {
|
|
|
|
- // position: relative;
|
|
|
|
- // height: 36vh;
|
|
|
|
- // span {
|
|
|
|
- // position: absolute;
|
|
|
|
- // top: 40%;
|
|
|
|
- // width: 100%;
|
|
|
|
- // text-align: center;
|
|
|
|
- // font-size: 14px;
|
|
|
|
- // }
|
|
|
|
- // }
|
|
|
|
|
|
+ .no-data {
|
|
|
|
+ position: relative;
|
|
|
|
+ height: 36vh;
|
|
|
|
+ span {
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 40%;
|
|
|
|
+ width: 100%;
|
|
|
|
+ text-align: center;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.pr-b1 {
|
|
.pr-b1 {
|