18 lines
498 B
JavaScript
18 lines
498 B
JavaScript
|
|
function openSystem(id) {
|
||
|
|
let username=localStorage.getItem("public_username");
|
||
|
|
let token=localStorage.getItem("public_token");
|
||
|
|
let url=web_url+contentPath;
|
||
|
|
if(id==='1'){
|
||
|
|
window.open(url+'smz-web/lodingIndex.html?token='+username,'smz_html');
|
||
|
|
}else if(id==='2'){
|
||
|
|
window.open('','smz_web_html')
|
||
|
|
}else if(id==='3'){
|
||
|
|
window.open('','smz_web_html')
|
||
|
|
}else if(id==='4'){
|
||
|
|
window.open('','smz_web_html')
|
||
|
|
}else if(id==='5'){
|
||
|
|
window.open('','smz_web_html')
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
}
|