提交 829b98bc 编写于 作者: zhentian.jia's avatar zhentian.jia

新建项目传0

上级 00fb9daa
...@@ -1464,7 +1464,11 @@ export default { ...@@ -1464,7 +1464,11 @@ export default {
//查询组件证书信息 //查询组件证书信息
getComponentInfo() { getComponentInfo() {
let param = {}; let param = {};
vm.GET("portal/portalInfo/getComponentInfo/" + vm.projectId, param).then(res => { let projectIdValue = vm.projectId;
if(projectIdValue == null) {
projectIdValue = 0;
}
vm.GET("portal/portalInfo/getComponentInfo/" + projectIdValue, param).then(res => {
if (res.code == "000000") { if (res.code == "000000") {
//console.log(res); //console.log(res);
let componentList = res.data.componentList; let componentList = res.data.componentList;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册