bbj-screen-widget 2.4.66 → 2.4.67

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.
@@ -14577,6 +14577,7 @@
14577
14577
  'sc-wind-layer',
14578
14578
  'sc-typhoon-area-layer',
14579
14579
  'sc-baidu-fence',
14580
+ 'sc-baidu-lushu',
14580
14581
  ],
14581
14582
  description: 'hasChildItem',
14582
14583
  }),
@@ -16128,8 +16129,11 @@
16128
16129
  var ɵ0$c = { type: 'string', title: 'ID' };
16129
16130
  exports.ɵde = /** @class */ (function (_super_1) {
16130
16131
  __extends(BaiduFenceComponent, _super_1);
16131
- function BaiduFenceComponent() {
16132
- var _this = _super_1.apply(this, __spread(arguments)) || this;
16132
+ function BaiduFenceComponent(parent, zone, message) {
16133
+ var _this = _super_1.call(this, parent, zone) || this;
16134
+ _this.parent = parent;
16135
+ _this.zone = zone;
16136
+ _this.message = message;
16133
16137
  // @Property('标签字体', { ui: { widget: 'myFont', visibleIf: { showLabel: [true] } } })
16134
16138
  // textFont: any = {
16135
16139
  // family: '',
@@ -16146,11 +16150,13 @@
16146
16150
  _this.data = [
16147
16151
  {
16148
16152
  // name: '多边形',
16153
+ id: '1',
16149
16154
  type: 'polygon',
16150
16155
  lnglat: '120.7,28;120.8,28;120.8,27.9;120.7,27.9',
16151
16156
  },
16152
16157
  {
16153
16158
  // name: '圆形',
16159
+ id: '2',
16154
16160
  type: 'circle',
16155
16161
  lnglat: '120.6,27.9',
16156
16162
  radius: 5000,
@@ -16167,8 +16173,15 @@
16167
16173
  });
16168
16174
  return __awaiter(this, void 0, void 0, function () {
16169
16175
  return __generator(this, function (_b) {
16170
- _super.ngOnInit.call(this);
16171
- return [2 /*return*/];
16176
+ switch (_b.label) {
16177
+ case 0:
16178
+ _super.ngOnInit.call(this);
16179
+ return [4 /*yield*/, this.parent.init$];
16180
+ case 1:
16181
+ _b.sent();
16182
+ this.initSearch();
16183
+ return [2 /*return*/];
16184
+ }
16172
16185
  });
16173
16186
  });
16174
16187
  };
@@ -16198,27 +16211,6 @@
16198
16211
  if (!r.radius || !r.lnglat) {
16199
16212
  return;
16200
16213
  }
16201
- // const radius = (r.radius * 180) / EARTH_RADIUS / Math.PI;
16202
- // // let radius = cradius / 90;
16203
- // let pointNum = 90;
16204
- // let startAngle = 0;
16205
- // let endAngle = Math.PI * 2;
16206
- // let points = [];
16207
- // const lnglat = r.lnglat.split(',');
16208
- // const lng = +lnglat[0];
16209
- // const lat = +lnglat[1];
16210
- // for (var i = 0; i <= pointNum; i++) {
16211
- // const angle = startAngle + ((endAngle - startAngle) * i) / pointNum;
16212
- // const x = lng + (radius * Math.cos(angle)) / Math.abs(Math.cos((lat * Math.PI) / 180));
16213
- // const y = lat + radius * Math.sin(angle);
16214
- // points.push([x, y]);
16215
- // }
16216
- // data.push({
16217
- // geometry: {
16218
- // type: 'Polygon',
16219
- // coordinates: [points],
16220
- // },
16221
- // });
16222
16214
  var pointsCount = 90;
16223
16215
  var radius = r.radius;
16224
16216
  var lnglat = r.lnglat.split(',');
@@ -16252,14 +16244,18 @@
16252
16244
  if (!r.lnglat) {
16253
16245
  return;
16254
16246
  }
16255
- var coordinates = r.lnglat.split(';').map(function (r) {
16247
+ // const coordinates = r.lnglat.split(';').map((r) => {
16248
+ // const lnglat = r.split(',');
16249
+ // return [+lnglat[0], +lnglat[1]];
16250
+ // });
16251
+ var coordinates = r.lnglat.split('\n').map(function (r) { return r.split(';').map(function (r) {
16256
16252
  var lnglat = r.split(',');
16257
16253
  return [+lnglat[0], +lnglat[1]];
16258
- });
16254
+ }); });
16259
16255
  data.push({
16260
16256
  geometry: {
16261
16257
  type: 'Polygon',
16262
- coordinates: [coordinates],
16258
+ coordinates: coordinates,
16263
16259
  },
16264
16260
  });
16265
16261
  }
@@ -16287,20 +16283,40 @@
16287
16283
  lnglat: lnglat.lng + "," + lnglat.lat,
16288
16284
  radius: radius,
16289
16285
  };
16286
+ // this.tempOverlay.forEach((r) => {
16287
+ // this.parent.map.removeOverlay(r);
16288
+ // });
16290
16289
  _this.create.emit(data);
16290
+ _this.editOverlay = null;
16291
16291
  }
16292
16292
  else {
16293
16293
  var points = e.target.overlay.getPoints();
16294
16294
  if (!_this.data) {
16295
16295
  _this.data = [];
16296
16296
  }
16297
- var data = {
16298
- type: 'polygon',
16299
- lnglat: points.map(function (p) { return p.latLng.lng + "," + p.latLng.lat; }).join(';'),
16300
- };
16297
+ var data = void 0;
16298
+ if (points.length && Array.isArray(points[0])) {
16299
+ data = {
16300
+ type: 'polygon',
16301
+ lnglat: points.map(function (ps) { return ps.map(function (p) { return p.latLng.lng + "," + p.latLng.lat; }).join(';'); }).join('\n'),
16302
+ };
16303
+ }
16304
+ else {
16305
+ data = {
16306
+ type: 'polygon',
16307
+ lnglat: points.map(function (p) { return p.latLng.lng + "," + p.latLng.lat; }).join(';'),
16308
+ };
16309
+ }
16301
16310
  _this.create.emit(data);
16302
16311
  }
16303
16312
  });
16313
+ this.scene.addEventListener(OperateEventType.CANCEL, function (e) {
16314
+ console.log(e);
16315
+ if (_this.editOverlay) {
16316
+ _this.parent.map.removeOverlay(_this.editOverlay);
16317
+ _this.editOverlay = null;
16318
+ }
16319
+ });
16304
16320
  }
16305
16321
  switch (type) {
16306
16322
  case 'polygon':
@@ -16349,6 +16365,13 @@
16349
16365
  });
16350
16366
  });
16351
16367
  };
16368
+ BaiduFenceComponent.prototype.getOptions = function () {
16369
+ return {
16370
+ fillColor: this.fillColor,
16371
+ strokeWeight: this.lineWidth,
16372
+ strokeColor: this.lineColor,
16373
+ };
16374
+ };
16352
16375
  BaiduFenceComponent.prototype.updateEditData = function () {
16353
16376
  if (this.editLayer) {
16354
16377
  this.editLayer.setData(this.editData.map(function (r) { return ({ geometry: { type: 'Point', coordinates: r } }); }));
@@ -16391,25 +16414,138 @@
16391
16414
  // this.editData = null;
16392
16415
  };
16393
16416
  BaiduFenceComponent.prototype.search = function () {
16394
- if (!this.searchText) {
16395
- }
16396
- var local = new BMapGL.LocalSearch(this.parent.map, {
16397
- //智能搜索
16398
- onSearchComplete: function (res) {
16399
- console.log(res, local);
16400
- },
16417
+ return __awaiter(this, void 0, void 0, function () {
16418
+ var PolygonEdit, boundary;
16419
+ var _this = this;
16420
+ return __generator(this, function (_b) {
16421
+ switch (_b.label) {
16422
+ case 0: return [4 /*yield*/, import('bmap-draw')];
16423
+ case 1:
16424
+ PolygonEdit = (_b.sent()).PolygonEdit;
16425
+ if (this.areaName) {
16426
+ boundary = new BMapGL.Boundary();
16427
+ // 百度地图 Geocoder.getLocation 回调签名:(results, status)
16428
+ boundary.get(this.areaName, function (results) {
16429
+ console.log('边界坐标数组:', results);
16430
+ // 检查状态是否成功
16431
+ if (results && results.boundaries && results.boundaries.length) {
16432
+ _this.stopDraw();
16433
+ if (!_this.polygonEdit) {
16434
+ _this.polygonEdit = new PolygonEdit(_this.scene);
16435
+ }
16436
+ var points = results.boundaries.map(function (boundary) { return boundary.split(';').map(function (p) {
16437
+ var _b = __read(p.split(','), 2), lng = _b[0], lat = _b[1];
16438
+ return new BMapGL.Point(Number(lng), Number(lat));
16439
+ }); });
16440
+ var overlay = new BMapGL.Polygon(points, _this.getOptions());
16441
+ console.log(overlay);
16442
+ _this.editOverlay = overlay;
16443
+ _this.parent.map.addOverlay(overlay);
16444
+ _this.parent.map.setViewport([].concat.apply([], points));
16445
+ _this.polygonEdit.edit(overlay);
16446
+ }
16447
+ else {
16448
+ _this.message.error('行政区域不存在');
16449
+ }
16450
+ });
16451
+ }
16452
+ return [2 /*return*/];
16453
+ }
16454
+ });
16401
16455
  });
16402
- local.search(this.searchText);
16456
+ };
16457
+ BaiduFenceComponent.prototype.initSearch = function () {
16458
+ return __awaiter(this, void 0, void 0, function () {
16459
+ var _b, PolygonEdit, CircleEdit, ac;
16460
+ var _this = this;
16461
+ return __generator(this, function (_c) {
16462
+ switch (_c.label) {
16463
+ case 0: return [4 /*yield*/, import('bmap-draw')];
16464
+ case 1:
16465
+ _b = _c.sent(), PolygonEdit = _b.PolygonEdit, CircleEdit = _b.CircleEdit;
16466
+ ac = new BMapGL.Autocomplete({
16467
+ input: this.suggest.nativeElement,
16468
+ location: this.parent.map,
16469
+ });
16470
+ ac.addEventListener('onconfirm', function (e) {
16471
+ // 鼠标点击下拉列表后的事件
16472
+ var value = e.item.value;
16473
+ console.log(e);
16474
+ // 如果正在绘制圆形围栏
16475
+ if (_this.circle) {
16476
+ if (!_this.circleEdit) {
16477
+ _this.circleEdit = new CircleEdit(_this.scene);
16478
+ }
16479
+ var center = new BMapGL.Point(value.location.lng, value.location.lat);
16480
+ _this.parent.map.centerAndZoom(center, 16);
16481
+ var overlay = new BMapGL.Circle(center, 300, _this.getOptions());
16482
+ _this.editOverlay = overlay;
16483
+ _this.parent.map.addOverlay(overlay);
16484
+ _this.circleEdit.open(overlay);
16485
+ _this.searchText = null;
16486
+ }
16487
+ });
16488
+ return [2 /*return*/];
16489
+ }
16490
+ });
16491
+ });
16492
+ };
16493
+ BaiduFenceComponent.prototype.moveToView = function (id) {
16494
+ if (!this.data || !id) {
16495
+ return;
16496
+ }
16497
+ var data = this.data.find(function (r) { return r.id === id; });
16498
+ if (!data) {
16499
+ return;
16500
+ }
16501
+ if (data.type === 'circle') {
16502
+ var _b = __read(data.lnglat.split(','), 2), lng = _b[0], lat = _b[1];
16503
+ var centerLng = Number(lng);
16504
+ var centerLat = Number(lat);
16505
+ var radius = Number(data.radius);
16506
+ // 转换中心点纬度为弧度
16507
+ var centerLatRad = (centerLat * Math.PI) / 180;
16508
+ // 计算经度方向的偏移(弧度)
16509
+ var deltaLngRad = radius / (EARTH_RADIUS$1 * Math.cos(centerLatRad));
16510
+ // 计算纬度方向的偏移(弧度)
16511
+ var deltaLatRad = radius / EARTH_RADIUS$1;
16512
+ // 转换为角度偏移
16513
+ var deltaLng = (deltaLngRad * 180) / Math.PI;
16514
+ var deltaLat = (deltaLatRad * 180) / Math.PI;
16515
+ // 计算圆形的四个边界点(上、下、左、右)
16516
+ var points = [
16517
+ new BMapGL.Point(centerLng, centerLat + deltaLat),
16518
+ new BMapGL.Point(centerLng, centerLat - deltaLat),
16519
+ new BMapGL.Point(centerLng - deltaLng, centerLat),
16520
+ new BMapGL.Point(centerLng + deltaLng, centerLat),
16521
+ ];
16522
+ // 使用 setViewport 方法调整视图,使整个圆形可见
16523
+ this.parent.map.setViewport(points);
16524
+ }
16525
+ else {
16526
+ this.parent.map.setViewport(data.lnglat.split(/[;\n\r]+/).map(function (p) {
16527
+ var _b = __read(p.split(','), 2), lng = _b[0], lat = _b[1];
16528
+ return new BMapGL.Point(Number(lng), Number(lat));
16529
+ }));
16530
+ }
16403
16531
  };
16404
16532
  return BaiduFenceComponent;
16405
16533
  }(BaseLayer));
16406
16534
  exports.ɵde.decorators = [
16407
16535
  { type: i0.Component, args: [{
16408
16536
  selector: 'sc-baidu-fence',
16409
- template: "<ng-container *ngIf=\"showDrawButton\">\n <button nz-button (click)=\"startDraw('polygon')\">\u7ED8\u5236\u591A\u8FB9\u5F62</button>\n <button nz-button (click)=\"startDraw('circle')\">\u7ED8\u5236\u5706\u5F62</button>\n <button nz-button (click)=\"stopDraw()\">\u7ED3\u675F\u7ED8\u5236</button>\n</ng-container>\n\n<!-- <input type=\"text\" placeholder=\"\u8BF7\u8F93\u5165\u5730\u70B9\" [(ngModel)]=\"searchText\" />\n<button nz-button (click)=\"search()\">\u67E5\u8BE2</button> -->\n",
16410
- styles: [":host{position:absolute;display:block;left:0;top:0;z-index:100;padding:12px;pointer-events:auto}button{transition:none}"]
16537
+ template: "<ng-container *ngIf=\"showDrawButton\">\n <button nz-button (click)=\"startDraw('polygon')\">\u7ED8\u5236\u591A\u8FB9\u5F62</button>\n <button nz-button (click)=\"startDraw('circle')\">\u7ED8\u5236\u5706\u5F62</button>\n <button nz-button (click)=\"stopDraw()\">\u7ED3\u675F\u7ED8\u5236</button>\n <button nz-button (click)=\"moveToView('1')\">\u79FB\u52A8\u5230\u4E2D\u5FC31</button>\n <button nz-button (click)=\"moveToView('2')\">\u79FB\u52A8\u5230\u4E2D\u5FC32</button>\n</ng-container>\n<input\n nz-input\n [ngClass]=\"{ hidden: !circle?.isOpen }\"\n #suggest\n type=\"text\"\n [(ngModel)]=\"searchText\"\n placeholder=\"\u8BF7\u8F93\u5165\u4E2D\u5FC3\u70B9\u4F4D\u7F6E\"\n class=\"input\"\n/>\n<ng-container *ngIf=\"polygon?.isOpen\">\n <input nz-input type=\"text\" placeholder=\"\u8BF7\u8F93\u5165\u884C\u653F\u533A\u540D\u79F0\" [(ngModel)]=\"areaName\" class=\"input\" />\n <button nz-button (click)=\"search()\" style=\"margin-left: 12px\">\u786E\u8BA4</button>\n</ng-container>\n<!-- <input type=\"text\" placeholder=\"\u8BF7\u8F93\u5165\u5730\u70B9\" [(ngModel)]=\"searchText\" />\n<button nz-button (click)=\"search()\">\u67E5\u8BE2</button> -->\n",
16538
+ styles: [":host{position:absolute;display:block;left:0;top:0;z-index:100;padding:12px;pointer-events:auto}button{transition:none}.hidden{display:none}.input{width:300px;margin-left:12px}"]
16411
16539
  },] }
16412
16540
  ];
16541
+ exports.ɵde.ctorParameters = function () { return [
16542
+ { type: exports.ɵcy },
16543
+ { type: i0.NgZone },
16544
+ { type: message.NzMessageService }
16545
+ ]; };
16546
+ exports.ɵde.propDecorators = {
16547
+ suggest: [{ type: i0.ViewChild, args: ['suggest',] }]
16548
+ };
16413
16549
  __decorate([
16414
16550
  bbjWidgetBase.Property('线条宽度', {
16415
16551
  ui: { widget: 'myRange', min: 1, max: 40, step: 1 },
@@ -16481,15 +16617,253 @@
16481
16617
  __metadata("design:paramtypes", []),
16482
16618
  __metadata("design:returntype", void 0)
16483
16619
  ], exports.ɵde.prototype, "stopDraw", null);
16620
+ __decorate([
16621
+ bbjWidgetBase.Method('移动到中心'),
16622
+ __param(0, bbjWidgetBase.Param('id')),
16623
+ __metadata("design:type", Function),
16624
+ __metadata("design:paramtypes", [String]),
16625
+ __metadata("design:returntype", void 0)
16626
+ ], exports.ɵde.prototype, "moveToView", null);
16484
16627
  exports.ɵde = __decorate([
16485
16628
  bbjWidgetBase.Widget('电子围栏', {
16486
16629
  group: 'component',
16487
16630
  image: '',
16488
16631
  icon: '',
16489
16632
  hidden: true,
16490
- })
16633
+ }),
16634
+ __metadata("design:paramtypes", [exports.ɵcy,
16635
+ i0.NgZone,
16636
+ message.NzMessageService])
16491
16637
  ], exports.ɵde);
16492
16638
 
16639
+ exports.ɵdf = /** @class */ (function () {
16640
+ function BaiduLushuComponent(parent, lazy, zone) {
16641
+ this.parent = parent;
16642
+ this.lazy = lazy;
16643
+ this.zone = zone;
16644
+ this.speed = 500;
16645
+ this.iconWidth = 32;
16646
+ this.iconHeight = 32;
16647
+ this.showPolyline = true;
16648
+ this.polylineColor = '#111';
16649
+ this.autoStart = true;
16650
+ // @Property('自动视野调整', { type: 'boolean' })
16651
+ // autoView = true;
16652
+ this.enableRotation = true;
16653
+ this.defaultContent = '行驶中';
16654
+ this.data = [
16655
+ {
16656
+ lng: '120.7',
16657
+ lat: '28',
16658
+ },
16659
+ {
16660
+ lng: '120.71',
16661
+ lat: '28.01',
16662
+ landmark: '加油站',
16663
+ pauseTime: 2,
16664
+ },
16665
+ {
16666
+ lng: '120.79',
16667
+ lat: '28.1',
16668
+ },
16669
+ ];
16670
+ this.lushu = null;
16671
+ this.inited = false;
16672
+ }
16673
+ BaiduLushuComponent.prototype.ngOnInit = function () {
16674
+ var _this = this;
16675
+ this.zone.runOutsideAngular(function () { return __awaiter(_this, void 0, void 0, function () {
16676
+ return __generator(this, function (_b) {
16677
+ switch (_b.label) {
16678
+ case 0: return [4 /*yield*/, this.parent.init$];
16679
+ case 1:
16680
+ _b.sent();
16681
+ return [4 /*yield*/, this.lazy.loadScript('/assets/js/BMapGL/Lushu.js')];
16682
+ case 2:
16683
+ _b.sent();
16684
+ this.inited = true;
16685
+ this.update();
16686
+ return [2 /*return*/];
16687
+ }
16688
+ });
16689
+ }); });
16690
+ };
16691
+ BaiduLushuComponent.prototype.ngOnChanges = function (changes) {
16692
+ var _this = this;
16693
+ if (this.inited) {
16694
+ this.zone.runOutsideAngular(function () {
16695
+ _this.update();
16696
+ });
16697
+ }
16698
+ };
16699
+ BaiduLushuComponent.prototype.ngOnDestroy = function () {
16700
+ this.clear();
16701
+ };
16702
+ BaiduLushuComponent.prototype.update = function () {
16703
+ var _a;
16704
+ this.clear();
16705
+ if (!((_a = this.data) === null || _a === void 0 ? void 0 : _a.length)) {
16706
+ return;
16707
+ }
16708
+ var landmarkPois = [];
16709
+ var arrPois = this.data.map(function (item) {
16710
+ if (item.landmark || item.pauseTime) {
16711
+ landmarkPois.push({
16712
+ lng: Number(item.lng),
16713
+ lat: Number(item.lat),
16714
+ html: item.landmark,
16715
+ pauseTime: item.pauseTime ? Number(item.pauseTime) : 0,
16716
+ });
16717
+ }
16718
+ return new BMapGL.Point(item.lng, item.lat);
16719
+ });
16720
+ if (this.showPolyline) {
16721
+ this.polyline = new BMapGL.Polyline(arrPois, { strokeColor: this.polylineColor });
16722
+ this.parent.map.addOverlay(this.polyline);
16723
+ }
16724
+ this.lushu = new BMapGLLib.LuShu(this.parent.map, arrPois, {
16725
+ defaultContent: this.defaultContent || '',
16726
+ autoView: false,
16727
+ icon: new BMapGL.Icon(this.icon || '/assets/img/screen/car.png', new BMapGL.Size(this.iconWidth, this.iconHeight), {
16728
+ anchor: new BMapGL.Size(10, 10),
16729
+ }),
16730
+ speed: this.speed,
16731
+ enableRotation: this.enableRotation,
16732
+ // defaultContent不为空时才会显示
16733
+ landmarkPois: landmarkPois,
16734
+ });
16735
+ if (this.autoStart) {
16736
+ this.start();
16737
+ }
16738
+ };
16739
+ BaiduLushuComponent.prototype.start = function () {
16740
+ if (this.lushu) {
16741
+ this.parent.map.setViewport(this.lushu.path);
16742
+ this.lushu.start();
16743
+ }
16744
+ };
16745
+ BaiduLushuComponent.prototype.stop = function () {
16746
+ if (this.lushu) {
16747
+ this.lushu.stop();
16748
+ }
16749
+ };
16750
+ BaiduLushuComponent.prototype.pause = function () {
16751
+ if (this.lushu) {
16752
+ this.lushu.pause();
16753
+ }
16754
+ };
16755
+ BaiduLushuComponent.prototype.clear = function () {
16756
+ if (this.lushu) {
16757
+ this.lushu.clear();
16758
+ this.lushu = null;
16759
+ }
16760
+ if (this.polyline) {
16761
+ this.parent.map.removeOverlay(this.polyline);
16762
+ }
16763
+ };
16764
+ BaiduLushuComponent.prototype.setSpeed = function (speed) {
16765
+ if (speed) {
16766
+ this.speed = speed;
16767
+ this.update();
16768
+ }
16769
+ };
16770
+ return BaiduLushuComponent;
16771
+ }());
16772
+ exports.ɵdf.decorators = [
16773
+ { type: i0.Component, args: [{
16774
+ selector: 'sc-baidu-lushu',
16775
+ template: "",
16776
+ styles: [""]
16777
+ },] }
16778
+ ];
16779
+ exports.ɵdf.ctorParameters = function () { return [
16780
+ { type: exports.ɵcy },
16781
+ { type: util.LazyService },
16782
+ { type: i0.NgZone }
16783
+ ]; };
16784
+ __decorate([
16785
+ bbjWidgetBase.Property('速度', { type: 'number' }),
16786
+ __metadata("design:type", Object)
16787
+ ], exports.ɵdf.prototype, "speed", void 0);
16788
+ __decorate([
16789
+ bbjWidgetBase.Property('图标', { type: 'string', ui: { widget: 'myPicture' } }),
16790
+ __metadata("design:type", String)
16791
+ ], exports.ɵdf.prototype, "icon", void 0);
16792
+ __decorate([
16793
+ bbjWidgetBase.Property('图标宽度', { type: 'number' }),
16794
+ __metadata("design:type", Number)
16795
+ ], exports.ɵdf.prototype, "iconWidth", void 0);
16796
+ __decorate([
16797
+ bbjWidgetBase.Property('图标高度', { type: 'number' }),
16798
+ __metadata("design:type", Number)
16799
+ ], exports.ɵdf.prototype, "iconHeight", void 0);
16800
+ __decorate([
16801
+ bbjWidgetBase.Property('显示轨迹', { type: 'boolean' }),
16802
+ __metadata("design:type", Object)
16803
+ ], exports.ɵdf.prototype, "showPolyline", void 0);
16804
+ __decorate([
16805
+ bbjWidgetBase.Property('轨迹颜色', { type: 'string', ui: { widget: 'myColor', visibleIf: { showPolyline: [true] } } }),
16806
+ __metadata("design:type", String)
16807
+ ], exports.ɵdf.prototype, "polylineColor", void 0);
16808
+ __decorate([
16809
+ bbjWidgetBase.Property('自动播放', { type: 'boolean' }),
16810
+ __metadata("design:type", Object)
16811
+ ], exports.ɵdf.prototype, "autoStart", void 0);
16812
+ __decorate([
16813
+ bbjWidgetBase.Property('自动转向', { type: 'boolean' }),
16814
+ __metadata("design:type", Object)
16815
+ ], exports.ɵdf.prototype, "enableRotation", void 0);
16816
+ __decorate([
16817
+ bbjWidgetBase.Property('默认内容', { type: 'string' }),
16818
+ __metadata("design:type", Object)
16819
+ ], exports.ɵdf.prototype, "defaultContent", void 0);
16820
+ __decorate([
16821
+ bbjWidgetBase.Data({
16822
+ properties: {
16823
+ lng: { type: 'number', title: '经度' },
16824
+ lat: { type: 'number', title: '纬度' },
16825
+ landmark: { type: 'string', title: '标记点' },
16826
+ pauseTime: { type: 'number', title: '暂停时间' },
16827
+ },
16828
+ }),
16829
+ __metadata("design:type", Array)
16830
+ ], exports.ɵdf.prototype, "data", void 0);
16831
+ __decorate([
16832
+ bbjWidgetBase.Method('播放'),
16833
+ __metadata("design:type", Function),
16834
+ __metadata("design:paramtypes", []),
16835
+ __metadata("design:returntype", void 0)
16836
+ ], exports.ɵdf.prototype, "start", null);
16837
+ __decorate([
16838
+ bbjWidgetBase.Method('停止'),
16839
+ __metadata("design:type", Function),
16840
+ __metadata("design:paramtypes", []),
16841
+ __metadata("design:returntype", void 0)
16842
+ ], exports.ɵdf.prototype, "stop", null);
16843
+ __decorate([
16844
+ bbjWidgetBase.Method('暂停'),
16845
+ __metadata("design:type", Function),
16846
+ __metadata("design:paramtypes", []),
16847
+ __metadata("design:returntype", void 0)
16848
+ ], exports.ɵdf.prototype, "pause", null);
16849
+ __decorate([
16850
+ bbjWidgetBase.Method('设置速度'),
16851
+ __metadata("design:type", Function),
16852
+ __metadata("design:paramtypes", [Number]),
16853
+ __metadata("design:returntype", void 0)
16854
+ ], exports.ɵdf.prototype, "setSpeed", null);
16855
+ exports.ɵdf = __decorate([
16856
+ bbjWidgetBase.Widget('轨迹', {
16857
+ group: 'component',
16858
+ image: '',
16859
+ icon: '',
16860
+ hidden: true,
16861
+ }),
16862
+ __metadata("design:paramtypes", [exports.ɵcy,
16863
+ util.LazyService,
16864
+ i0.NgZone])
16865
+ ], exports.ɵdf);
16866
+
16493
16867
  var CustomBaiduMapModule = /** @class */ (function () {
16494
16868
  function CustomBaiduMapModule(widgetService) {
16495
16869
  widgetService.register(exports.ɵcy, { scaleContent: false });
@@ -16498,6 +16872,7 @@
16498
16872
  widgetService.register(exports.ɵdc);
16499
16873
  widgetService.register(exports.ɵdd);
16500
16874
  widgetService.register(exports.ɵde);
16875
+ widgetService.register(exports.ɵdf);
16501
16876
  }
16502
16877
  return CustomBaiduMapModule;
16503
16878
  }());
@@ -16510,6 +16885,7 @@
16510
16885
  exports.ɵdc,
16511
16886
  exports.ɵdd,
16512
16887
  exports.ɵde,
16888
+ exports.ɵdf,
16513
16889
  ],
