Compare commits

...

3 Commits

Author SHA1 Message Date
CaiHQ
222b254f07 fix duplicate import pubkey 2022-12-13 10:38:24 +08:00
CaiHQ
949572c5c3 optimize: use jquery 2.1.4.min
refactor: DOA Contract
update: use doip sdk 1.0.2
2021-12-22 22:07:51 +08:00
CaiHQ
99cb28eb95 fix typo 2021-11-02 17:19:35 +08:00
3 changed files with 13 additions and 9214 deletions

View File

@ -826,7 +826,6 @@ function getRequestParameters() {
}
}
function
function changeRender() {
@ -838,4 +837,4 @@ function changeRender() {
switchRenderBtn.innerHTML = "加载界面";
}
changeApp();
}
}

View File

@ -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

File diff suppressed because one or more lines are too long