ps-toolkit-ui 0.0.61 → 0.0.62

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.
@@ -5106,6 +5106,13 @@
5106
5106
  return c.length > 0 ? c[0] : null;
5107
5107
  };
5108
5108
  PermissionClass.prototype.getUrl = function () {
5109
+ console.log(this.Area, 'Area');
5110
+ console.log(this.Controller, 'Controller');
5111
+ console.log(this.RelatedId, 'RelatedId');
5112
+ console.log(this.Action, 'Action');
5113
+ console.log((this.Area ? '/' + this.Area : '') + '/' + this.Controller + '/' +
5114
+ (this.RelatedId ? this.RelatedId + "/" : '') +
5115
+ (this.Action ? this.Action : ''));
5109
5116
  return (this.Area ? '/' + this.Area : '') + '/' + this.Controller + '/' +
5110
5117
  (this.RelatedId ? this.RelatedId + "/" : '') +
5111
5118
  (this.Action ? this.Action : '');