16514
16890
  imports: [
16515
16891
  common.CommonModule,
@@ -16520,6 +16896,7 @@
16520
16896
  radio.NzRadioModule,
16521
16897
  forms.FormsModule,
16522
16898
  button.NzButtonModule,
16899
+ input.NzInputModule,
16523
16900
  ],
16524
16901
  },] }
16525
16902
  ];
@@ -16726,7 +17103,7 @@
16726
17103
  'iconzhinanzhen',
16727
17104
  ];
16728
17105
 
16729
- exports.ɵdg = /** @class */ (function () {
17106
+ exports.ɵdh = /** @class */ (function () {
16730
17107
  function UploadComponent(msg) {
16731
17108
  var _this = this;
16732
17109
  this.msg = msg;
@@ -16813,14 +17190,14 @@
16813
17190
  };
16814
17191
  return UploadComponent;
16815
17192
  }());
16816
- exports.ɵdg.decorators = [
17193
+ exports.ɵdh.decorators = [
16817
17194
  { type: i0.Component, args: [{
16818
17195
  selector: 'sc-upload',
16819
17196
  template: "<div class=\"content\">\n <nz-upload\n nzAction=\"/api/screen/fileUpload\"\n [nzHeaders]=\"{ authorization: 'authorization-text' }\"\n (nzChange)=\"handleChange($event)\"\n [nzLimit]=\"1\"\n [ngClass]=\"class\"\n [nzListType]=\"listType\"\n [nzShowUploadList]=\"showUploadList\"\n [nzMultiple]=\"true\"\n [nzBeforeUpload]=\"beforeUpload\"\n nzType=\"{{type}}\"\n\n\n >\n <button nz-button *ngIf=\"style === 'classics'\"><i nz-icon nzType=\"upload\"></i>\u70B9\u51FB\u4E0A\u4F20</button>\n <ng-container *ngIf=\"style === 'portrait'\">\n <ng-container *ngIf=\"!avatarUrl\">\n <i class=\"upload-icon\" nz-icon [nzType]=\"loading ? 'loading' : 'plus'\"></i>\n <div class=\"ant-upload-text\">Upload</div>\n </ng-container>\n <img *ngIf=\"avatarUrl\" [src]=\"avatarUrl\" style=\"width: 100%\"/>\n </ng-container>\n <ng-container *ngIf=\"style==='drag'\">\n <p class=\"ant-upload-drag-icon\">\n <i nz-icon nzType=\"inbox\"></i>\n </p>\n <p class=\"ant-upload-text\">\u70B9\u51FB\u6216\u8005\u62D6\u62FD\u4E0A\u4F20</p>\n <p class=\"ant-upload-hint\"></p>\n </ng-container>\n </nz-upload>\n</div>\n",
16820
17197
  styles: [":host{display:block;text-align:center}:host,div.content{height:100%;width:100%}div.content{display:flex;align-items:center;justify-content:center}"]
16821
17198
  },] }
16822
17199
  ];
16823
- exports.ɵdg.ctorParameters = function () { return [
17200
+ exports.ɵdh.ctorParameters = function () { return [
16824
17201
  { type: message.NzMessageService }
16825
17202
  ]; };
16826
17203
  __decorate([
@@ -16836,29 +17213,29 @@
16836
17213
  ],
16837
17214
  }),
16838
17215
  __metadata("design:type", Object)
16839
- ], exports.ɵdg.prototype, "style", void 0);
17216
+ ], exports.ɵdh.prototype, "style", void 0);
16840
17217
  __decorate([
16841
17218
  bbjWidgetBase.DataOutput('值'),
16842
17219
  __metadata("design:type", Object)
16843
- ], exports.ɵdg.prototype, "valueChange", void 0);
16844
- exports.ɵdg = __decorate([
17220
+ ], exports.ɵdh.prototype, "valueChange", void 0);
17221
+ exports.ɵdh = __decorate([
16845
17222
  bbjWidgetBase.Widget('文件上传', {
16846
17223
  group: 'component',
16847
17224
  image: 'assets/img/screen/file-upload.png',
16848
17225
  icon: 'icontubiao',
16849
17226
  }),
16850
17227
  __metadata("design:paramtypes", [message.NzMessageService])
16851
- ], exports.ɵdg);
17228
+ ], exports.ɵdh);
16852
17229
 
16853
17230
  var UploadModule = /** @class */ (function () {
16854
17231
  function UploadModule(widgetService) {
16855
- widgetService.register(exports.ɵdg);
17232
+ widgetService.register(exports.ɵdh);
16856
17233
  }
16857
17234
  return UploadModule;
16858
17235
  }());
16859
17236
  UploadModule.decorators = [
16860
17237
  { type: i0.NgModule, args: [{
16861
- declarations: [exports.ɵdg],
17238
+ declarations: [exports.ɵdh],
16862
17239
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, icon.NzIconModule, upload.NzUploadModule, button.NzButtonModule],
16863
17240
  },] }
16864
17241
  ];
@@ -16866,7 +17243,7 @@
16866
17243
  { type: bbjWidgetBase.WidgetService }
16867
17244
  ]; };
16868
17245
 
