-
暂无报警数据
+
+
+
暂无报警数据
+
+
-
-
- {{
- item.createTime
- }}
- {{
- item.siteName
- }}
- {{ item.warnTypeDesc }}
-
+
+ {{
+ item.createTime
+ }}
+ {{
+ item.siteName
+ }}
+ {{ item.warnTypeDesc }}
+
+
+
+
@@ -1145,7 +1150,7 @@
this.loadQuyuPaiMing();
this.$nextTick(function() {
- this.timer = setInterval(this.ScrollUp, 50);
+ this.timer = setInterval(this.ScrollUp, 100);
});
// 默认从本地session srotage里面读取历史搜索记录ZZJ
this.getItem();
diff --git a/src/components/sys/user.vue b/src/components/sys/user.vue
index 1e908f5..896ba3f 100644
--- a/src/components/sys/user.vue
+++ b/src/components/sys/user.vue
@@ -223,6 +223,25 @@
this.resetForm();
this.dialogInfo.btLoading = false;
}
+ },
+ "dialogInfo.type"(val) {
+ let formInfo = this.formInfo;
+ switch(val) {
+ case "update":
+ for(let item of formInfo.fieldList) {
+ if(item.value === "login") {
+ item.disabled = true;
+ }
+ }
+ break;
+ case "AddUser":
+ for(let item of formInfo.fieldList) {
+ if(item.value === "login") {
+ item.disabled = false;
+ }
+ }
+ break;
+ }
}
},
methods: {