gr před 1 rokem
rodič
revize
e937a4418e

+ 18 - 19
src/views/hdsj/Index.vue

@@ -33,7 +33,7 @@
           </li>
         </ul>
         <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)">
             <img :src="require('@/assets/imgs/page_hdsj/icon-gcxx.png')" alt="">
             <div>
@@ -55,7 +55,7 @@
             </div>
           </li>
         </ul>
-        <!-- <div v-else class="no-data"><span>无数据</span></div> -->
+        <div v-else class="no-data"><span>无数据</span></div>
       </div>
     </div>
     <div class="panel-right" v-if="showRightDetail" :class="{'is-hide': aside_hide}">
@@ -223,14 +223,14 @@ export default {
   const currentProject = reactive({ id: '', name: '' })
   const showRightDetail = ref(true)
   watch(()=>currentProject.id, (val)=> {
-    if(+currentYear.value>2021) {
+    if(val===null||+currentYear.value>2022) {
+      showRightDetail.value = false
+    } else {
       fstjListShow.value = false
       getFstj(val)
       getYjWarning(val)
       getBoatNum(val)
       showRightDetail.value = true
-    }else {
-      showRightDetail.value = false
     }
   })
 
@@ -240,9 +240,6 @@ export default {
   },{immediate: true})
 
   function handleChangeYear(item) {
-    if(item.TOTAL===0) {
-      return
-    }
     currentYear.value = item.YEAR
   }
   
@@ -278,6 +275,8 @@ export default {
         currentProject.name = res.data.Rows[0].prjName
       } else {
         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 {

+ 0 - 1
src/views/home/Header.vue

@@ -25,7 +25,6 @@
               <span>{{date}}</span>
             </div>
             <i class="weather" :class="weather" @click="toggleScene"></i>
-            
           </div>
         </div>
       </div>

+ 10 - 4
src/views/jtaq/Index.vue

@@ -466,10 +466,16 @@ export default {
       display: flex;
       justify-content: space-between;
       align-items: center;
-      padding: 0 50px 0 10px;
-      &>span {
-        font-size: 14px;
-        color: #D9EAF5;
+      padding: 0 40px 0 10px;
+      &>span:not(:nth-child(2)) {
+        font-size: 16px;
+        font-weight: bold;
+        font-style: italic;
+        color: transparent;
+        text-shadow: 0px 0px 5px rgba($color: #9EC7FF, $alpha: 0.3);
+        background: linear-gradient(0deg, #6FC2FF 0%, #CCDAE6 35%, #FFFFFF 60%);
+        -webkit-background-clip: text;
+        padding-right: 10px;
       }
       span:nth-child(2) {
         flex: 1;

+ 4 - 1
src/views/jtaq/cpns/KeyBoatList.vue

@@ -36,6 +36,9 @@ export default {
 
   function handleClick(item) {
     ueCallPositionByType('boat',item.mmsi)
+    setTimeout(() => {
+      handleClose()
+    }, 100);
   }
 
   const emit = defineEmits(['closeBoatList'])
@@ -58,7 +61,7 @@ export default {
   box-sizing: border-box;
   padding: 20px;
   width: 393px;
-  height: 700px;
+  height: 615px;
   overflow: hidden;
   background: url('@/assets/imgs/page_ssky/bg-popup.png') no-repeat;
   background-size: 100% 100%;