Commit 50353298 authored by tywldx's avatar tywldx

f

parent 6bff3b49
...@@ -105,9 +105,10 @@ function getProjectConfigPromise () { ...@@ -105,9 +105,10 @@ function getProjectConfigPromise () {
hosts["xyqb-ui--xjd-ui"] = pro["host_name"]; hosts["xyqb-ui--xjd-ui"] = pro["host_name"];
}else if(pro["project_name"] == "new-paycenter-ui"){ }else if(pro["project_name"] == "new-paycenter-ui"){
hosts["paycenter-ui--new-paycenter-ui"] = pro["host_name"]; hosts["paycenter-ui--new-paycenter-ui"] = pro["host_name"];
}else if(pro["project_name"] == "new-spider-center-ui"){
hosts["spider-center-ui--new-spider-center-ui"] = pro["host_name"];
} }
// else if(pro["project_name"] == "new-spider-center-ui"){
// hosts["spider-center-ui--new-spider-center-ui"] = pro["host_name"];
// }
let temp = { let temp = {
project_group: "", project_group: "",
...@@ -244,17 +245,20 @@ function getfrontendbackend(pros){ ...@@ -244,17 +245,20 @@ function getfrontendbackend(pros){
for(let key of keys){ for(let key of keys){
let pro = pros[key] let pro = pros[key]
if(pro.type == "ui"){ if(pro.type == "ui"){
if(pro.name != "xyqb-ui" && pro.name != "paycenter-ui" && pro.name != "spider-center-ui" ){ // && pro.name != "spider-center-ui"
if(pro.name != "xyqb-ui" && pro.name != "paycenter-ui" ){
if(pro.name == "xjd-ui"){ if(pro.name == "xjd-ui"){
temp.frontend.push("xyqb-ui--xjd-ui"); temp.frontend.push("xyqb-ui--xjd-ui");
temp[pro.type].push("xyqb-ui--xjd-ui") temp[pro.type].push("xyqb-ui--xjd-ui")
}else if(pro.name == "new-paycenter-ui"){ }else if(pro.name == "new-paycenter-ui"){
temp.frontend.push("paycenter-ui--new-paycenter-ui"); temp.frontend.push("paycenter-ui--new-paycenter-ui");
temp[pro.type].push("paycenter-ui--new-paycenter-ui") temp[pro.type].push("paycenter-ui--new-paycenter-ui")
}else if(pro.name == "new-spider-center-ui"){ }
temp.frontend.push("spider-center-ui--new-spider-center-ui"); // else if(pro.name == "new-spider-center-ui"){
temp[pro.type].push("spider-center-ui--new-spider-center-ui") // temp.frontend.push("spider-center-ui--new-spider-center-ui");
}else{ // temp[pro.type].push("spider-center-ui--new-spider-center-ui")
// }
else{
temp.frontend.push(pro.name); temp.frontend.push(pro.name);
temp[pro.type].push(pro.name) temp[pro.type].push(pro.name)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment