easy3wui 1.5.49-beta8 → 1.5.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -617,7 +617,8 @@ var _initialiseProps = function _initialiseProps() {
|
|
|
617
617
|
return strDesensitize;
|
|
618
618
|
};
|
|
619
619
|
|
|
620
|
-
this.getImplicit = function (dataIndex, index) {
|
|
620
|
+
this.getImplicit = function (event, dataIndex, index) {
|
|
621
|
+
event.stopPropagation(); // 禁止事件冒泡
|
|
621
622
|
var arrData = _this3.state.arrData;
|
|
622
623
|
|
|
623
624
|
if (_comonConfig.dataDesensitizationUrl) {
|
|
@@ -655,6 +656,7 @@ var _initialiseProps = function _initialiseProps() {
|
|
|
655
656
|
arrData: arrData // 更新数据
|
|
656
657
|
});
|
|
657
658
|
}
|
|
659
|
+
// return false;
|
|
658
660
|
};
|
|
659
661
|
|
|
660
662
|
this.touchCreateColumns = function (columns) {
|
|
@@ -732,8 +734,8 @@ var _initialiseProps = function _initialiseProps() {
|
|
|
732
734
|
' ',
|
|
733
735
|
_react2['default'].createElement(
|
|
734
736
|
'a',
|
|
735
|
-
{ onClick: function onClick() {
|
|
736
|
-
return _this3.getImplicit(dataIndex, index);
|
|
737
|
+
{ onClick: function onClick(e) {
|
|
738
|
+
return _this3.getImplicit(e, dataIndex, index);
|
|
737
739
|
} },
|
|
738
740
|
_react2['default'].createElement(_icon2['default'], { type: arrData.length && arrData[index][dataIndex + '-dataDesensitizationEyeFlag'] ? 'eye' : 'eye-invisible' })
|
|
739
741
|
)
|
|
@@ -745,8 +747,8 @@ var _initialiseProps = function _initialiseProps() {
|
|
|
745
747
|
' ',
|
|
746
748
|
_react2['default'].createElement(
|
|
747
749
|
'a',
|
|
748
|
-
{ onClick: function onClick() {
|
|
749
|
-
return _this3.getImplicit(dataIndex, index);
|
|
750
|
+
{ onClick: function onClick(e) {
|
|
751
|
+
return _this3.getImplicit(e, dataIndex, index);
|
|
750
752
|
} },
|
|
751
753
|
_react2['default'].createElement(_icon2['default'], { type: arrData.length && arrData[index][dataIndex + '-dataDesensitizationEyeFlag'] ? 'eye' : 'eye-invisible' })
|
|
752
754
|
)
|
|
@@ -760,8 +762,8 @@ var _initialiseProps = function _initialiseProps() {
|
|
|
760
762
|
' ',
|
|
761
763
|
_react2['default'].createElement(
|
|
762
764
|
'a',
|
|
763
|
-
{ onClick: function onClick() {
|
|
764
|
-
return _this3.getImplicit(dataIndex, index);
|
|
765
|
+
{ onClick: function onClick(e) {
|
|
766
|
+
return _this3.getImplicit(e, dataIndex, index);
|
|
765
767
|
} },
|
|
766
768
|
_react2['default'].createElement(_icon2['default'], { type: arrData.length && arrData[index][dataIndex + '-dataDesensitizationEyeFlag'] ? 'eye' : 'eye-invisible' })
|
|
767
769
|
)
|