16869
- exports.ɵdh = /** @class */ (function () {
17246
+ exports.ɵdi = /** @class */ (function () {
16870
17247
  function CrossTableComponent() {
16871
17248
  this.pageSize = 10;
16872
17249
  this.theadBackground = '#fafafa';
@@ -17054,18 +17431,18 @@
17054
17431
  };
17055
17432
  return CrossTableComponent;
17056
17433
  }());
17057
- exports.ɵdh.decorators = [
17434
+ exports.ɵdi.decorators = [
17058
17435
  { type: i0.Component, args: [{
17059
17436
  selector: 'sc-cross-table',
17060
17437
  template: "<nz-table #basicTable [nzData]=\"data\" [nzScroll]=\"{ x: '50px', y: '100%' }\" [nzPageSize]=\"pageSize\"\n [ngStyle]=\"bodyStyle\"\n [nzBordered]=\"showBorder\" [nzWidthConfig]=\"widthConfig\" [nzFrontPagination]=\"needPage\">\n <thead>\n <tr >\n <th *ngFor=\"let head of ths\" nzAlign=\"{{contentAlign}}\" [ngStyle]=\"headStyle\">{{ head }}</th>\n </tr>\n </thead>\n <tbody>\n <tr *ngFor=\"let row of basicTable.data\" >\n <ng-container *ngFor=\"let td of row\">\n <td nzAlign=\"{{contentAlign}}\" [ngStyle]=\"bodyStyle\">{{td.value}}</td>\n </ng-container>\n </tr>\n </tbody>\n</nz-table>\n",
17061
17438
  styles: [":host{display:block;width:100%}.ant-table-wrapper,.ant-table-wrapper ::ng-deep.ant-spin-nested-loading,:host{height:100%}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container{height:100%;display:flex;flex-direction:column}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table{background:inherit;flex:1;overflow:hidden}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-thead>tr>th{background:inherit}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container{height:100%;display:flex;flex-direction:column}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-header{flex:none}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table .ant-table-container .ant-table-body{flex:1;overflow:auto}.ant-table-wrapper ::ng-deep.ant-spin-nested-loading .ant-spin-container .ant-table-pagination-right{align-self:flex-end}"]
17062
17439
  },] }
17063
17440
  ];
17064
- exports.ɵdh.ctorParameters = function () { return []; };
17441
+ exports.ɵdi.ctorParameters = function () { return []; };
17065
17442
  __decorate([
17066
17443
  bbjWidgetBase.Property('条数/页', { ui: { widget: 'myRange', min: 1, max: 100, step: 1 } }),
17067
17444
  __metadata("design:type", Object)
17068
- ], exports.ɵdh.prototype, "pageSize", void 0);
17445
+ ], exports.ɵdi.prototype, "pageSize", void 0);
17069
17446
  __decorate([
17070
17447
  bbjWidgetBase.Property('表头背景', {
17071
17448
  ui: {
@@ -17074,11 +17451,11 @@
17074
17451
  },
17075
17452
  }),
17076
17453
  __metadata("design:type", Object)
17077
- ], exports.ɵdh.prototype, "theadBackground", void 0);
17454
+ ], exports.ɵdi.prototype, "theadBackground", void 0);
17078
17455
  __decorate([
17079
17456
  bbjWidgetBase.Property('表头字体', { ui: { widget: 'myFont' } }),
17080
17457
  __metadata("design:type", Object)
17081
- ], exports.ɵdh.prototype, "headFont", void 0);
17458
+ ], exports.ɵdi.prototype, "headFont", void 0);
17082
17459
  __decorate([
17083
17460
  bbjWidgetBase.Property('内容对齐', {
17084
17461
  type: 'string',
@@ -17092,7 +17469,7 @@
17092
17469
  ],
17093
17470
  }),
17094
17471
  __metadata("design:type", Object)
17095
- ], exports.ɵdh.prototype, "contentAlign", void 0);
17472
+ ], exports.ɵdi.prototype, "contentAlign", void 0);
17096
17473
  __decorate([
17097
17474
  bbjWidgetBase.Property('表格背景', {
17098
17475
  ui: {
@@ -17101,7 +17478,7 @@
17101
17478
  },
17102
17479
  }),
17103
17480
  __metadata("design:type", Object)
17104
- ], exports.ɵdh.prototype, "tbodyBackground", void 0);
17481
+ ], exports.ɵdi.prototype, "tbodyBackground", void 0);
17105
17482
  __decorate([
17106
17483
  bbjWidgetBase.Property('显示边框', {
17107
17484
  type: 'boolean',
@@ -17111,11 +17488,11 @@
17111
17488
  },
17112
17489
  }),
17113
17490
  __metadata("design:type", Object)
17114
- ], exports.ɵdh.prototype, "showBorder", void 0);
17491
+ ], exports.ɵdi.prototype, "showBorder", void 0);
17115
17492
  __decorate([
17116
17493
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
17117
17494
  __metadata("design:type", Object)
17118
- ], exports.ɵdh.prototype, "font", void 0);
17495
+ ], exports.ɵdi.prototype, "font", void 0);
17119
17496
  __decorate([
17120
17497
  bbjWidgetBase.Property('交叉字段', {
17121
17498
  cross: {
@@ -17125,7 +17502,7 @@
17125
17502
  required: [''],
17126
17503
  }),
17127
17504
  __metadata("design:type", Object)
17128
- ], exports.ɵdh.prototype, "cross", void 0);
17505
+ ], exports.ɵdi.prototype, "cross", void 0);
17129
17506
  __decorate([
17130
17507
  bbjWidgetBase.Property('显示分页', {
17131
17508
  type: 'boolean',
@@ -17135,7 +17512,7 @@
17135
17512
  },
17136
17513
  }),
17137
17514
  __metadata("design:type", Object)
17138
- ], exports.ɵdh.prototype, "needPage", void 0);
17515
+ ], exports.ɵdi.prototype, "needPage", void 0);
17139
17516
  __decorate([
17140
17517
  bbjWidgetBase.Property('绑定值', {
17141
17518
  crossVal: {
@@ -17145,29 +17522,29 @@
17145
17522
  required: [''],
17146
17523
  }),
17147
17524
  __metadata("design:type", Object)
17148
- ], exports.ɵdh.prototype, "crossVal", void 0);
17525
+ ], exports.ɵdi.prototype, "crossVal", void 0);
17149
17526
  __decorate([
17150
17527
  bbjWidgetBase.Data({}),
17151
17528
  __metadata("design:type", Array)
17152
- ], exports.ɵdh.prototype, "_data", void 0);
17529
+ ], exports.ɵdi.prototype, "_data", void 0);
17153
17530
  __decorate([
17154
17531
  bbjWidgetBase.DataSchema('_data'),
17155
17532
  __metadata("design:type", Object)
17156
- ], exports.ɵdh.prototype, "schema", void 0);
17157
- exports.ɵdh = __decorate([
17533
+ ], exports.ɵdi.prototype, "schema", void 0);
17534
+ exports.ɵdi = __decorate([
17158
17535
  bbjWidgetBase.Widget('交叉表格', { group: 'table', icon: 'icontubiao', image: '/assets/img/screen/cross-table.png' }),
17159
17536
  __metadata("design:paramtypes", [])
17160
- ], exports.ɵdh);
17537
+ ], exports.ɵdi);
17161
17538
 
17162
17539
  var CrossTableModule = /** @class */ (function () {
17163
17540
  function CrossTableModule(widgetService) {
17164
- widgetService.register(exports.ɵdh);
17541
+ widgetService.register(exports.ɵdi);
17165
17542
  }
17166
17543
  return CrossTableModule;
17167
17544
  }());
17168
17545
  CrossTableModule.decorators = [
17169
17546
  { type: i0.NgModule, args: [{
17170
- declarations: [exports.ɵdh],
17547
+ declarations: [exports.ɵdi],
17171
17548
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, table.NzTableModule],
17172
17549
  },] }
17173
17550
  ];
@@ -17941,7 +18318,7 @@
17941
18318
  { type: util.LazyService }
17942
18319
  ]; };
17943
18320
 
17944
- exports.ɵdj = /** @class */ (function () {
18321
+ exports.ɵdk = /** @class */ (function () {
17945
18322
  function Pie3dChartComponent(highChartsService) {
17946
18323
  this.highChartsService = highChartsService;
17947
18324
  this.title = '';
@@ -18141,34 +18518,34 @@
18141
18518
  };
18142
18519
  return Pie3dChartComponent;
18143
18520
  }());
18144
- exports.ɵdj.initPluginPromise = null;
18145
- exports.ɵdj.decorators = [
18521
+ exports.ɵdk.initPluginPromise = null;
18522
+ exports.ɵdk.decorators = [
18146
18523
  { type: i0.Component, args: [{
18147
18524
  selector: 'sc-pie3d-chart',
18148
18525
  template: "<div #container style=\"height: 100%\"></div>\n",
18149
18526
  styles: [":host::ng-deep .highcharts-background,:host::ng-deep .highcharts-credits{display:none}"]
18150
18527
  },] }
18151
18528
  ];
18152
- exports.ɵdj.ctorParameters = function () { return [
18529
+ exports.ɵdk.ctorParameters = function () { return [
18153
18530
  { type: HighChartsService }
18154
18531
  ]; };
18155
- exports.ɵdj.propDecorators = {
18532
+ exports.ɵdk.propDecorators = {
18156
18533
  container: [{ type: i0.ViewChild, args: ['container', { static: true },] }]
18157
18534
  };
18158
18535
  __decorate([
18159
18536
  bbjWidgetBase.Property('标题', { type: 'string' }),
18160
18537
  __metadata("design:type", Object)
18161
- ], exports.ɵdj.prototype, "title", void 0);
18538
+ ], exports.ɵdk.prototype, "title", void 0);
18162
18539
  __decorate([
18163
18540
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
18164
18541
  __metadata("design:type", Object)
18165
- ], exports.ɵdj.prototype, "font", void 0);
18542
+ ], exports.ɵdk.prototype, "font", void 0);
18166
18543
  __decorate([
18167
18544
  bbjWidgetBase.Property('浮标', {
18168
18545
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18169
18546
  }),
18170
18547
  __metadata("design:type", Object)
18171
- ], exports.ɵdj.prototype, "buoy", void 0);
18548
+ ], exports.ɵdk.prototype, "buoy", void 0);
18172
18549
  __decorate([
18173
18550
  bbjWidgetBase.Property('填充', {
18174
18551
  ui: {
@@ -18177,33 +18554,33 @@
18177
18554
  },
18178
18555
  }),
18179
18556
  __metadata("design:type", Object)
18180
- ], exports.ɵdj.prototype, "colors", void 0);
18557
+ ], exports.ɵdk.prototype, "colors", void 0);
18181
18558
  __decorate([
18182
18559
  bbjWidgetBase.Property('饼图厚度', { type: 'number' }),
18183
18560
  __metadata("design:type", Object)
18184
- ], exports.ɵdj.prototype, "thickness", void 0);
18561
+ ], exports.ɵdk.prototype, "thickness", void 0);
18185
18562
  __decorate([
18186
18563
  bbjWidgetBase.Property('倾斜角度', { type: 'number' }),
18187
18564
  __metadata("design:type", Object)
18188
- ], exports.ɵdj.prototype, "angle", void 0);
18565
+ ], exports.ɵdk.prototype, "angle", void 0);
18189
18566
  __decorate([
18190
18567
  bbjWidgetBase.Property('图例开关', {
18191
18568
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18192
18569
  }),
18193
18570
  __metadata("design:type", Object)
18194
- ], exports.ɵdj.prototype, "showLegend", void 0);
18571
+ ], exports.ɵdk.prototype, "showLegend", void 0);
18195
18572
  __decorate([
18196
18573
  bbjWidgetBase.Property('图例间距', { type: 'number' }),
18197
18574
  __metadata("design:type", Object)
18198
- ], exports.ɵdj.prototype, "itemDistance", void 0);
18575
+ ], exports.ɵdk.prototype, "itemDistance", void 0);
18199
18576
  __decorate([
18200
18577
  bbjWidgetBase.Property('高度系数', { type: 'number' }),
18201
18578
  __metadata("design:type", Object)
18202
- ], exports.ɵdj.prototype, "coefficient", void 0);
18579
+ ], exports.ɵdk.prototype, "coefficient", void 0);
18203
18580
  __decorate([
18204
18581
  bbjWidgetBase.Property('开始角度', { type: 'number' }),
18205
18582
  __metadata("design:type", Object)
18206
- ], exports.ɵdj.prototype, "startAngle", void 0);
18583
+ ], exports.ɵdk.prototype, "startAngle", void 0);
18207
18584
  __decorate([
18208
18585
  bbjWidgetBase.Property('图例水平', {
18209
18586
  ui: { widget: 'select' },
@@ -18214,7 +18591,7 @@
18214
18591
  ],
18215
18592
  }),
18216
18593
  __metadata("design:type", Object)
18217
- ], exports.ɵdj.prototype, "alignType", void 0);
18594
+ ], exports.ɵdk.prototype, "alignType", void 0);
18218
18595
  __decorate([
18219
18596
  bbjWidgetBase.Property('图例垂直', {
18220
18597
  ui: { widget: 'select' },
@@ -18225,11 +18602,11 @@
18225
18602
  ],
18226
18603
  }),
18227
18604
  __metadata("design:type", Object)
18228
- ], exports.ɵdj.prototype, "verticalAlign", void 0);
18605
+ ], exports.ɵdk.prototype, "verticalAlign", void 0);
18229
18606
  __decorate([
18230
18607
  bbjWidgetBase.Property('提示框字体', { ui: { widget: 'myFont' } }),
18231
18608
  __metadata("design:type", Object)
18232
- ], exports.ɵdj.prototype, "tooltipFont", void 0);
18609
+ ], exports.ɵdk.prototype, "tooltipFont", void 0);
18233
18610
  __decorate([
18234
18611
  bbjWidgetBase.Data({
18235
18612
  properties: {
@@ -18238,25 +18615,25 @@
18238
18615
  },
18239
18616
  }),
18240
18617
  __metadata("design:type", Object)
18241
- ], exports.ɵdj.prototype, "_data", void 0);
18242
- exports.ɵdj = __decorate([
18618
+ ], exports.ɵdk.prototype, "_data", void 0);
18619
+ exports.ɵdk = __decorate([
18243
18620
  bbjWidgetBase.Widget('3D饼图', {
18244
18621
  group: 'pieChart',
18245
18622
  image: 'assets/img/screen/pie3d.png',
18246
18623
  icon: 'icontubiao',
18247
18624
  }),
18248
18625
  __metadata("design:paramtypes", [HighChartsService])
18249
- ], exports.ɵdj);
18626
+ ], exports.ɵdk);
18250
18627
 
18251
18628
  var Pie3dChartModule = /** @class */ (function () {
18252
18629
  function Pie3dChartModule(widgetService) {
18253
- widgetService.register(exports.ɵdj);
18630
+ widgetService.register(exports.ɵdk);
18254
18631
  }
18255
18632
  return Pie3dChartModule;
18256
18633
  }());
18257
18634
  Pie3dChartModule.decorators = [
18258
18635
  { type: i0.NgModule, args: [{
18259
- declarations: [exports.ɵdj],
18636
+ declarations: [exports.ɵdk],
18260
18637
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule],
18261
18638
  },] }
18262
18639
  ];
@@ -18264,7 +18641,7 @@
18264
18641
  { type: bbjWidgetBase.WidgetService }
18265
18642
  ]; };
18266
18643
 
18267
- exports.ɵdm = /** @class */ (function () {
18644
+ exports.ɵdn = /** @class */ (function () {
18268
18645
  function MultiTitleGaugeComponent() {
18269
18646
  this.font = {
18270
18647
  family: '',
@@ -18434,28 +18811,28 @@
18434
18811
  };
18435
18812
  return MultiTitleGaugeComponent;
18436
18813
  }());
18437
- exports.ɵdm.decorators = [
18814
+ exports.ɵdn.decorators = [
18438
18815
  { type: i0.Component, args: [{
18439
18816
  selector: 'sc-multi-title-gauge',
18440
18817
  template: "<div echarts [options]=\"chartOption\" class=\"demo-chart\" [initOpts]=\"{ renderer: 'svg' }\"></div>\n",
18441
18818
  styles: [":host{display:block;width:100%}.demo-chart,:host{height:100%}"]
18442
18819
  },] }
18443
18820
  ];
18444
- exports.ɵdm.ctorParameters = function () { return []; };
18821
+ exports.ɵdn.ctorParameters = function () { return []; };
18445
18822
  __decorate([
18446
18823
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
18447
18824
  __metadata("design:type", Object)
18448
- ], exports.ɵdm.prototype, "font", void 0);
18825
+ ], exports.ɵdn.prototype, "font", void 0);
18449
18826
  __decorate([
18450
18827
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
18451
18828
  __metadata("design:type", Object)
18452
- ], exports.ɵdm.prototype, "detailFont", void 0);
18829
+ ], exports.ɵdn.prototype, "detailFont", void 0);
18453
18830
  __decorate([
18454
18831
  bbjWidgetBase.Property('百分号', {
18455
18832
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18456
18833
  }),
18457
18834
  __metadata("design:type", Object)
18458
- ], exports.ɵdm.prototype, "percent", void 0);
18835
+ ], exports.ɵdn.prototype, "percent", void 0);
18459
18836
  __decorate([
18460
18837
  bbjWidgetBase.Property('类别颜色', {
18461
18838
  ui: {
@@ -18465,61 +18842,61 @@
18465
18842
  },
18466
18843
  }),
18467
18844
  __metadata("design:type", Object)
18468
- ], exports.ɵdm.prototype, "colors", void 0);
18845
+ ], exports.ɵdn.prototype, "colors", void 0);
18469
18846
  __decorate([
18470
18847
  bbjWidgetBase.Property('起始角度', {
18471
18848
  ui: { widget: 'myRange', min: 90, max: 360, step: 1 },
18472
18849
  }),
18473
18850
  __metadata("design:type", Object)
18474
- ], exports.ɵdm.prototype, "startAngle", void 0);
18851
+ ], exports.ɵdn.prototype, "startAngle", void 0);
18475
18852
  __decorate([
18476
18853
  bbjWidgetBase.Property('结束角度', {
18477
18854
  ui: { widget: 'myRange', min: -90, max: 90, step: 1 },
18478
18855
  }),
18479
18856
  __metadata("design:type", Object)
18480
- ], exports.ɵdm.prototype, "endAngle", void 0);
18857
+ ], exports.ɵdn.prototype, "endAngle", void 0);
18481
18858
  __decorate([
18482
18859
  bbjWidgetBase.Property('标签', {
18483
18860
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18484
18861
  }),
18485
18862
  __metadata("design:type", Object)
18486
- ], exports.ɵdm.prototype, "label", void 0);
18863
+ ], exports.ɵdn.prototype, "label", void 0);
18487
18864
  __decorate([
18488
18865
  bbjWidgetBase.Property('最大值', {
18489
18866
  ui: { widget: 'number' },
18490
18867
  }),
18491
18868
  __metadata("design:type", Object)
18492
- ], exports.ɵdm.prototype, "max", void 0);
18869
+ ], exports.ɵdn.prototype, "max", void 0);
18493
18870
  __decorate([
18494
18871
  bbjWidgetBase.Property('最小值', {
18495
18872
  ui: { widget: 'number' },
18496
18873
  }),
18497
18874
  __metadata("design:type", Object)
18498
- ], exports.ɵdm.prototype, "min", void 0);
18875
+ ], exports.ɵdn.prototype, "min", void 0);
18499
18876
  __decorate([
18500
18877
  bbjWidgetBase.Property('指针长度', {
18501
18878
  ui: { widget: 'number' },
18502
18879
  }),
18503
18880
  __metadata("design:type", Object)
18504
- ], exports.ɵdm.prototype, "pointerLength", void 0);
18881
+ ], exports.ɵdn.prototype, "pointerLength", void 0);
18505
18882
  __decorate([
18506
18883
  bbjWidgetBase.Property('环宽', {
18507
18884
  ui: { widget: 'number' },
18508
18885
  }),
18509
18886
  __metadata("design:type", Object)
18510
- ], exports.ɵdm.prototype, "width", void 0);
18887
+ ], exports.ɵdn.prototype, "width", void 0);
18511
18888
  __decorate([
18512
18889
  bbjWidgetBase.Property('显示指针', {
18513
18890
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18514
18891
  }),
18515
18892
  __metadata("design:type", Object)
18516
- ], exports.ɵdm.prototype, "showPointer", void 0);
18893
+ ], exports.ɵdn.prototype, "showPointer", void 0);
18517
18894
  __decorate([
18518
18895
  bbjWidgetBase.Property('显示刻度', {
18519
18896
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18520
18897
  }),
18521
18898
  __metadata("design:type", Object)
18522
- ], exports.ɵdm.prototype, "showScale", void 0);
18899
+ ], exports.ɵdn.prototype, "showScale", void 0);
18523
18900
  __decorate([
18524
18901
  bbjWidgetBase.Data({
18525
18902
  properties: {
@@ -18528,25 +18905,25 @@
18528
18905
  },
18529
18906
  }),
18530
18907
  __metadata("design:type", Object)
18531
- ], exports.ɵdm.prototype, "_data", void 0);
18532
- exports.ɵdm = __decorate([
18908
+ ], exports.ɵdn.prototype, "_data", void 0);
18909
+ exports.ɵdn = __decorate([
18533
18910
  bbjWidgetBase.Widget('多标题仪表盘', {
18534
18911
  group: 'otherChart',
18535
18912
  image: 'assets/img/screen/multiTitleGauge.png',
18536
18913
  icon: 'icontubiao',
18537
18914
  }),
18538
18915
  __metadata("design:paramtypes", [])
18539
- ], exports.ɵdm);
18916
+ ], exports.ɵdn);
18540
18917
 
