|
@@ -130,11 +130,12 @@ const handleView = async (item: Item) => {
|
|
|
if (item.label === "设备管理系统 (PMS)") {
|
|
if (item.label === "设备管理系统 (PMS)") {
|
|
|
if (userStore.getUser.username && getAccessToken()) {
|
|
if (userStore.getUser.username && getAccessToken()) {
|
|
|
window.open(
|
|
window.open(
|
|
|
- "http://localhost:8080?sso=1&&username=" + userStore.getUser.username,
|
|
|
|
|
|
|
+ "https://iot.deepoil.cc/portalLogin?username=" +
|
|
|
|
|
+ userStore.getUser.username,
|
|
|
"_blank"
|
|
"_blank"
|
|
|
);
|
|
);
|
|
|
} else {
|
|
} else {
|
|
|
- window.open("http://localhost:8080", "_blank");
|
|
|
|
|
|
|
+ window.open("https://iot.deepoil.cc", "_blank");
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
if (item.label === "中航北斗智慧管理系统") {
|
|
if (item.label === "中航北斗智慧管理系统") {
|
|
@@ -143,6 +144,10 @@ const handleView = async (item: Item) => {
|
|
|
if (item.label === "客户管理(CRM)") {
|
|
if (item.label === "客户管理(CRM)") {
|
|
|
window.open("https://www.xiaoshouyi.com/sfa", "_blank");
|
|
window.open("https://www.xiaoshouyi.com/sfa", "_blank");
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ if (item.label === "智能连油系统") {
|
|
|
|
|
+ window.open("https://iot.deepoil.cc", "_blank");
|
|
|
|
|
+ }
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|