人员查询按操作员部门筛选
diff --git a/src/main/resources/templates/system/operator.html b/src/main/resources/templates/system/operator.html
index 7ca4912..157dca1 100644
--- a/src/main/resources/templates/system/operator.html
+++ b/src/main/resources/templates/system/operator.html
@@ -639,7 +639,7 @@
                     _self.operatorDiaForm.opercode = ret.operator.opercode;
                     _self.operatorDiaForm.opername = ret.operator.opername;
                     _self.operatorDiaForm.opertype = ret.operator.opertype;
-                    _self.operatorDiaForm.roleid = ret.operatorroleid;
+                    _self.operatorDiaForm.roleid = ret.operator.roleid;
                     _self.operatorDiaForm.mobile = ret.operator.mobile;
                     _self.operatorDiaForm.email = ret.operator.email;
                     _self.operatorDiaForm.realname = ret.operator.realname;
@@ -684,6 +684,10 @@
 
                 var deptlist=[];
                 var depts = ret.depts;
+                deptlist.push({
+                    value:"0",
+                    label:"全部"
+                });
                 for (var k=0;k<depts.length;k++){
                     deptlist.push({
                         value:depts[k]["deptcode"],