18541
18918
  var MultiTitleGaugeModule = /** @class */ (function () {
18542
18919
  function MultiTitleGaugeModule(widgetService) {
18543
- widgetService.register(exports.ɵdm);
18920
+ widgetService.register(exports.ɵdn);
18544
18921
  }
18545
18922
  return MultiTitleGaugeModule;
18546
18923
  }());
18547
18924
  MultiTitleGaugeModule.decorators = [
18548
18925
  { type: i0.NgModule, args: [{
18549
- declarations: [exports.ɵdm],
18926
+ declarations: [exports.ɵdn],
18550
18927
  imports: [
18551
18928
  common.CommonModule, bbjWidgetBase.WidgetBaseModule, ngxEcharts.NgxEchartsModule
18552
18929
  ]
@@ -18556,7 +18933,7 @@
18556
18933
  { type: bbjWidgetBase.WidgetService }
18557
18934
  ]; };
18558
18935
 
18559
- exports.ɵdo = /** @class */ (function () {
18936
+ exports.ɵdp = /** @class */ (function () {
18560
18937
  function GaugeProgressComponent() {
18561
18938
  this.numfont = {
18562
18939
  family: 'Microsoft YaHei',
@@ -18726,36 +19103,36 @@
18726
19103
  };
18727
19104
  return GaugeProgressComponent;
18728
19105
  }());
18729
- exports.ɵdo.decorators = [
19106
+ exports.ɵdp.decorators = [
18730
19107
  { type: i0.Component, args: [{
18731
19108
  selector: 'sc-gauge-progress',
18732
19109
  template: "\n<swiper-container\n #swiper\n [slidesPerView]=\"slidesPerView\"\n [spaceBetween]=\"spaceBetween\"\n [navigation]=\"navigation && navigationLeftIcon && navigationRightIcon ? navigationBtnConfig : navigation\"\n class=\"swiper-no-swiping\"\n [noSwiping]=\"true\"\n>\n <swiper-slide *ngFor=\"let item of data\">\n <!-- <div class=\"item-img\">\n <div class=\"item-val\" [ngStyle]=\"numfont\">{{ item.value }}</div>\n <img [src]=\"cardBgImg\" alt=\"\" />\n </div>\n <div [ngStyle]=\"font\">{{ item.label }}</div> -->\n <div echarts [options]=\"item\" class=\"demo-chart\" [initOpts]=\"{ renderer: 'svg' }\"></div>\n </swiper-slide>\n</swiper-container>\n<ng-container *ngIf=\"navigation && navigationLeftIcon && navigationRightIcon\">\n <div class=\"navigationbtn swiper-navigation-prev\" [style]=\"{ left: (navigationMoveVal || '-60') + 'px' }\">\n <img [src]=\"navigationLeftIcon\" alt=\"\" />\n </div>\n <div class=\"navigationbtn swiper-navigation-next\" [style]=\"{ right: (navigationMoveVal || '-60') + 'px' }\">\n <img [src]=\"navigationRightIcon\" alt=\"\" />\n </div>\n</ng-container>\n\n\n\n",
18733
19110
  styles: [":host{display:block}:host,:host ::ng-deep swiper-container{height:100%;width:100%}:host ::ng-deep swiper-slide{text-align:center;position:relative}:host ::ng-deep .item-img{position:relative}:host ::ng-deep .item-img img{display:block;width:100%}:host ::ng-deep .item-val{position:absolute;text-align:center;top:0;bottom:0;left:0;width:100%;z-index:99}:host ::ng-deep .navigationbtn{cursor:pointer;position:absolute;top:0;bottom:0;display:flex;align-items:center;outline:none}:host ::ng-deep .swiper-navigation-prev{left:-60px}:host ::ng-deep .swiper-navigation-next{right:-60px}.demo-chart{height:100%}"]
18734
19111
  },] }
18735
19112
  ];
18736
- exports.ɵdo.ctorParameters = function () { return []; };
19113
+ exports.ɵdp.ctorParameters = function () { return []; };
18737
19114
  __decorate([
18738
19115
  bbjWidgetBase.Property('数值字体', { ui: { widget: 'myFont' } }),
18739
19116
  __metadata("design:type", Object)
18740
- ], exports.ɵdo.prototype, "numfont", void 0);
19117
+ ], exports.ɵdp.prototype, "numfont", void 0);
18741
19118
  __decorate([
18742
19119
  bbjWidgetBase.Property('可视个数', { type: 'number' }),
18743
19120
  __metadata("design:type", Object)
18744
- ], exports.ɵdo.prototype, "slidesPerView", void 0);
19121
+ ], exports.ɵdp.prototype, "slidesPerView", void 0);
18745
19122
  __decorate([
18746
19123
  bbjWidgetBase.Property('间距', { type: 'number' }),
18747
19124
  __metadata("design:type", Object)
18748
- ], exports.ɵdo.prototype, "spaceBetween", void 0);
19125
+ ], exports.ɵdp.prototype, "spaceBetween", void 0);
18749
19126
  __decorate([
18750
19127
  bbjWidgetBase.Property('左右按钮', {
18751
19128
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18752
19129
  }),
18753
19130
  __metadata("design:type", Object)
18754
- ], exports.ɵdo.prototype, "navigation", void 0);
19131
+ ], exports.ɵdp.prototype, "navigation", void 0);
18755
19132
  __decorate([
18756
19133
  bbjWidgetBase.Property('按钮偏移', { type: 'number' }),
18757
19134
  __metadata("design:type", Object)
18758
- ], exports.ɵdo.prototype, "navigationMoveVal", void 0);
19135
+ ], exports.ɵdp.prototype, "navigationMoveVal", void 0);
18759
19136
  __decorate([
18760
19137
  bbjWidgetBase.Property('左图标', {
18761
19138
  type: 'string',
@@ -18764,7 +19141,7 @@
18764
19141
  },
18765
19142
  }),
18766
19143
  __metadata("design:type", Object)
18767
- ], exports.ɵdo.prototype, "navigationLeftIcon", void 0);
19144
+ ], exports.ɵdp.prototype, "navigationLeftIcon", void 0);
18768
19145
  __decorate([
18769
19146
  bbjWidgetBase.Property('右图标', {
18770
19147
  type: 'string',
@@ -18773,14 +19150,14 @@
18773
19150
  },
18774
19151
  }),
18775
19152
  __metadata("design:type", Object)
18776
- ], exports.ɵdo.prototype, "navigationRightIcon", void 0);
19153
+ ], exports.ɵdp.prototype, "navigationRightIcon", void 0);
18777
19154
  __decorate([
18778
19155
  bbjWidgetBase.Property('显示模式', {
18779
19156
  ui: { widget: 'select' },
18780
19157
  enum: [{ label: '图标卡片', value: 'card' }],
18781
19158
  }),
18782
19159
  __metadata("design:type", Object)
18783
- ], exports.ɵdo.prototype, "showType", void 0);
19160
+ ], exports.ɵdp.prototype, "showType", void 0);
18784
19161
  __decorate([
18785
19162
  bbjWidgetBase.Property('卡片背景', {
18786
19163
  type: 'string',
@@ -18789,7 +19166,7 @@
18789
19166
  },
18790
19167
  }),
18791
19168
  __metadata("design:type", Object)
18792
- ], exports.ɵdo.prototype, "cardBgImg", void 0);
19169
+ ], exports.ɵdp.prototype, "cardBgImg", void 0);
18793
19170
  __decorate([
18794
19171
  bbjWidgetBase.Property('表盘颜色', {
18795
19172
  ui: {
@@ -18799,81 +19176,81 @@
18799
19176
  },
18800
19177
  }),
18801
19178
  __metadata("design:type", Object)
18802
- ], exports.ɵdo.prototype, "seriesColor", void 0);
19179
+ ], exports.ɵdp.prototype, "seriesColor", void 0);
18803
19180
  __decorate([
18804
19181
  bbjWidgetBase.Property('表盘宽度', {
18805
19182
  ui: { widget: 'myRange', min: 0, max: 100, step: 1 },
18806
19183
  }),
18807
19184
  __metadata("design:type", Object)
18808
- ], exports.ɵdo.prototype, "width", void 0);
19185
+ ], exports.ɵdp.prototype, "width", void 0);
18809
19186
  __decorate([
18810
19187
  bbjWidgetBase.Property('起始角度', {
18811
19188
  ui: { widget: 'myRange', min: 90, max: 360, step: 1 },
18812
19189
  }),
18813
19190
  __metadata("design:type", Object)
18814
- ], exports.ɵdo.prototype, "startAngle", void 0);
19191
+ ], exports.ɵdp.prototype, "startAngle", void 0);
18815
19192
  __decorate([
18816
19193
  bbjWidgetBase.Property('结束角度', {
18817
19194
  ui: { widget: 'myRange', min: -90, max: 90, step: 1 },
18818
19195
  }),
18819
19196
  __metadata("design:type", Object)
18820
- ], exports.ɵdo.prototype, "endAngle", void 0);
19197
+ ], exports.ɵdp.prototype, "endAngle", void 0);
18821
19198
  __decorate([
18822
19199
  bbjWidgetBase.Property('显示标题', {
18823
19200
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18824
19201
  }),
18825
19202
  __metadata("design:type", Object)
18826
- ], exports.ɵdo.prototype, "label", void 0);
19203
+ ], exports.ɵdp.prototype, "label", void 0);
18827
19204
  __decorate([
18828
19205
  bbjWidgetBase.Property('标题字体', { ui: { widget: 'myFont' } }),
18829
19206
  __metadata("design:type", Object)
18830
- ], exports.ɵdo.prototype, "font", void 0);
19207
+ ], exports.ɵdp.prototype, "font", void 0);
18831
19208
  __decorate([
18832
19209
  bbjWidgetBase.Property('标题位移', {
18833
19210
  ui: { widget: 'number' },
18834
19211
  }),
18835
19212
  __metadata("design:type", Object)
18836
- ], exports.ɵdo.prototype, "labelOffset", void 0);
19213
+ ], exports.ɵdp.prototype, "labelOffset", void 0);
18837
19214
  __decorate([
18838
19215
  bbjWidgetBase.Property('标题宽度', {
18839
19216
  ui: { widget: 'number' },
18840
19217
  }),
18841
19218
  __metadata("design:type", Object)
18842
- ], exports.ɵdo.prototype, "labelWidth", void 0);
19219
+ ], exports.ɵdp.prototype, "labelWidth", void 0);
18843
19220
  __decorate([
18844
19221
  bbjWidgetBase.Property('显示数值', {
18845
19222
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18846
19223
  }),
18847
19224
  __metadata("design:type", Object)
18848
- ], exports.ɵdo.prototype, "labelVal", void 0);
19225
+ ], exports.ɵdp.prototype, "labelVal", void 0);
18849
19226
  __decorate([
18850
19227
  bbjWidgetBase.Property('数值字体', { ui: { widget: 'myFont' } }),
18851
19228
  __metadata("design:type", Object)
18852
- ], exports.ɵdo.prototype, "numFont", void 0);
19229
+ ], exports.ɵdp.prototype, "numFont", void 0);
18853
19230
  __decorate([
18854
19231
  bbjWidgetBase.Property('百分号', {
18855
19232
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
18856
19233
  }),
18857
19234
  __metadata("design:type", Object)
18858
- ], exports.ɵdo.prototype, "percent", void 0);
19235
+ ], exports.ɵdp.prototype, "percent", void 0);
18859
19236
  __decorate([
18860
19237
  bbjWidgetBase.Property('数值位移', {
18861
19238
  ui: { widget: 'number' },
18862
19239
  }),
18863
19240
  __metadata("design:type", Object)
18864
- ], exports.ɵdo.prototype, "labelValOffset", void 0);
19241
+ ], exports.ɵdp.prototype, "labelValOffset", void 0);
18865
19242
  __decorate([
18866
19243
  bbjWidgetBase.Property('最大值', {
18867
19244
  ui: { widget: 'number' },
18868
19245
  }),
18869
19246
  __metadata("design:type", Object)
18870
- ], exports.ɵdo.prototype, "max", void 0);
19247
+ ], exports.ɵdp.prototype, "max", void 0);
18871
19248
  __decorate([
18872
19249
  bbjWidgetBase.Property('最小值', {
18873
19250
  ui: { widget: 'number' },
18874
19251
  }),
18875
19252
  __metadata("design:type", Object)
18876
- ], exports.ɵdo.prototype, "min", void 0);
19253
+ ], exports.ɵdp.prototype, "min", void 0);
18877
19254
  __decorate([
18878
19255
  bbjWidgetBase.Property('进度颜色', {
18879
19256
  ui: {
@@ -18882,7 +19259,7 @@
18882
19259
  },
18883
19260
  }),
18884
19261
  __metadata("design:type", Object)
18885
- ], exports.ɵdo.prototype, "progressColor", void 0);
19262
+ ], exports.ɵdp.prototype, "progressColor", void 0);
18886
19263
  __decorate([
18887
19264
  bbjWidgetBase.Property('进度阴影', {
18888
19265
  ui: {
@@ -18891,7 +19268,7 @@
18891
19268
  },
18892
19269
  }),
18893
19270
  __metadata("design:type", Object)
18894
- ], exports.ɵdo.prototype, "progressShadow", void 0);
19271
+ ], exports.ɵdp.prototype, "progressShadow", void 0);
18895
19272
  __decorate([
18896
19273
  bbjWidgetBase.Data({
18897
19274
  properties: {
@@ -18900,25 +19277,25 @@
18900
19277
  },
18901
19278
  }),
18902
19279
  __metadata("design:type", Object)
18903
- ], exports.ɵdo.prototype, "_data", void 0);
18904
- exports.ɵdo = __decorate([
19280
+ ], exports.ɵdp.prototype, "_data", void 0);
19281
+ exports.ɵdp = __decorate([
18905
19282
  bbjWidgetBase.Widget('进度条仪表盘', {
18906
19283
  group: 'otherChart',
18907
19284
  image: 'assets/img/screen/gauge-progress.png',
18908
19285
  icon: 'icontubiao',
18909
19286
  }),
18910
19287
  __metadata("design:paramtypes", [])
18911
- ], exports.ɵdo);
19288
+ ], exports.ɵdp);
18912
19289
 
18913
19290
  var GaugeProgressModule = /** @class */ (function () {
18914
19291
  function GaugeProgressModule(widgetService) {
18915
- widgetService.register(exports.ɵdo);
19292
+ widgetService.register(exports.ɵdp);
18916
19293
  }
18917
19294
  return GaugeProgressModule;
18918
19295
  }());
18919
19296
  GaugeProgressModule.decorators = [
18920
19297
  { type: i0.NgModule, args: [{
18921
- declarations: [exports.ɵdo],
19298
+ declarations: [exports.ɵdp],
18922
19299
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, ngxEcharts.NgxEchartsModule],
18923
19300
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
18924
19301
  },] }
@@ -18927,7 +19304,7 @@
18927
19304
  { type: bbjWidgetBase.WidgetService }
18928
19305
  ]; };
18929
19306
 
