提交 10ef7170 编写于 作者: U unknown

[流程管理]修复选人时可能出现两次人员选择界面的问题

上级 cc80c068
......@@ -25,9 +25,10 @@ MWF.xApplication.cms.Xform.Readerfield = MWF.CMSReaderfield = new Class({
setDescriptionEvent: function(){
if (this.descriptionNode){
this.descriptionNode.addEvents({
"mousedown": function(){
"mousedown": function(ev){
this.descriptionNode.setStyle("display", "none");
this.clickSelect();
ev.stopPropagation();
}.bind(this)
});
}
......
......@@ -48,9 +48,10 @@ MWF.xApplication.process.Xform.Org = MWF.APPOrg = new Class({
setDescriptionEvent: function(){
if (this.descriptionNode){
this.descriptionNode.addEvents({
"mousedown": function(){
"mousedown": function( ev ){
this.descriptionNode.setStyle("display", "none");
this.clickSelect();
ev.stopPropagation();
}.bind(this)
});
}
......
......@@ -25,9 +25,10 @@ MWF.xApplication.process.Xform.Orgfield = MWF.APPOrgfield = new Class({
setDescriptionEvent: function(){
if (this.descriptionNode){
this.descriptionNode.addEvents({
"mousedown": function(){
"mousedown": function( ev ){
this.descriptionNode.setStyle("display", "none");
this.clickSelect();
ev.stopPropagation();
}.bind(this)
});
}
......
......@@ -48,9 +48,10 @@ MWF.xApplication.process.Xform.Personfield = MWF.APPPersonfield = new Class({
setDescriptionEvent: function(){
if (this.descriptionNode){
this.descriptionNode.addEvents({
"mousedown": function(){
"mousedown": function( ev ){
this.descriptionNode.setStyle("display", "none");
this.clickSelect();
ev.stopPropagation();
}.bind(this)
});
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册