|
@@ -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
|
|
|
}
|
|
|
})
|
|
|
}
|