Compare commits
4 Commits
proj/zhizh
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
222b254f07 | ||
|
949572c5c3 | ||
|
99cb28eb95 | ||
839972f77a |
@ -22,7 +22,7 @@
|
||||
<a class="navbar-brand" href="#"> <img alt="Brand"
|
||||
src="./img/logo-1.png" style="height: 30px">
|
||||
</a><a class="navbar-brand">数瑞浏览器 </a> <input id="urlInput"
|
||||
type="text" class="form-control" placeholder="输入地址" style="display: none;">
|
||||
type="text" class="form-control" placeho=lder="输入地址" style="display: none;">
|
||||
|
||||
<button class="btn btn-outline-secondary" type="button"
|
||||
onclick="connectNode()" style="display: none;">GO</button>
|
||||
|
@ -826,6 +826,8 @@ function getRequestParameters() {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
function changeRender() {
|
||||
if (global.urlparam["noRender"] === "true") {
|
||||
global.urlparam["noRender"] = undefined;
|
||||
@ -835,4 +837,4 @@ function changeRender() {
|
||||
switchRenderBtn.innerHTML = "加载界面";
|
||||
}
|
||||
changeApp();
|
||||
}
|
||||
}
|
||||
|
@ -49,9 +49,15 @@ var initVue = function () {
|
||||
newKey.id = this.sm2KeyList.length;
|
||||
newKey.title = headerVue.shortName;
|
||||
newKey.sm2Key = this.sm2KeyStr;
|
||||
this.sm2KeyList.push(newKey);
|
||||
var exist = false;
|
||||
for (var i=0;i<this.sm2KeyList.length;i++){
|
||||
var iterKey = this.sm2KeyList[i];
|
||||
if (iterKey.sm2Key==newKey.sm2Key)
|
||||
exist = true;
|
||||
}
|
||||
if (!exist)
|
||||
this.sm2KeyList.push(newKey);
|
||||
localStorage.setItem("PrivKeyList", JSON.stringify(this.sm2KeyList));
|
||||
|
||||
getSession();
|
||||
listProjects("priv");
|
||||
}
|
||||
|
9214
js/jquery-2.1.4.js
vendored
9214
js/jquery-2.1.4.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user