fantasy-ngzorro 1.1.36 → 1.1.38

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.
@@ -3571,6 +3571,8 @@
3571
3571
  */
3572
3572
  function () {
3573
3573
  var _this = this;
3574
+ console.log('local', location);
3575
+ console.log('window', window);
3574
3576
  this.userSession = this.commonSessionService.getSession('__jy_authorization_session__');
3575
3577
  // 用于开发环境调试
3576
3578
  if (!this.userSession) {
@@ -3923,10 +3925,8 @@
3923
3925
  * @return {?}
3924
3926
  */
3925
3927
  function (event) {
3926
- console.log('event', event);
3927
3928
  // 勾选只有在hideListNodes,取消勾选只有在nowListNodes
3928
3929
  if (event.node.origin.checked) {
3929
- console.log('走到了勾选');
3930
3930
  /** @type {?} */
3931
3931
  var node = new TreeGrid();
3932
3932
  node = this.hideListNodes.find((/**
@@ -3973,7 +3973,6 @@
3973
3973
  // if (this.hideListNodes.length === 0 && this.tableCacheOption && this.tableCacheOption.cols) {
3974
3974
  // this.hideListNodes = this.getHideListNodes();
3975
3975
  // }
3976
- console.log('走到非勾选逻辑');
3977
3976
  /** @type {?} */
3978
3977
  var temporaryNodeList_1 = this.hideListNodes.slice(0);
3979
3978
  this.nowListNodes.forEach((/**
@@ -4084,7 +4083,6 @@
4084
4083
  // 缓存一下表格的数据
4085
4084
  this.tableColsCache = __spread(this.tableCols);
4086
4085
  }
4087
- console.log('this.tableCols', this.tableCols);
4088
4086
  };
4089
4087
  /**
4090
4088
  * @return {?}
@@ -4123,8 +4121,6 @@
4123
4121
  */
4124
4122
  function (_a, col) {
4125
4123
  var width = _a.width;
4126
- console.log('width', width);
4127
- console.log('col', col);
4128
4124
  /** @type {?} */
4129
4125
  var tempWidth = 0;
4130
4126
  if (width > col.minWidth) {
@@ -4133,7 +4129,6 @@
4133
4129
  else {
4134
4130
  tempWidth = col.minWidth;
4135
4131
  }
4136
- console.log('tempWidth', tempWidth);
4137
4132
  this.tableCacheOption.colWidths.set(col.title, tempWidth);
4138
4133
  this.saveTableCacheOption();
4139
4134
  this.tableCols = this.tableCols.map((/**