dolphin-weex-ui 2.1.1 → 2.1.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # 升级日志
2
2
 
3
+ ## 2.1.2
4
+
5
+ - [ ! ] 优化dof-overlay组件点击蒙层自动关闭问题
6
+ - [ ! ] date: 2024/04/23
7
+
3
8
  ## 2.1.1
4
9
 
5
10
  - [ ! ] 优化dof-popup组件点击蒙层自动关闭问题
@@ -30718,6 +30718,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
30718
30718
  //
30719
30719
  //
30720
30720
  //
30721
+ //
30721
30722
 
30722
30723
  var animation = weex.requireModule('animation');
30723
30724
  var platform = weex.config.env.platform;
@@ -30791,7 +30792,8 @@ exports.default = {
30791
30792
  haveOverlay: true,
30792
30793
  isOverShow: true,
30793
30794
  bottomArc: 0,
30794
- show_: false
30795
+ show_: false,
30796
+ overlayShow: false
30795
30797
  };
30796
30798
  },
30797
30799
  computed: {
@@ -30880,6 +30882,7 @@ exports.default = {
30880
30882
  var _this2 = this;
30881
30883
 
30882
30884
  if (val) {
30885
+ this.overlayShow = true;
30883
30886
  setTimeout(function () {
30884
30887
  _this2.show_ = true;
30885
30888
  }, 0);
@@ -30887,7 +30890,8 @@ exports.default = {
30887
30890
  this.appearPopup(false, 300, function () {});
30888
30891
  setTimeout(function () {
30889
30892
  _this2.show_ = false;
30890
- }, 0);
30893
+ _this2.overlayShow = false;
30894
+ }, 400);
30891
30895
  }
30892
30896
  },
30893
30897
 
@@ -49538,7 +49542,8 @@ module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c
49538
49542
  }, [_c('dof-overlay', _vm._b({
49539
49543
  ref: "overlay",
49540
49544
  attrs: {
49541
- "show": _vm.show
49545
+ "show": _vm.overlayShow,
49546
+ "canAutoClose": _vm.isOverLayClickHide
49542
49547
  },
49543
49548
  on: {
49544
49549
  "dofOverlayBodyClicked": _vm.dofOverlayBodyClicking