|
@@ -355,7 +355,7 @@ const getSearchNodeTables = async () => {
|
|
|
|
|
|
}
|
|
|
const getSearchNodeTablesall = async (type) => {
|
|
|
-
|
|
|
+ orgAlllistData.value=[]
|
|
|
const { error, code, data } = await dataApi.searchNodeTables({
|
|
|
id: dataId.length>0?dataId:nodeIdvalue.value,
|
|
|
projectId: projectId.value,
|
|
@@ -423,9 +423,11 @@ const getTableDataAll = () => {
|
|
|
const changeorinsdate=(pKeyId,isBussShow)=>{
|
|
|
orgAlllistData.value.forEach((item)=>{
|
|
|
if (item.pKeyId===pKeyId) {
|
|
|
- item.isBussShow=isBussShow
|
|
|
+ const isBussShows = isBussShow === 2 ? 1 : 2 //状态(1显示 2隐藏)
|
|
|
+ item.isBussShow=isBussShows
|
|
|
}
|
|
|
})
|
|
|
+ console.log( orgAlllistData.value,' orgAlllistData.value');
|
|
|
}
|
|
|
//设置滚动条位置
|
|
|
const ListItemScrollRef = ref(null)
|