18930
- exports.ɵds = /** @class */ (function () {
19307
+ exports.ɵdt = /** @class */ (function () {
18931
19308
  function BulletinBoardComponent() {
18932
19309
  this.title = '';
18933
19310
  this.titleFont = { family: '', color: '#ffffff', weight: 'normal', size: 20, space: 0, lineHeight: 40 };
@@ -19002,30 +19379,30 @@
19002
19379
  };
19003
19380
  return BulletinBoardComponent;
19004
19381
  }());
19005
- exports.ɵds.decorators = [
19382
+ exports.ɵdt.decorators = [
19006
19383
  { type: i0.Component, args: [{
19007
19384
  selector: 'sc-bulletin-board',
19008
19385
  template: "<div class=\"content\">\n <div *ngIf=\"title\" class=\"title\">\n <p [ngStyle]=\"titleStyle\">{{ title }}</p>\n </div>\n <div class=\"module\" *ngFor=\"let item of contentArr\">\n <div class=\"subtitle\" [ngStyle]=\"subtitleStyle\">\n {{ item.title }}\n </div>\n <div class=\"box\" [ngStyle]=\"boxStyle\">\n <div class=\"text\" [ngStyle]=\"textStyle\" *ngFor=\"let a of item.content\">\n {{ a }}\n </div>\n </div>\n </div>\n</div>\n",
19009
19386
  styles: [".content,:host{width:100%;height:100%}.content{display:block;padding:0 5%;overflow-y:scroll}.content .title{padding:10% 0 5%}.content .text{margin-bottom:10px;padding-left:5%}.content .subtitle{margin-bottom:3%;padding-left:5%}.content::-webkit-scrollbar{display:none}"]
19010
19387
  },] }
19011
19388
  ];
19012
- exports.ɵds.ctorParameters = function () { return []; };
19389
+ exports.ɵdt.ctorParameters = function () { return []; };
19013
19390
  __decorate([
19014
19391
  bbjWidgetBase.Property('标题', { type: 'string' }),
19015
19392
  __metadata("design:type", Object)
19016
- ], exports.ɵds.prototype, "title", void 0);
19393
+ ], exports.ɵdt.prototype, "title", void 0);
19017
19394
  __decorate([
19018
19395
  bbjWidgetBase.Property('标题字体', { ui: { widget: 'myFont' } }),
19019
19396
  __metadata("design:type", Object)
19020
- ], exports.ɵds.prototype, "titleFont", void 0);
19397
+ ], exports.ɵdt.prototype, "titleFont", void 0);
19021
19398
  __decorate([
19022
19399
  bbjWidgetBase.Property('小标题字', { ui: { widget: 'myFont' } }),
19023
19400
  __metadata("design:type", Object)
19024
- ], exports.ɵds.prototype, "subtitleFont", void 0);
19401
+ ], exports.ɵdt.prototype, "subtitleFont", void 0);
19025
19402
  __decorate([
19026
19403
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
19027
19404
  __metadata("design:type", Object)
19028
- ], exports.ɵds.prototype, "font", void 0);
19405
+ ], exports.ɵdt.prototype, "font", void 0);
19029
19406
  __decorate([
19030
19407
  bbjWidgetBase.Property('边框颜色', {
19031
19408
  ui: {
@@ -19034,7 +19411,7 @@
19034
19411
  },
19035
19412
  }),
19036
19413
  __metadata("design:type", Object)
19037
- ], exports.ɵds.prototype, "borderColor", void 0);
19414
+ ], exports.ɵdt.prototype, "borderColor", void 0);
19038
19415
  __decorate([
19039
19416
  bbjWidgetBase.Property('渐变开始', {
19040
19417
  ui: {
@@ -19043,7 +19420,7 @@
19043
19420
  },
19044
19421
  }),
19045
19422
  __metadata("design:type", Object)
19046
- ], exports.ɵds.prototype, "startColor", void 0);
19423
+ ], exports.ɵdt.prototype, "startColor", void 0);
19047
19424
  __decorate([
19048
19425
  bbjWidgetBase.Property('渐变结束', {
19049
19426
  ui: {
@@ -19052,25 +19429,25 @@
19052
19429
  },
19053
19430
  }),
19054
19431
  __metadata("design:type", Object)
19055
- ], exports.ɵds.prototype, "endColor", void 0);
19432
+ ], exports.ɵdt.prototype, "endColor", void 0);
19056
19433
  __decorate([
19057
19434
  bbjWidgetBase.Property('边框粗细', {
19058
19435
  type: 'number'
19059
19436
  }),
19060
19437
  __metadata("design:type", Object)
19061
- ], exports.ɵds.prototype, "borderWidth", void 0);
19438
+ ], exports.ɵdt.prototype, "borderWidth", void 0);
19062
19439
  __decorate([
19063
19440
  bbjWidgetBase.Property('分隔符', {
19064
19441
  type: 'string'
19065
19442
  }),
19066
19443
  __metadata("design:type", Object)
19067
- ], exports.ɵds.prototype, "separate", void 0);
19444
+ ], exports.ɵdt.prototype, "separate", void 0);
19068
19445
  __decorate([
19069
19446
  bbjWidgetBase.Property('内容边距', {
19070
19447
  type: 'number'
19071
19448
  }),
19072
19449
  __metadata("design:type", Object)
19073
- ], exports.ɵds.prototype, "marginSize", void 0);
19450
+ ], exports.ɵdt.prototype, "marginSize", void 0);
19074
19451
  __decorate([
19075
19452
  bbjWidgetBase.Data({
19076
19453
  properties: {
@@ -19079,22 +19456,22 @@
19079
19456
  },
19080
19457
  }),
19081
19458
  __metadata("design:type", Object)
19082
- ], exports.ɵds.prototype, "_data", void 0);
19083
- exports.ɵds = __decorate([
19459
+ ], exports.ɵdt.prototype, "_data", void 0);
19460
+ exports.ɵdt = __decorate([
19084
19461
  bbjWidgetBase.Widget('布告栏', { group: 'component', icon: 'icontubiao', image: '/assets/img/screen/bulletin-board.png' }),
19085
19462
  __metadata("design:paramtypes", [])
19086
- ], exports.ɵds);
19463
+ ], exports.ɵdt);
19087
19464
 
19088
19465
  var BulletinBoardModule = /** @class */ (function () {
19089
19466
  function BulletinBoardModule(widgetService) {
19090
- widgetService.register(exports.ɵds);
19467
+ widgetService.register(exports.ɵdt);
19091
19468
  }
19092
19469
  return BulletinBoardModule;
19093
19470
  }());
19094
19471
  BulletinBoardModule.decorators = [
19095
19472
  { type: i0.NgModule, args: [{
19096
19473
  declarations: [
19097
- exports.ɵds
19474
+ exports.ɵdt
19098
19475
  ],
19099
19476
  imports: [
19100
19477
  common.CommonModule
@@ -19117,7 +19494,7 @@
19117
19494
  // Thumbs,
19118
19495
  // Controller
19119
19496
  // ]);
19120
- exports.ɵdq = /** @class */ (function () {
19497
+ exports.ɵdr = /** @class */ (function () {
19121
19498
  function ItemSwiperComponent(ele) {
19122
19499
  this.ele = ele;
19123
19500
  this.font = { family: 'Microsoft YaHei', color: '#ffffff', weight: 'normal', size: 20, space: 0, lineHeight: '66' };
@@ -19281,58 +19658,58 @@
19281
19658
  ItemSwiperComponent.prototype.onSlideChange = function () { };
19282
19659
  return ItemSwiperComponent;
19283
19660
  }());
19284
- exports.ɵdq.decorators = [
19661
+ exports.ɵdr.decorators = [
19285
19662
  { type: i0.Component, args: [{
19286
19663
  selector: 'sc-item-swiper',
19287
19664
  template: "<swiper-container appSwiper\n #swiper\n [attr.slides-per-view]=\"slidesPerView\"\n [attr.space-between]=\"spaceBetween\"\n [attr.navigation]=\"navigation && navigationLeftIcon && navigationRightIcon ? navigationBtnConfig : navigation\"\n class=\"swiper-no-swiping\"\n [attr.no-swiping]=\"true\"\n>\n <swiper-slide *ngFor=\"let item of data\">\n <ng-container *ngIf=\"!isgroup\">\n <div class=\"item-img\">\n <div class=\"item-val\" [ngStyle]=\"numfont\">{{ item.value }}</div>\n <img [src]=\"item.img\" alt=\"\" [ngStyle]=\"item.imgstyle\" />\n </div>\n <div [ngStyle]=\"font\">{{ item.label }}</div>\n </ng-container>\n <!-- <ng-container *ngFor=\"let i of item\"> -->\n <ng-container *ngIf=\"isgroup\">\n <div class=\"content\" [style.height]=\"selectHeight + 'px'\">\n <div [ngStyle]=\"groupfont\" class=\"title\">{{ item.group }}</div>\n <div class=\"item-img\">\n <!-- <ng-container *ngIf=\"item.img\"> -->\n <img [src]=\"item.img\" alt=\"\" [ngStyle]=\"item.imgstyle\" />\n <!-- </ng-container> -->\n </div>\n <div class=\"kvbox\" [style.bottom]=\"valueBottom + 'px'\">\n <div style=\"display: inline-flex\">\n <ng-container *ngFor=\"let a of item.field\">\n <span style=\"flex: 1; left: 0px\" class=\"label\">\n <div [ngStyle]=\"font\">{{ a.label }}</div>\n <div [ngStyle]=\"numfont\">{{ a.value }}</div>\n </span>\n </ng-container>\n </div>\n </div>\n </div>\n </ng-container>\n <!-- </ng-container> -->\n </swiper-slide>\n</swiper-container>\n<ng-container *ngIf=\"navigationLeftIcon && navigationRightIcon\">\n <div class=\"navigationbtn swiper-navigation-prev\" [style.left.px]=\"navigationMoveVal || -60\" [class.hidden]=\"!showNavigation\">\n <img [src]=\"navigationLeftIcon\" alt=\"\" />\n </div>\n <div class=\"navigationbtn swiper-navigation-next\" [style.right.px]=\"navigationMoveVal || -60\" [class.hidden]=\"!showNavigation\">\n <img [src]=\"navigationRightIcon\" alt=\"\" />\n </div>\n</ng-container>\n",
19288
19665
  styles: [":host{position:relative;display:block}:host ::ng-deep swiper-container{width:100%}:host ::ng-deep .title{z-index:100;position:absolute;left:0;width:100%;text-align:center}:host ::ng-deep swiper-slide{text-align:center;position:relative;overflow:visible;padding-top:30px}:host ::ng-deep .content,:host ::ng-deep .item-img{position:relative;height:100%;width:100%}:host ::ng-deep .item-img img{display:block;margin:auto}:host ::ng-deep .item-val{position:absolute;text-align:center;top:0;bottom:0;left:0;width:100%;z-index:99;overflow:visible}:host ::ng-deep .navigationbtn{cursor:pointer;position:absolute;top:0;bottom:0;display:flex;align-items:center;outline:none}:host ::ng-deep .navigationbtn.hidden{display:none}:host ::ng-deep .swiper-navigation-prev{left:-60px}:host ::ng-deep .swiper-navigation-next{right:-60px}:host ::ng-deep .label{margin:0 8px}:host ::ng-deep .kvbox{position:absolute;text-align:center;left:0;width:100%;z-index:99}"]
19289
19666
  },] }
19290
19667
  ];
19291
- exports.ɵdq.ctorParameters = function () { return [
19668
+ exports.ɵdr.ctorParameters = function () { return [
19292
19669
  { type: i0.ElementRef }
19293
19670
  ]; };
19294
19671
  __decorate([
19295
19672
  bbjWidgetBase.Property('标题字体', { ui: { widget: 'myFont' } }),
19296
19673
  __metadata("design:type", Object)
19297
- ], exports.ɵdq.prototype, "font", void 0);
19674
+ ], exports.ɵdr.prototype, "font", void 0);
19298
19675
  __decorate([
19299
19676
  bbjWidgetBase.Property('数值字体', { ui: { widget: 'myFont' } }),
19300
19677
  __metadata("design:type", Object)
19301
- ], exports.ɵdq.prototype, "numfont", void 0);
19678
+ ], exports.ɵdr.prototype, "numfont", void 0);
19302
19679
  __decorate([
19303
19680
  bbjWidgetBase.Property('分组字体', { ui: { widget: 'myFont' } }),
19304
19681
  __metadata("design:type", Object)
19305
- ], exports.ɵdq.prototype, "titlefont", void 0);
19682
+ ], exports.ɵdr.prototype, "titlefont", void 0);
19306
19683
  __decorate([
19307
19684
  bbjWidgetBase.Property('可视个数', { type: 'number' }),
19308
19685
  __metadata("design:type", Object)
19309
- ], exports.ɵdq.prototype, "slidesPerView", void 0);
19686
+ ], exports.ɵdr.prototype, "slidesPerView", void 0);
19310
19687
  __decorate([
19311
19688
  bbjWidgetBase.Property('选项高度'),
19312
19689
  __metadata("design:type", Number)
19313
- ], exports.ɵdq.prototype, "selectHeight", void 0);
19690
+ ], exports.ɵdr.prototype, "selectHeight", void 0);
19314
19691
  __decorate([
19315
19692
  bbjWidgetBase.Property('分组高度', { type: 'number' }),
19316
19693
  __metadata("design:type", Object)
19317
- ], exports.ɵdq.prototype, "gourpHeight", void 0);
19694
+ ], exports.ɵdr.prototype, "gourpHeight", void 0);
19318
19695
  __decorate([
19319
19696
  bbjWidgetBase.Property('值高度', { type: 'number' }),
19320
19697
  __metadata("design:type", Object)
19321
- ], exports.ɵdq.prototype, "valueBottom", void 0);
19698
+ ], exports.ɵdr.prototype, "valueBottom", void 0);
19322
19699
  __decorate([
19323
19700
  bbjWidgetBase.Property('间距', { type: 'number' }),
19324
19701
  __metadata("design:type", Object)
19325
- ], exports.ɵdq.prototype, "spaceBetween", void 0);
19702
+ ], exports.ɵdr.prototype, "spaceBetween", void 0);
19326
19703
  __decorate([
19327
19704
  bbjWidgetBase.Property('左右按钮', {
19328
19705
  ui: { widget: 'boolean', checkedChildren: '开', unCheckedChildren: '关' },
19329
19706
  }),
19330
19707
  __metadata("design:type", Object)
19331
- ], exports.ɵdq.prototype, "navigation", void 0);
19708
+ ], exports.ɵdr.prototype, "navigation", void 0);
19332
19709
  __decorate([
19333
19710
  bbjWidgetBase.Property('按钮偏移', { type: 'number' }),
19334
19711
  __metadata("design:type", Object)
19335
- ], exports.ɵdq.prototype, "navigationMoveVal", void 0);
19712
+ ], exports.ɵdr.prototype, "navigationMoveVal", void 0);
19336
19713
  __decorate([
19337
19714
  bbjWidgetBase.Property('左图标', {
19338
19715
  type: 'string',
@@ -19341,7 +19718,7 @@
19341
19718
  },
19342
19719
  }),
19343
19720
  __metadata("design:type", Object)
19344
- ], exports.ɵdq.prototype, "navigationLeftIcon", void 0);
19721
+ ], exports.ɵdr.prototype, "navigationLeftIcon", void 0);
19345
19722
  __decorate([
19346
19723
  bbjWidgetBase.Property('右图标', {
19347
19724
  type: 'string',
@@ -19350,14 +19727,14 @@
19350
19727
  },
19351
19728
  }),
19352
19729
  __metadata("design:type", Object)
19353
- ], exports.ɵdq.prototype, "navigationRightIcon", void 0);
19730
+ ], exports.ɵdr.prototype, "navigationRightIcon", void 0);
19354
19731
  __decorate([
19355
19732
  bbjWidgetBase.Property('显示模式', {
19356
19733
  ui: { widget: 'select' },
19357
19734
  enum: [{ label: '图标卡片', value: 'card' }],
19358
19735
  }),
19359
19736
  __metadata("design:type", Object)
19360
- ], exports.ɵdq.prototype, "showType", void 0);
19737
+ ], exports.ɵdr.prototype, "showType", void 0);
19361
19738
  __decorate([
19362
19739
  bbjWidgetBase.Property('卡片背景', {
19363
19740
  type: 'string',
@@ -19366,19 +19743,19 @@
19366
19743
  },
19367
19744
  }),
19368
19745
  __metadata("design:type", Object)
19369
- ], exports.ɵdq.prototype, "cardBgImg", void 0);
19746
+ ], exports.ɵdr.prototype, "cardBgImg", void 0);
19370
19747
  __decorate([
19371
19748
  bbjWidgetBase.Property('图片高度'),
19372
19749
  __metadata("design:type", Number)
19373
- ], exports.ɵdq.prototype, "height", void 0);
19750
+ ], exports.ɵdr.prototype, "height", void 0);
19374
19751
  __decorate([
19375
19752
  bbjWidgetBase.Property('图片宽度'),
19376
19753
  __metadata("design:type", Number)
19377
- ], exports.ɵdq.prototype, "width", void 0);
19754
+ ], exports.ɵdr.prototype, "width", void 0);
19378
19755
  __decorate([
19379
19756
  bbjWidgetBase.Property('是否分组'),
19380
19757
  __metadata("design:type", Boolean)
19381
- ], exports.ɵdq.prototype, "isgroup", void 0);
19758
+ ], exports.ɵdr.prototype, "isgroup", void 0);
19382
19759
  __decorate([
19383
19760
  bbjWidgetBase.Property('图片分类', {
19384
19761
  type: 'array',
@@ -19400,7 +19777,7 @@
19400
19777
  ui: { visibleIf: { isgroup: [false] }, grid: { arraySpan: 24 }, spanControl: 24 },
19401
19778
  }),
19402
19779
  __metadata("design:type", Object)
19403
- ], exports.ɵdq.prototype, "images", void 0);
19780
+ ], exports.ɵdr.prototype, "images", void 0);
19404
19781
  __decorate([
19405
19782
  bbjWidgetBase.Property('新增分组', {
19406
19783
  type: 'array',
@@ -19426,7 +19803,7 @@
19426
19803
  ui: { visibleIf: { isgroup: [true] }, grid: { arraySpan: 24 }, spanControl: 24 },
19427
19804
  }),
19428
19805
  __metadata("design:type", Object)
19429
- ], exports.ɵdq.prototype, "groups", void 0);
19806
+ ], exports.ɵdr.prototype, "groups", void 0);
19430
19807
  __decorate([
19431
19808
  bbjWidgetBase.Data({
19432
19809
  properties: {
@@ -19436,25 +19813,25 @@
19436
19813
  },
19437
19814
  }),
19438
19815
  __metadata("design:type", Array)
19439
- ], exports.ɵdq.prototype, "_data", void 0);
19816
+ ], exports.ɵdr.prototype, "_data", void 0);
19440
19817
  __decorate([
19441
19818
  bbjWidgetBase.DataOutput('值'),
19442
19819
  __metadata("design:type", Object)
19443
- ], exports.ɵdq.prototype, "valueChange", void 0);
19444
- exports.ɵdq = __decorate([
19820
+ ], exports.ɵdr.prototype, "valueChange", void 0);
19821
+ exports.ɵdr = __decorate([
19445
19822
  bbjWidgetBase.Widget('轮播', { group: 'component', image: 'assets/img/screen/item-swiper.png', icon: 'iconmokuai' }),
19446
19823
  __metadata("design:paramtypes", [i0.ElementRef])
19447
- ], exports.ɵdq);
19824
+ ], exports.ɵdr);
19448
19825
 
19449
19826
  var ItemSwiperModule = /** @class */ (function () {
19450
19827
  function ItemSwiperModule(widgetService) {
19451
- widgetService.register(exports.ɵdq);
19828
+ widgetService.register(exports.ɵdr);
19452
19829
  }
19453
19830
  return ItemSwiperModule;
19454
19831
  }());
19455
19832
  ItemSwiperModule.decorators = [
19456
19833
  { type: i0.NgModule, args: [{
19457
- declarations: [exports.ɵdq],
19834
+ declarations: [exports.ɵdr],
19458
19835
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, space.NzSpaceModule],
19459
19836
  schemas: [i0.CUSTOM_ELEMENTS_SCHEMA],
19460
19837
  },] }
@@ -19463,7 +19840,7 @@
19463
19840
  { type: bbjWidgetBase.WidgetService }
19464
19841
  ]; };
19465
19842
 
