Hua hace 1 mes
padre
commit
7176587fe7

+ 22 - 0
ruoyi-ui/src/views/standardization/modeling/index.vue

@@ -1873,6 +1873,28 @@ onNodeClick(({event, node}) => {
       })
     }
   }
+  if (Array.isArray(tableDataCan.value) && tableDataCan.value.length === 0) {
+    getSerDe(node.data.id).then(res=>{
+        parNodeAll.value.push(res.data)
+        serviceRqtype.value = res.data.ptService.rqtype
+        servieName.value = res.data.ptService.name
+        tableDataCan.value = res.data.list
+        serInfo.value = res.data.ptService
+        parSerList.value = JSON.parse(JSON.stringify(res.data.list))
+        var par1 =  parseJSONWithComments(res.data.ptService.rpcontent)
+        var parShu = Object.keys((par1))
+        console.log(parShu)
+        parShu.forEach(item1=>{
+          var par = {
+            paramCode:item1,
+            paramValue:''
+          }
+          tableDataCanOut.value.push(par)
+        })
+        serviceUrl.value = res.data.ptService.url
+        nodeDeSer.value = true
+      })
+  }
   if(node.data.nodeType==='tool'){
     console.log(node.data.value)
     if(node.data.value==='表输入组件'){

+ 1 - 1
ruoyi-ui/src/views/standardization/resultsPresentation/index.vue

@@ -76,7 +76,7 @@
               </div>
               <div style="width: 100%;height: 100%;" @click="jumpPage(`/standardization/map/${item.appId}`)">
                 <div class="knowledge_library_item_icon">
-                  <img :src="item.appIcon" class="icon_item_img" alt=""/>
+                  <!-- <img :src="item.appIcon" class="icon_item_img" alt=""/> -->
                 </div>
                 <div class="knowledge_library_item_name">{{ item.appTitle }}</div>
                 <div class="knowledge_library_item_desc">{{ item.appNote }}</div>