gr 1 yıl önce
ebeveyn
işleme
eaa10e7c6c
1 değiştirilmiş dosya ile 7 ekleme ve 2 silme
  1. 7 2
      src/views/hdsj/Index.vue

+ 7 - 2
src/views/hdsj/Index.vue

@@ -218,12 +218,14 @@ export default {
   function handleChangeProject(item) {
     currentProject.id = item.id
     currentProject.name = item.prjName
+    currentProject.status = item.status
   }
 
-  const currentProject = reactive({ id: '', name: '' })
+  const currentProject = reactive({ id: '', name: '', status: '' })
   const showRightDetail = ref(true)
   watch(()=>currentProject.id, (val)=> {
-    if(val===null||+currentYear.value>2022) {
+    // if(val===null||+currentYear.value>2022) {
+    if(val===null||currentProject.status==='未进行') {
       showRightDetail.value = false
     } else {
       fstjListShow.value = false
@@ -273,10 +275,13 @@ export default {
         })
         currentProject.id = res.data.Rows[0].id
         currentProject.name = res.data.Rows[0].prjName
+        currentProject.status = listData_gcxx.value[0].status
+
       } else {
         listData_gcxx.value = []
         currentProject.id = null
         currentProject.name = null
+        currentProject.status = null
       }
     })
   }