19466
- exports.ɵdu = /** @class */ (function () {
19843
+ exports.ɵdv = /** @class */ (function () {
19467
19844
  function TemporaryDataComponent(renderer, elementRef) {
19468
19845
  this.renderer = renderer;
19469
19846
  this.elementRef = elementRef;
@@ -19485,39 +19862,39 @@
19485
19862
  };
19486
19863
  return TemporaryDataComponent;
19487
19864
  }());
19488
- exports.ɵdu.decorators = [
19865
+ exports.ɵdv.decorators = [
19489
19866
  { type: i0.Component, args: [{
19490
19867
  selector: 'sc-temporary-data',
19491
19868
  template: "<i nz-icon nzType=\"database\" nzTheme=\"outline\"></i>",
19492
19869
  styles: [":host{font-size:40px;color:#1890ff}"]
19493
19870
  },] }
19494
19871
  ];
19495
- exports.ɵdu.ctorParameters = function () { return [
19872
+ exports.ɵdv.ctorParameters = function () { return [
19496
19873
  { type: i0.Renderer2 },
19497
19874
  { type: i0.ElementRef }
19498
19875
  ]; };
19499
19876
  __decorate([
19500
19877
  bbjWidgetBase.Data({}),
19501
19878
  __metadata("design:type", Array)
19502
- ], exports.ɵdu.prototype, "data", void 0);
19879
+ ], exports.ɵdv.prototype, "data", void 0);
19503
19880
  __decorate([
19504
19881
  bbjWidgetBase.DataOutput('数据'),
19505
19882
  __metadata("design:type", Object)
19506
- ], exports.ɵdu.prototype, "dataChange", void 0);
19507
- exports.ɵdu = __decorate([
19883
+ ], exports.ɵdv.prototype, "dataChange", void 0);
19884
+ exports.ɵdv = __decorate([
19508
19885
  bbjWidgetBase.Widget('临时数据', { group: 'component', image: 'assets/img/screen/temporary-data.png', icon: 'iconmokuai' }),
19509
19886
  __metadata("design:paramtypes", [i0.Renderer2, i0.ElementRef])
19510
- ], exports.ɵdu);
19887
+ ], exports.ɵdv);
19511
19888
 
19512
19889
  var TemporaryDataModule = /** @class */ (function () {
19513
19890
  function TemporaryDataModule(widgetService) {
19514
- widgetService.register(exports.ɵdu);
19891
+ widgetService.register(exports.ɵdv);
19515
19892
  }
19516
19893
  return TemporaryDataModule;
19517
19894
  }());
19518
19895
  TemporaryDataModule.decorators = [
19519
19896
  { type: i0.NgModule, args: [{
19520
- declarations: [exports.ɵdu],
19897
+ declarations: [exports.ɵdv],
19521
19898
  imports: [common.CommonModule, icon.NzIconModule],
19522
19899
  },] }
19523
19900
  ];
@@ -19525,7 +19902,7 @@
19525
19902
  { type: bbjWidgetBase.WidgetService }
19526
19903
  ]; };
19527
19904
 
19528
- exports.ɵdw = /** @class */ (function () {
19905
+ exports.ɵdx = /** @class */ (function () {
19529
19906
  function LineLightFlowComponent() {
19530
19907
  this.lineColor = '#004CB3';
19531
19908
  this.lineshadowColor = 'rgba(0, 193, 220, 1)';
@@ -19709,15 +20086,15 @@
19709
20086
  };
19710
20087
  return LineLightFlowComponent;
19711
20088
  }());
19712
- exports.ɵdw.decorators = [
20089
+ exports.ɵdx.decorators = [
19713
20090
  { type: i0.Component, args: [{
19714
20091
  selector: 'sc-line-light-flow',
19715
20092
  template: "<div #canvasBox [style.paddingTop]=\"topDistance + 'px'\">\r\n <canvas #lineCanvas></canvas>\r\n</div>\r\n",
19716
20093
  styles: [""]
19717
20094
  },] }
19718
20095
  ];
19719
- exports.ɵdw.ctorParameters = function () { return []; };
19720
- exports.ɵdw.propDecorators = {
20096
+ exports.ɵdx.ctorParameters = function () { return []; };
20097
+ exports.ɵdx.propDecorators = {
19721
20098
  lineCanvas: [{ type: i0.ViewChild, args: ['lineCanvas',] }],
19722
20099
  canvasBox: [{ type: i0.ViewChild, args: ['canvasBox',] }],
19723
20100
  resize: [{ type: i0.HostListener, args: ['window:resize',] }]
@@ -19729,7 +20106,7 @@
19729
20106
  },
19730
20107
  }),
19731
20108
  __metadata("design:type", Object)
19732
- ], exports.ɵdw.prototype, "lineColor", void 0);
20109
+ ], exports.ɵdx.prototype, "lineColor", void 0);
19733
20110
  __decorate([
19734
20111
  bbjWidgetBase.Property('线条阴影', {
19735
20112
  ui: {
@@ -19737,7 +20114,7 @@
19737
20114
  },
19738
20115
  }),
19739
20116
  __metadata("design:type", Object)
19740
- ], exports.ɵdw.prototype, "lineshadowColor", void 0);
20117
+ ], exports.ɵdx.prototype, "lineshadowColor", void 0);
19741
20118
  __decorate([
19742
20119
  bbjWidgetBase.Property('高亮颜色', {
19743
20120
  ui: {
@@ -19745,36 +20122,36 @@
19745
20122
  },
19746
20123
  }),
19747
20124
  __metadata("design:type", Object)
19748
- ], exports.ɵdw.prototype, "lineHightLightColor", void 0);
20125
+ ], exports.ɵdx.prototype, "lineHightLightColor", void 0);
19749
20126
  __decorate([
19750
20127
  bbjWidgetBase.Property('中间间距', {
19751
20128
  type: 'number'
19752
20129
  }),
19753
20130
  __metadata("design:type", Object)
19754
- ], exports.ɵdw.prototype, "distance", void 0);
20131
+ ], exports.ɵdx.prototype, "distance", void 0);
19755
20132
  __decorate([
19756
20133
  bbjWidgetBase.Property('上边距', {
19757
20134
  type: 'number'
19758
20135
  }),
19759
20136
  __metadata("design:type", Object)
19760
- ], exports.ɵdw.prototype, "topDistance", void 0);
19761
- exports.ɵdw = __decorate([
20137
+ ], exports.ɵdx.prototype, "topDistance", void 0);
20138
+ exports.ɵdx = __decorate([
19762
20139
  bbjWidgetBase.Widget('光线特效', {
19763
20140
  group: 'mipAnim',
19764
20141
  }),
19765
20142
  __metadata("design:paramtypes", [])
19766
- ], exports.ɵdw);
20143
+ ], exports.ɵdx);
19767
20144
 
19768
20145
  var LineLightFlowModule = /** @class */ (function () {
19769
20146
  function LineLightFlowModule(widgetService) {
19770
- widgetService.register(exports.ɵdw);
20147
+ widgetService.register(exports.ɵdx);
19771
20148
  }
19772
20149
  return LineLightFlowModule;
19773
20150
  }());
19774
20151
  LineLightFlowModule.decorators = [
19775
20152
  { type: i0.NgModule, args: [{
19776
20153
  declarations: [
19777
- exports.ɵdw
20154
+ exports.ɵdx
19778
20155
  ],
19779
20156
  imports: [
19780
20157
  common.CommonModule,
@@ -19786,7 +20163,7 @@
19786
20163
  { type: bbjWidgetBase.WidgetService }
19787
20164
  ]; };
19788
20165
 
19789
- exports.ɵdx = /** @class */ (function () {
20166
+ exports.ɵdy = /** @class */ (function () {
19790
20167
  function IframeComponent() {
19791
20168
  }
19792
20169
  IframeComponent.prototype.ngOnChanges = function (changes) {
@@ -19802,43 +20179,43 @@
19802
20179
  };
19803
20180
  return IframeComponent;
19804
20181
  }());
19805
- exports.ɵdx.decorators = [
20182
+ exports.ɵdy.decorators = [
19806
20183
  { type: i0.Component, args: [{
19807
20184
  selector: 'sc-iframe',
19808
20185
  template: "<iframe *ngIf=\"url\" [class.edit]=\"edit\" [src]=\"url | nzSanitizer: 'resourceUrl'\"> </iframe>\n",
19809
20186
  styles: [":host{display:block}:host,iframe{width:100%;height:100%}iframe{border:none}iframe.edit{pointer-events:none}"]
19810
20187
  },] }
19811
20188
  ];
19812
- exports.ɵdx.ctorParameters = function () { return []; };
20189
+ exports.ɵdy.ctorParameters = function () { return []; };
19813
20190
  __decorate([
19814
20191
  bbjWidgetBase.Property('url'),
19815
20192
  __metadata("design:type", String)
19816
- ], exports.ɵdx.prototype, "url", void 0);
20193
+ ], exports.ɵdy.prototype, "url", void 0);
19817
20194
  __decorate([
19818
20195
  bbjWidgetBase.Data({ properties: { url: { type: 'string', title: 'url' } } }),
19819
20196
  __metadata("design:type", Array)
19820
- ], exports.ɵdx.prototype, "data", void 0);
20197
+ ], exports.ɵdy.prototype, "data", void 0);
19821
20198
  __decorate([
19822
20199
  bbjWidgetBase.Method('设置url'),
19823
20200
  __param(0, bbjWidgetBase.Param('url')),
19824
20201
  __metadata("design:type", Function),
19825
20202
  __metadata("design:paramtypes", [String]),
19826
20203
  __metadata("design:returntype", void 0)
19827
- ], exports.ɵdx.prototype, "setUrl", null);
19828
- exports.ɵdx = __decorate([
20204
+ ], exports.ɵdy.prototype, "setUrl", null);
20205
+ exports.ɵdy = __decorate([
19829
20206
  bbjWidgetBase.Widget('iframe', { group: 'component', image: 'assets/img/screen/iframe.png', icon: 'iconmokuai' }),
19830
20207
  __metadata("design:paramtypes", [])
19831
- ], exports.ɵdx);
20208
+ ], exports.ɵdy);
19832
20209
 
19833
20210
  var IframeModule = /** @class */ (function () {
19834
20211
  function IframeModule(widgetService) {
19835
- widgetService.register(exports.ɵdx);
20212
+ widgetService.register(exports.ɵdy);
19836
20213
  }
19837
20214
  return IframeModule;
19838
20215
  }());
19839
20216
  IframeModule.decorators = [
19840
20217
  { type: i0.NgModule, args: [{
19841
- declarations: [exports.ɵdx],
20218
+ declarations: [exports.ɵdy],
19842
20219
  imports: [common.CommonModule, pipes.NzPipesModule],
19843
20220
  },] }
19844
20221
  ];
@@ -19846,7 +20223,7 @@
19846
20223
  { type: bbjWidgetBase.WidgetService }
19847
20224
  ]; };
19848
20225
 
19849
- exports.ɵdy = /** @class */ (function () {
20226
+ exports.ɵdz = /** @class */ (function () {
19850
20227
  function VideoGridComponent() {
19851
20228
  this.size = 4;
19852
20229
  this.gutter = 4;
@@ -19927,14 +20304,14 @@
19927
20304
  };
19928
20305
  return VideoGridComponent;
19929
20306
  }());
19930
- exports.ɵdy.decorators = [
20307
+ exports.ɵdz.decorators = [
19931
20308
  { type: i0.Component, args: [{
19932
20309
  selector: 'sc-video-grid',
19933
20310
  template: "<!-- <div nz-row style=\"height: 100%\" [nzGutter]=\"[gutter, gutter]\">\n \n</div> -->\n<div *ngIf=\"showToggle\" class=\"grid-top\">\n <div class=\"toggle-btn\" (click)=\"toggle()\">\n <img src=\"/assets/img/screen/grid.png\" />\n <span>\u5207\u6362</span>\n </div>\n</div>\n<div class=\"video-grid\">\n <div class=\"video-grid-inner\" [style.margin.px]=\"margin\" [style.height]=\"height\">\n <div\n *ngFor=\"let video of videos; let i = index\"\n class=\"grid-cell\"\n [style.width]=\"cellSize\"\n [style.height]=\"cellSize\"\n [style.padding.px]=\"gutter\"\n >\n <div class=\"video-container\" [class.selected]=\"i === selectedIndex\" (click)=\"selectedIndex = i\">\n <sc-video-player [type]=\"type\" [src]=\"video.src\" [hasAudio]=\"hasAudio\"></sc-video-player>\n <div *ngIf=\"video.src\" class=\"video-top\">\n <i\n class=\"close\"\n nz-icon\n nzType=\"close\"\n nzTheme=\"outline\"\n (click)=\"$event.stopPropagation(); video.src = null\"\n ></i>\n </div>\n </div>\n </div>\n </div>\n</div>\n",
19934
20311
  styles: [":host{display:flex;flex-direction:column;height:100%;width:100%}.grid-top{flex:none;justify-content:flex-end;padding:10px 0}.grid-top,.toggle-btn{display:flex;align-items:center}.toggle-btn{cursor:pointer;color:#fff}.toggle-btn img{width:14px;height:14px;margin-right:4px}.video-grid{flex:1;width:100%;height:100%}.video-grid-inner{display:flex;height:100%;flex-wrap:wrap;pointer-events:none}.video-container{position:relative;pointer-events:auto;height:100%}.video-container:not(:hover)>.video-top{display:none}.video-top{position:absolute;top:0;left:0;right:0;background-color:rgba(0,0,0,.6);height:30px;display:flex;align-items:center;justify-content:flex-end;padding:0 4px}.close{cursor:pointer;color:#fff;width:16px;height:16px}.selected{outline:2px solid red}"]
19935
20312
  },] }
19936
20313
  ];
19937
- exports.ɵdy.ctorParameters = function () { return []; };
20314
+ exports.ɵdz.ctorParameters = function () { return []; };
19938
20315
  __decorate([
19939
20316
  bbjWidgetBase.Property('宫格数', {
19940
20317
  enum: [
@@ -19943,27 +20320,27 @@
19943
20320
  ],
19944
20321
  }),
19945
20322
  __metadata("design:type", Object)
19946
- ], exports.ɵdy.prototype, "size", void 0);
20323
+ ], exports.ɵdz.prototype, "size", void 0);
19947
20324
  __decorate([
19948
20325
  bbjWidgetBase.Property('间隔', { type: 'number' }),
19949
20326
  __metadata("design:type", Object)
19950
- ], exports.ɵdy.prototype, "gutter", void 0);
20327
+ ], exports.ɵdz.prototype, "gutter", void 0);
19951
20328
  __decorate([
19952
20329
  bbjWidgetBase.Property('切换按钮'),
19953
20330
  __metadata("design:type", Boolean)
19954
- ], exports.ɵdy.prototype, "showToggle", void 0);
20331
+ ], exports.ɵdz.prototype, "showToggle", void 0);
19955
20332
  __decorate([
19956
20333
  bbjWidgetBase.Property('视频类型', { enum: ['flv', 'hls', 'iframe'] }),
19957
20334
  __metadata("design:type", Object)
19958
- ], exports.ɵdy.prototype, "type", void 0);
20335
+ ], exports.ɵdz.prototype, "type", void 0);
19959
20336
  __decorate([
19960
20337
  bbjWidgetBase.Property('是否有声音'),
19961
20338
  __metadata("design:type", Boolean)
19962
- ], exports.ɵdy.prototype, "hasAudio", void 0);
20339
+ ], exports.ɵdz.prototype, "hasAudio", void 0);
19963
20340
  __decorate([
19964
20341
  bbjWidgetBase.DataInput('视频地址'),
19965
20342
  __metadata("design:type", String)
19966
- ], exports.ɵdy.prototype, "src", void 0);
20343
+ ], exports.ɵdz.prototype, "src", void 0);
19967
20344
  __decorate([
19968
20345
  bbjWidgetBase.Data({
19969
20346
  properties: {
@@ -19971,28 +20348,28 @@
19971
20348
  },
19972
20349
  }),
19973
20350
  __metadata("design:type", Object)
19974
- ], exports.ɵdy.prototype, "data", void 0);
20351
+ ], exports.ɵdz.prototype, "data", void 0);
19975
20352
  __decorate([
19976
20353
  bbjWidgetBase.Method('设置视频地址'),
19977
20354
  __param(0, bbjWidgetBase.Param('视频地址')),
19978
20355
  __metadata("design:type", Function),
19979
20356
  __metadata("design:paramtypes", [String]),
19980
20357
  __metadata("design:returntype", void 0)
19981
- ], exports.ɵdy.prototype, "addSrc", null);
19982
- exports.ɵdy = __decorate([
20358
+ ], exports.ɵdz.prototype, "addSrc", null);
20359
+ exports.ɵdz = __decorate([
19983
20360
  bbjWidgetBase.Widget('视频宫格', { group: 'component', image: 'assets/img/screen/video-grid.png', icon: 'iconmokuai' }),
19984
20361
  __metadata("design:paramtypes", [])
19985
- ], exports.ɵdy);
20362
+ ], exports.ɵdz);
19986
20363
 
19987
20364
  var VideoGridModule = /** @class */ (function () {
19988
20365
  function VideoGridModule(widgetService) {
19989
- widgetService.register(exports.ɵdy);
20366
+ widgetService.register(exports.ɵdz);
19990
20367
  }
19991
20368
  return VideoGridModule;
19992
20369
  }());
19993
20370
  VideoGridModule.decorators = [
19994
20371
  { type: i0.NgModule, args: [{
19995
- declarations: [exports.ɵdy],
20372
+ declarations: [exports.ɵdz],
19996
20373
  imports: [common.CommonModule, VideoPlayerModule, grid.NzGridModule, icon.NzIconModule],
19997
20374
  },] }
19998
20375
  ];
@@ -20000,7 +20377,7 @@
20000
20377
  { type: bbjWidgetBase.WidgetService }
20001
20378
  ]; };
20002
20379
 
