diff --git a/bdwareclient.html b/bdwareclient.html
index 64fee77..1061b14 100644
--- a/bdwareclient.html
+++ b/bdwareclient.html
@@ -1,165 +1,182 @@
-
-
-数瑞客户端
+
+
+ 数瑞客户端
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
-
-
- 我的权限:{{myRole}}
-
-
+
+
+ 我的权限:{{myRole}}
+
+
-
+
-
-
+
+
-
+
-
-
+
+
+
\ No newline at end of file
diff --git a/js/bdwareclient.js b/js/bdwareclient.js
index 70cff1d..d4650ae 100644
--- a/js/bdwareclient.js
+++ b/js/bdwareclient.js
@@ -601,6 +601,7 @@ function renewList() {
for (let i = 0; i < global.contracts.length; ++i) {
const c = global.contracts[i];
console.log(c);
+ if (c.contractStatus=="KILLED") continue;
if (!c.id) {
c.id = c.contractID;
}
diff --git a/js/commonutil.js b/js/commonutil.js
index 0a51cbf..70caca0 100644
--- a/js/commonutil.js
+++ b/js/commonutil.js
@@ -193,9 +193,11 @@ var initGlobal = function (urlParams) {
global.isBaaS = true
primaryColor = '#08263a'
}
+ if (urlParams){
+ global.urlparam = urlParams;
+ }
if (urlParams && urlParams.keys) {
- global.urlparam = urlParams;
- global.sm2Key = urlParams.keys
+ global.sm2Key = urlParams.keys;
} else {
global.sm2Key = localStorage.getItem("PrivKey");
if (!global.sm2Key || global.sm2Key.length < 100) {