9d14d5af by 杨威

权利人表单双击判断是否临时数据

1 parent afa8413f
...@@ -564,12 +564,14 @@ ...@@ -564,12 +564,14 @@
564 564
565 //行双击事件 565 //行双击事件
566 rowDbclick(row){ 566 rowDbclick(row){
567 if (+this.qszt == 0) {
567 this.dialogVisible = true; 568 this.dialogVisible = true;
568 this.update=true; 569 this.update=true;
569 this.formData=row; 570 this.formData=row;
570 if(row.frList.length>0){ 571 if(row.frList.length>0){
571 this.formData.fr=row.frList[0]; 572 this.formData.fr=row.frList[0];
572 } 573 }
574 }
573 }, 575 },
574 576
575 // inputBlur(e){ 577 // inputBlur(e){
......