20003
- exports.ɵdz = /** @class */ (function () {
20380
+ exports.ɵea = /** @class */ (function () {
20004
20381
  function Scatter3dComponent() {
20005
20382
  this.min = 0;
20006
20383
  this.max = 10;
@@ -20090,30 +20467,30 @@
20090
20467
  Scatter3dComponent.prototype.onChartClick = function (event) { };
20091
20468
  return Scatter3dComponent;
20092
20469
  }());
20093
- exports.ɵdz.decorators = [
20470
+ exports.ɵea.decorators = [
20094
20471
  { type: i0.Component, args: [{
20095
20472
  selector: 'sc-scatter3d',
20096
20473
  template: "<div echarts [options]=\"options\" class=\"demo-chart\" (chartClick)=\"onChartClick($event)\"></div>\n",
20097
20474
  styles: [":host{display:block;width:100%}.demo-chart,:host{height:100%}"]
20098
20475
  },] }
20099
20476
  ];
20100
- exports.ɵdz.ctorParameters = function () { return []; };
20477
+ exports.ɵea.ctorParameters = function () { return []; };
20101
20478
  __decorate([
20102
20479
  bbjWidgetBase.Property('最小值', { type: 'number' }),
20103
20480
  __metadata("design:type", Object)
20104
- ], exports.ɵdz.prototype, "min", void 0);
20481
+ ], exports.ɵea.prototype, "min", void 0);
20105
20482
  __decorate([
20106
20483
  bbjWidgetBase.Property('最大值', { type: 'number' }),
20107
20484
  __metadata("design:type", Object)
20108
- ], exports.ɵdz.prototype, "max", void 0);
20485
+ ], exports.ɵea.prototype, "max", void 0);
20109
20486
  __decorate([
20110
20487
  bbjWidgetBase.Property('最小尺寸', { type: 'number' }),
20111
20488
  __metadata("design:type", Object)
20112
- ], exports.ɵdz.prototype, "symbolSizeMin", void 0);
20489
+ ], exports.ɵea.prototype, "symbolSizeMin", void 0);
20113
20490
  __decorate([
20114
20491
  bbjWidgetBase.Property('最大尺寸', { type: 'number' }),
20115
20492
  __metadata("design:type", Object)
20116
- ], exports.ɵdz.prototype, "symbolSizeMax", void 0);
20493
+ ], exports.ɵea.prototype, "symbolSizeMax", void 0);
20117
20494
  __decorate([
20118
20495
  bbjWidgetBase.Property('颜色', {
20119
20496
  ui: {
@@ -20122,27 +20499,27 @@
20122
20499
  },
20123
20500
  }),
20124
20501
  __metadata("design:type", Object)
20125
- ], exports.ɵdz.prototype, "visualMapColor", void 0);
20502
+ ], exports.ɵea.prototype, "visualMapColor", void 0);
20126
20503
  __decorate([
20127
20504
  bbjWidgetBase.Property('最小不透明度', { type: 'number', minimum: 0, maximum: 1 }),
20128
20505
  __metadata("design:type", Object)
20129
- ], exports.ɵdz.prototype, "colorAlphaMin", void 0);
20506
+ ], exports.ɵea.prototype, "colorAlphaMin", void 0);
20130
20507
  __decorate([
20131
20508
  bbjWidgetBase.Property('最大不透明度', { type: 'number', minimum: 0, maximum: 1 }),
20132
20509
  __metadata("design:type", Object)
20133
- ], exports.ɵdz.prototype, "colorAlphaMax", void 0);
20510
+ ], exports.ɵea.prototype, "colorAlphaMax", void 0);
20134
20511
  __decorate([
20135
20512
  bbjWidgetBase.Property('高度', { type: 'number' }),
20136
20513
  __metadata("design:type", Object)
20137
- ], exports.ɵdz.prototype, "boxHeight", void 0);
20514
+ ], exports.ɵea.prototype, "boxHeight", void 0);
20138
20515
  __decorate([
20139
20516
  bbjWidgetBase.Property('宽度', { type: 'number' }),
20140
20517
  __metadata("design:type", Object)
20141
- ], exports.ɵdz.prototype, "boxWidth", void 0);
20518
+ ], exports.ɵea.prototype, "boxWidth", void 0);
20142
20519
  __decorate([
20143
20520
  bbjWidgetBase.Property('深度', { type: 'number' }),
20144
20521
  __metadata("design:type", Object)
20145
- ], exports.ɵdz.prototype, "boxDepth", void 0);
20522
+ ], exports.ɵea.prototype, "boxDepth", void 0);
20146
20523
  __decorate([
20147
20524
  bbjWidgetBase.Data({
20148
20525
  properties: {
@@ -20153,25 +20530,25 @@
20153
20530
  },
20154
20531
  }),
20155
20532
  __metadata("design:type", Object)
20156
- ], exports.ɵdz.prototype, "data", void 0);
20157
- exports.ɵdz = __decorate([
20533
+ ], exports.ɵea.prototype, "data", void 0);
20534
+ exports.ɵea = __decorate([
20158
20535
  bbjWidgetBase.Widget('3D散点图', {
20159
20536
  group: 'otherChart',
20160
20537
  image: 'assets/img/screen/bubble.png',
20161
20538
  icon: 'icontubiao',
20162
20539
  }),
20163
20540
  __metadata("design:paramtypes", [])
20164
- ], exports.ɵdz);
20541
+ ], exports.ɵea);
20165
20542
 
20166
20543
  var Scatter3dModule = /** @class */ (function () {
20167
20544
  function Scatter3dModule(widgetService) {
20168
- widgetService.register(exports.ɵdz);
20545
+ widgetService.register(exports.ɵea);
20169
20546
  }
20170
20547
  return Scatter3dModule;
20171
20548
  }());
20172
20549
  Scatter3dModule.decorators = [
20173
20550
  { type: i0.NgModule, args: [{
20174
- declarations: [exports.ɵdz],
20551
+ declarations: [exports.ɵea],
20175
20552
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, ngxEcharts.NgxEchartsModule],
20176
20553
  },] }
20177
20554
  ];
@@ -20636,7 +21013,7 @@
20636
21013
  { type: bbjWidgetBase.WidgetService }
20637
21014
  ]; };
20638
21015
 
20639
- exports.ɵeb = /** @class */ (function () {
21016
+ exports.ɵec = /** @class */ (function () {
20640
21017
  function AnnouncementComponent(element) {
20641
21018
  this.element = element;
20642
21019
  this.headIconDisplay = true;
@@ -20674,32 +21051,32 @@
20674
21051
  };
20675
21052
  return AnnouncementComponent;
20676
21053
  }());
20677
- exports.ɵeb.decorators = [
21054
+ exports.ɵec.decorators = [
20678
21055
  { type: i0.Component, args: [{
20679
21056
  selector: 'sc-announcement',
20680
21057
  template: "<ng-container *ngIf=\"data[0]\">\n {{data[0].content}}\n</ng-container>",
20681
21058
  styles: [":host{height:100%;overflow:auto;display:block}"]
20682
21059
  },] }
20683
21060
  ];
20684
- exports.ɵeb.ctorParameters = function () { return [
21061
+ exports.ɵec.ctorParameters = function () { return [
20685
21062
  { type: i0.ElementRef }
20686
21063
  ]; };
20687
21064
  __decorate([
20688
21065
  bbjWidgetBase.Property('显示图标', { type: 'boolean' }),
20689
21066
  __metadata("design:type", Object)
20690
- ], exports.ɵeb.prototype, "headIconDisplay", void 0);
21067
+ ], exports.ɵec.prototype, "headIconDisplay", void 0);
20691
21068
  __decorate([
20692
21069
  bbjWidgetBase.Property('内边距', { ui: { widget: 'myGrid' } }),
20693
21070
  __metadata("design:type", Object)
20694
- ], exports.ɵeb.prototype, "padding", void 0);
21071
+ ], exports.ɵec.prototype, "padding", void 0);
20695
21072
  __decorate([
20696
21073
  bbjWidgetBase.Property('字体', { ui: { widget: 'myFont' } }),
20697
21074
  __metadata("design:type", Object)
20698
- ], exports.ɵeb.prototype, "font", void 0);
21075
+ ], exports.ɵec.prototype, "font", void 0);
20699
21076
  __decorate([
20700
21077
  bbjWidgetBase.Property('图标', { ui: { hidden: true } }),
20701
21078
  __metadata("design:type", Object)
20702
- ], exports.ɵeb.prototype, "icon", void 0);
21079
+ ], exports.ɵec.prototype, "icon", void 0);
20703
21080
  __decorate([
20704
21081
  bbjWidgetBase.Data({
20705
21082
  properties: {
@@ -20707,23 +21084,23 @@
20707
21084
  },
20708
21085
  }),
20709
21086
  __metadata("design:type", Object)
20710
- ], exports.ɵeb.prototype, "data", void 0);
20711
- exports.ɵeb = __decorate([
21087
+ ], exports.ɵec.prototype, "data", void 0);
21088
+ exports.ɵec = __decorate([
20712
21089
  bbjWidgetBase.Widget('公告', { group: 'component', image: 'assets/img/screen/announcement.png', icon: 'iconmokuai' }),
20713
21090
  __metadata("design:paramtypes", [i0.ElementRef])
20714
- ], exports.ɵeb);
21091
+ ], exports.ɵec);
20715
21092
 
20716
21093
  var AnnouncementModule = /** @class */ (function () {
20717
21094
  function AnnouncementModule(widgetService) {
20718
21095
  this.widgetService = widgetService;
20719
- widgetService.register(exports.ɵeb);
21096
+ widgetService.register(exports.ɵec);
20720
21097
  }
20721
21098
  return AnnouncementModule;
20722
21099
  }());
20723
21100
  AnnouncementModule.decorators = [
20724
21101
  { type: i0.NgModule, args: [{
20725
21102
  declarations: [
20726
- exports.ɵeb
21103
+ exports.ɵec
20727
21104
  ],
20728
21105
  imports: [
20729
21106
  common.CommonModule,
@@ -20747,7 +21124,7 @@
20747
21124
  }
20748
21125
 
20749
21126
  var ɵ0$e = { type: 'string', title: 'id' };
20750
- exports.ɵeg = /** @class */ (function () {
21127
+ exports.ɵeh = /** @class */ (function () {
20751
21128
  function CalendarComponent(router, cd) {
20752
21129
  var _this = this;
20753
21130
  this.router = router;
@@ -20867,25 +21244,25 @@
20867
21244
  };
20868
21245
  return CalendarComponent;
20869
21246
  }());
20870
- exports.ɵeg.decorators = [
21247
+ exports.ɵeh.decorators = [
20871
21248
  { type: i0.Component, args: [{
20872
21249
  selector: 'sc-calendar',
20873
21250
  template: "<full-calendar *ngIf=\"calendarOptions\" [options]=\"calendarOptions\"></full-calendar>\n<ng-template *ngFor=\"let child of children\" widget-host [widget]=\"child\"></ng-template>\n",
20874
21251
  styles: [":host ::ng-deep .fc-direction-ltr{height:100%}:host ::ng-deep .fc .fc-view-harness{padding-bottom:0!important}:host ::ng-deep .fc-license-message{display:none}:host ::ng-deep .fc-daygrid-event{white-space:normal}"]
20875
21252
  },] }
20876
21253
  ];
20877
- exports.ɵeg.ctorParameters = function () { return [
21254
+ exports.ɵeh.ctorParameters = function () { return [
20878
21255
  { type: router.Router },
20879
21256
  { type: i0.ChangeDetectorRef }
20880
21257
  ]; };
20881
21258
  __decorate([
20882
21259
  bbjWidgetBase.Property('是否自定义初始日期', { ui: { format: 'date', widget: 'checkbox', spanLabel: 0, spanControl: 24 } }),
20883
21260
  __metadata("design:type", Object)
20884
- ], exports.ɵeg.prototype, "isInitialDate", void 0);
21261
+ ], exports.ɵeh.prototype, "isInitialDate", void 0);
20885
21262
  __decorate([
20886
21263
  bbjWidgetBase.Property('', { ui: { type: 'date', format: 'date', spanLabel: 0, spanControl: 24 } }),
20887
21264
  __metadata("design:type", Object)
20888
- ], exports.ɵeg.prototype, "initialDate", void 0);
21265
+ ], exports.ɵeh.prototype, "initialDate", void 0);
20889
21266
  __decorate([
20890
21267
  bbjWidgetBase.Data({
20891
21268
  properties: {
@@ -20896,11 +21273,11 @@
20896
21273
  },
20897
21274
  }),
20898
21275
  __metadata("design:type", Array)
20899
- ], exports.ɵeg.prototype, "data", void 0);
21276
+ ], exports.ɵeh.prototype, "data", void 0);
20900
21277
  __decorate([
20901
21278
  bbjWidgetBase.DataOutput(['id', 'title']),
20902
21279
  __metadata("design:type", Object)
20903
- ], exports.ɵeg.prototype, "dataClick", void 0);
21280
+ ], exports.ɵeh.prototype, "dataClick", void 0);
20904
21281
  __decorate([
20905
21282
  bbjWidgetBase.DataOutput({
20906
21283
  properties: {
@@ -20910,8 +21287,8 @@
20910
21287
  },
20911
21288
  }, { triggerLink: false }),
20912
21289
  __metadata("design:type", Object)
20913
- ], exports.ɵeg.prototype, "datesSetChange", void 0);
20914
- exports.ɵeg = __decorate([
21290
+ ], exports.ɵeh.prototype, "datesSetChange", void 0);
21291
+ exports.ɵeh = __decorate([
20915
21292
  bbjWidgetBase.Widget('日历', {
20916
21293
  group: 'component',
20917
21294
  image: 'assets/img/screen/rili.png',
@@ -20919,7 +21296,7 @@
20919
21296
  childTypes: ['sc-calendar-events', 'sc-calendar-background-events'],
20920
21297
  }),
20921
21298
  __metadata("design:paramtypes", [router.Router, i0.ChangeDetectorRef])
20922
- ], exports.ɵeg);
21299
+ ], exports.ɵeh);
20923
21300
 
20924
21301
  var CalendarEventsChild = /** @class */ (function () {
20925
21302
  function CalendarEventsChild(parent) {
@@ -20945,11 +21322,11 @@
20945
21322
  { type: i0.Directive }
20946
21323
  ];
20947
21324
  CalendarEventsChild.ctorParameters = function () { return [
20948
- { type: exports.ɵeg }
21325
+ { type: exports.ɵeh }
20949
21326
  ]; };
20950
21327
 
20951
21328
  var ɵ0$f = { type: 'string', title: 'id' };
20952
- exports.ɵeh = /** @class */ (function (_super) {
21329
+ exports.ɵei = /** @class */ (function (_super) {
20953
21330
  __extends(BackgroundEventsComponent, _super);
20954
21331
  function BackgroundEventsComponent(parent) {
20955
21332
  var _this = _super.call(this, parent) || this;
@@ -20974,15 +21351,15 @@
20974
21351
  };
20975
21352
  return BackgroundEventsComponent;
20976
21353
  }(CalendarEventsChild));
20977
- exports.ɵeh.decorators = [
21354
+ exports.ɵei.decorators = [
20978
21355
  { type: i0.Component, args: [{
20979
21356
  selector: 'sc-calendar-background-events',
20980
21357
  template: "",
20981
21358
  styles: [""]
20982
21359
  },] }
20983
21360
  ];
20984
- exports.ɵeh.ctorParameters = function () { return [
20985
- { type: exports.ɵeg }
21361
+ exports.ɵei.ctorParameters = function () { return [
21362
+ { type: exports.ɵeh }
20986
21363
  ]; };
20987
21364
  __decorate([
20988
21365
  bbjWidgetBase.Property('颜色', {
@@ -20991,7 +21368,7 @@
20991
21368
  },
20992
21369
  }),
20993
21370
  __metadata("design:type", String)
20994
- ], exports.ɵeh.prototype, "color", void 0);
21371
+ ], exports.ɵei.prototype, "color", void 0);
20995
21372
  __decorate([
20996
21373
  bbjWidgetBase.Data({
20997
21374
  properties: {
@@ -21003,14 +21380,14 @@
21003
21380
  },
21004
21381
  }),
21005
21382
  __metadata("design:type", Array)
21006
- ], exports.ɵeh.prototype, "data", void 0);
21007
- exports.ɵeh = __decorate([
21383
+ ], exports.ɵei.prototype, "data", void 0);
21384
+ exports.ɵei = __decorate([
21008
21385
  bbjWidgetBase.Widget('背景颜色', { hidden: true }),
21009
- __metadata("design:paramtypes", [exports.ɵeg])
21010
- ], exports.ɵeh);
21386
+ __metadata("design:paramtypes", [exports.ɵeh])
21387
+ ], exports.ɵei);
21011
21388
 
21012
21389
  var ɵ0$g = { type: 'string', title: 'id' };
21013
- exports.ɵej = /** @class */ (function (_super) {
21390
+ exports.ɵek = /** @class */ (function (_super) {
21014
21391
  __extends(EventsComponent, _super);
21015
21392
  function EventsComponent(parent) {
21016
21393
  var _this = _super.call(this, parent) || this;
@@ -21041,15 +21418,15 @@
21041
21418
  };
21042
21419
  return EventsComponent;
21043
21420
  }(CalendarEventsChild));
21044
- exports.ɵej.decorators = [
21421
+ exports.ɵek.decorators = [
21045
21422
  { type: i0.Component, args: [{
21046
21423
  selector: 'sc-calendar-events',
21047
21424
  template: "",
21048
21425
  styles: [""]
21049
21426
  },] }
21050
21427
  ];
21051
- exports.ɵej.ctorParameters = function () { return [
21052
- { type: exports.ɵeg }
21428
+ exports.ɵek.ctorParameters = function () { return [
21429
+ { type: exports.ɵeh }
21053
21430
  ]; };
21054
21431
  __decorate([
21055
21432
  bbjWidgetBase.Property('颜色', {
@@ -21058,7 +21435,7 @@
21058
21435
  },
21059
21436
  }),
21060
21437
  __metadata("design:type", String)
21061
- ], exports.ɵej.prototype, "color", void 0);
21438
+ ], exports.ɵek.prototype, "color", void 0);
21062
21439
  __decorate([
21063
21440
  bbjWidgetBase.Data({
21064
21441
  properties: {
@@ -21070,15 +21447,15 @@
21070
21447
  },
21071
21448
  }),
21072
21449
  __metadata("design:type", Array)
21073
- ], exports.ɵej.prototype, "data", void 0);
21450
+ ], exports.ɵek.prototype, "data", void 0);
21074
21451
  __decorate([
21075
21452
  bbjWidgetBase.DataOutput(['id', 'title']),
21076
21453
  __metadata("design:type", Object)
21077
- ], exports.ɵej.prototype, "dataClick", void 0);
21078
- exports.ɵej = __decorate([
21454
+ ], exports.ɵek.prototype, "dataClick", void 0);
21455
+ exports.ɵek = __decorate([
21079
21456
  bbjWidgetBase.Widget('事件', { hidden: true }),
21080
- __metadata("design:paramtypes", [exports.ɵeg])
21081
- ], exports.ɵej);
21457
+ __metadata("design:paramtypes", [exports.ɵeh])
21458
+ ], exports.ɵek);
21082
21459
 
21083
21460
  var CalendarModule = /** @class */ (function () {
21084
21461
  function CalendarModule(widgetService) {
@@ -21087,15 +21464,15 @@
21087
21464
  timeGridPlugin__default['default'],
21088
21465
  interactionPlugin__default['default'],
21089
21466
  ]);
21090
- widgetService.register(exports.ɵeg);
21091
- widgetService.register(exports.ɵej);
21092
21467
  widgetService.register(exports.ɵeh);
21468
+ widgetService.register(exports.ɵek);
21469
+ widgetService.register(exports.ɵei);
21093
21470
  }
21094
21471
  return CalendarModule;
21095
21472
  }());
21096
21473
  CalendarModule.decorators = [
21097
21474
  { type: i0.NgModule, args: [{
21098
- declarations: [exports.ɵeg, exports.ɵeh, exports.ɵej],
21475
+ declarations: [exports.ɵeh, exports.ɵei, exports.ɵek],
21099
21476
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, angular.FullCalendarModule],
21100
21477
  },] }
21101
21478
  ];
@@ -21103,7 +21480,7 @@
21103
21480
  { type: bbjWidgetBase.WidgetService }
21104
21481
  ]; };
21105
21482
 
21106
- exports.ɵed = /** @class */ (function () {
21483
+ exports.ɵee = /** @class */ (function () {
21107
21484
  function TabsComponent() {
21108
21485
  this.type = 'line';
21109
21486
  this.size = 'default';
@@ -21122,14 +21499,14 @@
21122
21499
  };
21123
21500
  return TabsComponent;
21124
21501
  }());
21125
- exports.ɵed.decorators = [
21502
+ exports.ɵee.decorators = [
21126
21503
  { type: i0.Component, args: [{
21127
21504
  selector: 'sc-tabs',
21128
21505
  template: "<nz-tabset\n [style]=\"tabPosition === 'top' || tabPosition === 'bottom' ? 'padding:0 10px' : ''\"\n [(nzSelectedIndex)]=\"selectedIndex\"\n [nzAnimated]=\"animated\"\n [nzSize]=\"size\"\n [nzTabPosition]=\"tabPosition\"\n [nzType]=\"type\"\n [nzTabBarGutter]=\"tabBarGutter\"\n>\n <nz-tab *ngFor=\"let child of children\" [nzTitle]=\"child.option.title\" nzForceRender>\n <ng-template widgetHost [widget]=\"child\"></ng-template>\n </nz-tab>\n</nz-tabset>\n",
21129
21506
  styles: [":host{display:block}.ant-tabs,:host{height:100%}.ant-tabs ::ng-deep>.ant-tabs-nav{margin:0}.ant-tabs ::ng-deep .ant-tabs-content{height:100%}.ant-tabs ::ng-deep .ant-tabs-content .ant-tabs-tabpane{overflow:auto}.ant-tabs{display:flex}.ant-tabs ::ng-deep .ant-tabs-content{flex:1}.ant-tabs ::ng-deep.ant-tabs-bottom,.ant-tabs ::ng-deep.ant-tabs-top{flex-direction:column}.ant-tabs ::ng-deep.ant-tabs-bottom ::ng-deep>.ant-tabs-bar,.ant-tabs ::ng-deep.ant-tabs-right ::ng-deep>.ant-tabs-bar{order:1}"]
21130
21507
  },] }
21131
21508
  ];
21132
- exports.ɵed.ctorParameters = function () { return []; };
21509
+ exports.ɵee.ctorParameters = function () { return []; };
21133
21510
  __decorate([
21134
21511
  bbjWidgetBase.Property('页签样式', {
21135
21512
  enum: [
@@ -21138,7 +21515,7 @@
21138
21515
  ],
21139
21516
  }),
21140
21517
  __metadata("design:type", Object)
21141
- ], exports.ɵed.prototype, "type", void 0);
21518
+ ], exports.ɵee.prototype, "type", void 0);
21142
21519
  __decorate([
21143
21520
  bbjWidgetBase.Property('尺寸', {
21144
21521
  enum: [
@@ -21148,7 +21525,7 @@
21148
21525
  ],
21149
21526
  }),
21150
21527
  __metadata("design:type", Object)
21151
- ], exports.ɵed.prototype, "size", void 0);
21528
+ ], exports.ɵee.prototype, "size", void 0);
21152
21529
  __decorate([
21153
21530
  bbjWidgetBase.Property('页签位置', {
21154
21531
  enum: [
@@ -21159,16 +21536,16 @@
21159
21536
  ],
21160
21537
  }),
21161
21538
  __metadata("design:type", Object)
21162
- ], exports.ɵed.prototype, "tabPosition", void 0);
21539
+ ], exports.ɵee.prototype, "tabPosition", void 0);
21163
21540
  __decorate([
21164
21541
  bbjWidgetBase.Property('切换动画', { type: 'boolean', ui: { visibleIf: { tabPosition: ['top', 'bottom'] } } }),
21165
21542
  __metadata("design:type", Object)
21166
- ], exports.ɵed.prototype, "animated", void 0);
21543
+ ], exports.ɵee.prototype, "animated", void 0);
21167
21544
  __decorate([
21168
21545
  bbjWidgetBase.Property('间隙'),
21169
21546
  __metadata("design:type", Number)
21170
- ], exports.ɵed.prototype, "tabBarGutter", void 0);
21171
- exports.ɵed = __decorate([
21547
+ ], exports.ɵee.prototype, "tabBarGutter", void 0);
21548
+ exports.ɵee = __decorate([
21172
21549
  bbjWidgetBase.Widget('标签页', {
21173
21550
  group: 'component', image: 'assets/img/screen/tabs.png', icon: 'iconmokuai',
21174
21551
  children: [
@@ -21183,42 +21560,42 @@
21183
21560
  childTypes: ['sc-tab'],
21184
21561
  }),
21185
21562
  __metadata("design:paramtypes", [])
21186
- ], exports.ɵed);
21563
+ ], exports.ɵee);
21187
21564
 
21188
- exports.ɵee = /** @class */ (function () {
21565
+ exports.ɵef = /** @class */ (function () {
21189
21566
  function TabComponent() {
21190
21567
  this.title = 'New Tab';
21191
21568
  }
21192
21569
  TabComponent.prototype.ngOnInit = function () { };
21193
21570
  return TabComponent;
21194
21571
  }());
21195
- exports.ɵee.decorators = [
21572
+ exports.ɵef.decorators = [
21196
21573
  { type: i0.Component, args: [{
21197
21574
  selector: 'sc-tab',
21198
21575
  template: "<ng-template [widgetChildren]=\"children\"></ng-template>\n",
21199
21576
  styles: [""]
21200
21577
  },] }
21201
21578
  ];
21202
- exports.ɵee.ctorParameters = function () { return []; };
21579
+ exports.ɵef.ctorParameters = function () { return []; };
21203
21580
  __decorate([
21204
21581
  bbjWidgetBase.Property('标题'),
21205
21582
  __metadata("design:type", Object)
21206
- ], exports.ɵee.prototype, "title", void 0);
21207
- exports.ɵee = __decorate([
21583
+ ], exports.ɵef.prototype, "title", void 0);
21584
+ exports.ɵef = __decorate([
21208
21585
  bbjWidgetBase.Widget('选项卡', { hidden: true }),
21209
21586
  __metadata("design:paramtypes", [])
21210
- ], exports.ɵee);
21587
+ ], exports.ɵef);
21211
21588
 
21212
21589
  var TabsModule = /** @class */ (function () {
21213
21590
  function TabsModule(widgetService) {
21214
- widgetService.register(exports.ɵed);
21215
21591
  widgetService.register(exports.ɵee);
21592
+ widgetService.register(exports.ɵef);
21216
21593
  }
21217
21594
  return TabsModule;
21218
21595
  }());
21219
21596
  TabsModule.decorators = [
21220
21597
  { type: i0.NgModule, args: [{
21221
- declarations: [exports.ɵed, exports.ɵee],
21598
+ declarations: [exports.ɵee, exports.ɵef],
21222
21599
  imports: [common.CommonModule, bbjWidgetBase.WidgetBaseModule, tabs.NzTabsModule],
21223
21600
  },] }
21224
21601
  ];
@@ -21226,7 +21603,7 @@
21226
21603
  { type: bbjWidgetBase.WidgetService }
21227
21604
  ]; };
21228
21605
 
21229
- exports.ɵel = /** @class */ (function () {
21606
+ exports.ɵem = /** @class */ (function () {
21230
21607
  function GanttComponent(ele) {
21231
21608
  this.ele = ele;
21232
21609
  this.contentRenderers = new Map();
@@ -21385,27 +21762,27 @@
21385
21762
  };
21386
21763
  return GanttComponent;
21387
21764
  }());
21388
- exports.ɵel.decorators = [
21765
+ exports.ɵem.decorators = [
21389
21766
  { type: i0.Component, args: [{
21390
21767
  selector: 'sc-gantt',
21391
21768
  template: "<!--<nz-date-picker [(ngModel)]=\"initDate\" (ngModelChange)=\"onChange(initDate)\"></nz-date-picker>-->\n<full-calendar *ngIf=\"calendarOptions\" [options]=\"calendarOptions\" ></full-calendar>\n<ng-template #fcEventContent let-data=\"data\">\n\n <div class=\"progress\" nz-tooltip [nzTooltipTitle]=\"titleTemplate\" [ngStyle]=\"data.progressStyle\">\n <span class=\"bar\" [ngStyle]=\"data.barStyle\">{{data.title}}</span>\n </div>\n <ng-template #titleTemplate><i nz-icon nzType=\"file\" style=\"margin-right: 8px\"></i> <span>{{data.title}}<br/>\u5F00\u59CB:{{data.start}}<br/>\u7ED3\u675F:{{data.end}}<br/>\u8FDB\u5EA6:{{data.progress}}</span></ng-template>\n</ng-template>\n\n",
21392
21769
  styles: [":host ::ng-deep .fc-direction-ltr{height:100%}:host ::ng-deep .fc .fc-view-harness{padding-bottom:0!important}:host ::ng-deep .progress{overflow:hidden;height:var(--height);background-color:#f7f7f7;background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#fff5f5f5\",endColorstr=\"#fff9f9f9\",GradientType=0);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border-radius:4px;width:100%}:host ::ng-deep .progress .bar{white-space:nowrap;width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;align-items:center;display:flex;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#0e90d2;background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=\"#ff149bdf\",endColorstr=\"#ff0480be\",GradientType=0);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-sizing:border-box;transition:width .6s ease}:host ::ng-deep .fc-license-message{display:none!important}:host ::ng-deep .fc table{font-size:17px!important}:host ::ng-deep .fc-resource .fc-datagrid-cell-main{font-size:var(--fontSize);color:var(--color);font-weight:var(--weight);font-family:var(--family);line-height:var(--lineHeight)}"]
21393
21770
  },] }
21394
21771
  ];
21395
- exports.ɵel.ctorParameters = function () { return [
21772
+ exports.ɵem.ctorParameters = function () { return [
21396
21773
  { type: i0.ElementRef }
21397
21774
  ]; };
21398
- exports.ɵel.propDecorators = {
21775
+ exports.ɵem.propDecorators = {
21399
21776
  eventContent: [{ type: i0.ViewChild, args: ['fcEventContent', { static: true },] }]
21400
21777
  };
21401
21778
  __decorate([
21402
21779
  bbjWidgetBase.Property('头部名称', { type: 'string' }),
21403
21780
  __metadata("design:type", Object)
21404
- ], exports.ɵel.prototype, "headerContent", void 0);
21781
+ ], exports.ɵem.prototype, "headerContent", void 0);
21405
21782
  __decorate([
21406
21783
  bbjWidgetBase.Property('项目字体', { ui: { widget: 'myFont' } }),
21407
21784
  __metadata("design:type", Object)
21408
- ], exports.ɵel.prototype, "contentFont", void 0);
21785
+ ], exports.ɵem.prototype, "contentFont", void 0);
21409
21786
  __decorate([
21410
21787
  bbjWidgetBase.Property('系列颜色', {
21411
21788
  ui: {
@@ -21414,19 +21791,19 @@
21414
21791
  },
21415
21792
  }),
21416
21793
  __metadata("design:type", Object)
21417
- ], exports.ɵel.prototype, "lineColor", void 0);
21794
+ ], exports.ɵem.prototype, "lineColor", void 0);
21418
21795
  __decorate([
21419
21796
  bbjWidgetBase.Property('进度透明', { type: 'number', max: 1 }),
21420
21797
  __metadata("design:type", Object)
21421
- ], exports.ɵel.prototype, "progressTransparency", void 0);
21798
+ ], exports.ɵem.prototype, "progressTransparency", void 0);
21422
21799
  __decorate([
21423
21800
  bbjWidgetBase.Property('区域占比', { type: 'number' }),
21424
21801
  __metadata("design:type", Object)
21425
- ], exports.ɵel.prototype, "areaRate", void 0);
21802
+ ], exports.ɵem.prototype, "areaRate", void 0);
21426
21803
  __decorate([
21427
21804
  bbjWidgetBase.Property('进度条高度', { type: 'number' }),
21428
21805
  __metadata("design:type", Object)
21429
- ], exports.ɵel.prototype, "progressHeight", void 0);
21806
+ ], exports.ɵem.prototype, "progressHeight", void 0);
21430
21807
  __decorate([
21431
21808
  bbjWidgetBase.Data({
21432
21809
  properties: {
@@ -21438,11 +21815,11 @@
21438
21815
  },
21439
21816
  }),
21440
21817
  __metadata("design:type", Array)
21441
- ], exports.ɵel.prototype, "data", void 0);
21442
- exports.ɵel = __decorate([
21818
+ ], exports.ɵem.prototype, "data", void 0);
21819
+ exports.ɵem = __decorate([
21443
21820
  bbjWidgetBase.Widget('甘特图', { group: 'component', image: 'assets/img/screen/gantt.png', icon: 'iconmokuai' }),
21444
21821
  __metadata("design:paramtypes", [i0.ElementRef])
21445
- ], exports.ɵel);
21822
+ ], exports.ɵem);
21446
21823
 
21447
21824
  // import {FormsModule} from '@angular/forms';
21448
21825
  // import {NzDatePickerModule} from 'ng-zorro-antd/date-picker';
@@ -21455,13 +21832,13 @@
21455
21832
  interactionPlugin__default['default'],
21456
21833
  resourceTimelinePlugin__default['default'],
21457
21834
  ]);
21458
- widgetService.register(exports.ɵel);
21835
+ widgetService.register(exports.ɵem);
21459
21836
  }
21460
21837
  return GanttModule;
21461
21838
  }());
21462
21839
  GanttModule.decorators = [
21463
21840
  { type: i0.NgModule, args: [{
21464
- declarations: [exports.ɵel],
21841
+ declarations: [exports.ɵem],
21465
21842
  imports: [
21466
21843
  common.CommonModule,
21467
21844
  bbjWidgetBase.WidgetBaseModule,
@@ -21477,7 +21854,7 @@
21477
21854
  var WorkbenchWidgetModule = /** @class */ (function () {
21478
21855
  function WorkbenchWidgetModule(widgetService) {
21479
21856
  widgetService.register(exports.ɵp, { option: {}, size: { width: 3, height: 3 } });
21480
- widgetService.register(exports.ɵeg, { option: {}, size: { width: 16, height: 12 } });
21857
+ widgetService.register(exports.ɵeh, { option: {}, size: { width: 16, height: 12 } });
21481
21858
  for (var i = 1; i <= 82; i++) {
21482
21859
  widgetService.register(exports.ɵb, {
21483
21860
  option: { image: "assets/img/screen/picture" + i + ".png", hideHead: true },
@@ -21925,7 +22302,7 @@
21925
22302
  size: { width: 10, height: 10 },
21926
22303
  });
21927
22304
  }
21928
- widgetService.register(exports.ɵeb, { size: { width: 14, height: 6 } });
22305
+ widgetService.register(exports.ɵec, { size: { width: 14, height: 6 } });
21929
22306
  widgetService.register(exports.ɵbo, {
21930
22307
  option: {
21931
22308
  image: 'assets/img/screen/table.png',
@@ -22083,21 +22460,21 @@
22083
22460
  exports.ɵcr = MipAnimModule;
22084
22461
  exports.ɵcw = TimePickerModule;
22085
22462
  exports.ɵda = BaseLayer;
22086
- exports.ɵdf = UploadModule;
22087
- exports.ɵdi = Pie3dChartModule;
22088
- exports.ɵdk = HighChartsService;
22089
- exports.ɵdl = MultiTitleGaugeModule;
22090
- exports.ɵdn = GaugeProgressModule;
22091
- exports.ɵdp = ItemSwiperModule;
22092
- exports.ɵdr = BulletinBoardModule;
22093
- exports.ɵdt = TemporaryDataModule;
22094
- exports.ɵdv = LineLightFlowModule;
22463
+ exports.ɵdg = UploadModule;
22464
+ exports.ɵdj = Pie3dChartModule;
22465
+ exports.ɵdl = HighChartsService;
22466
+ exports.ɵdm = MultiTitleGaugeModule;
22467
+ exports.ɵdo = GaugeProgressModule;
22468
+ exports.ɵdq = ItemSwiperModule;
22469
+ exports.ɵds = BulletinBoardModule;
22470
+ exports.ɵdu = TemporaryDataModule;
22471
+ exports.ɵdw = LineLightFlowModule;
22095
22472
  exports.ɵe = LineBarChartModule;
22096
- exports.ɵea = AnnouncementModule;
22097
- exports.ɵec = TabsModule;
22098
- exports.ɵef = CalendarModule;
22099
- exports.ɵei = CalendarEventsChild;
22100
- exports.ɵek = GanttModule;
22473
+ exports.ɵeb = AnnouncementModule;
22474
+ exports.ɵed = TabsModule;
22475
+ exports.ɵeg = CalendarModule;
22476
+ exports.ɵej = CalendarEventsChild;
22477
+ exports.ɵel = GanttModule;
22101
22478
  exports.ɵo = ButtonModule;
22102
22479
  exports.ɵq = HttpService;
22103
22480
  exports.ɵr = TimerModule;