bk-magic-vue 2.3.2-beta.7 → 2.3.2-beta.8

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.
Files changed (56) hide show
  1. package/dist/bk-magic-vue.js +619 -715
  2. package/dist/bk-magic-vue.min.js +1 -1
  3. package/dist/bk-magic-vue.min.js.gz +0 -0
  4. package/dist/bk-magic-vue.min.js.map +1 -1
  5. package/lib/alert.js +1 -3
  6. package/lib/big-tree.js +16 -22
  7. package/lib/card.js +33 -35
  8. package/lib/cascade.js +52 -58
  9. package/lib/checkbox.js +2 -2
  10. package/lib/color-picker.js +5 -5
  11. package/lib/date-picker.js +133 -135
  12. package/lib/dialog.js +103 -121
  13. package/lib/dropdown-menu.js +4 -4
  14. package/lib/exception.js +1 -3
  15. package/lib/image-viewer.js +6 -6
  16. package/lib/image.js +15 -19
  17. package/lib/info-box.js +103 -121
  18. package/lib/input.js +5 -5
  19. package/lib/loading.js +1 -3
  20. package/lib/message.js +2 -4
  21. package/lib/navigation-menu-item.js +5 -5
  22. package/lib/navigation.js +21 -31
  23. package/lib/notify.js +12 -14
  24. package/lib/option-group.js +1 -3
  25. package/lib/option.js +11 -13
  26. package/lib/pagination.js +48 -58
  27. package/lib/popconfirm.js +9 -13
  28. package/lib/popover.js +1 -3
  29. package/lib/process.js +1 -1
  30. package/lib/progress.js +1 -3
  31. package/lib/radio-button.js +3 -5
  32. package/lib/radio.js +3 -5
  33. package/lib/rate.js +3 -3
  34. package/lib/resize-layout.js +8 -10
  35. package/lib/search-select.js +17 -21
  36. package/lib/select.js +41 -51
  37. package/lib/sideslider.js +2 -4
  38. package/lib/slider.js +6 -6
  39. package/lib/star.js +2 -2
  40. package/lib/steps.js +2 -2
  41. package/lib/swiper.js +17 -19
  42. package/lib/switcher.js +2 -2
  43. package/lib/tab.js +2 -2
  44. package/lib/table-setting-content.js +6 -6
  45. package/lib/table.js +56 -68
  46. package/lib/tag-input.js +9 -13
  47. package/lib/tag.js +1 -1
  48. package/lib/time-picker.js +109 -111
  49. package/lib/timeline.js +13 -17
  50. package/lib/transfer.js +45 -49
  51. package/lib/tree.js +6 -6
  52. package/lib/upload.js +4 -4
  53. package/lib/version-detail.js +123 -147
  54. package/lib/virtual-scroll.js +4 -6
  55. package/lib/zoom-image.js +2 -2
  56. package/package.json +1 -1
@@ -1544,9 +1544,7 @@
1544
1544
  staticClass: "bk-alert-content"
1545
1545
  }, [_c('div', {
1546
1546
  staticClass: "bk-alert-title"
1547
- }, [_vm._t("title", function () {
1548
- return [_vm._v("\n " + _vm._s(_vm.title) + "\n ")];
1549
- })], 2), _c('div', {
1547
+ }, [_vm._t("title", [_vm._v("\n " + _vm._s(_vm.title) + "\n ")])], 2), _c('div', {
1550
1548
  staticClass: "bk-alert-description"
1551
1549
  })]), _vm.closable ? _c('span', {
1552
1550
  staticClass: "bk-alert-close",
@@ -2252,11 +2250,11 @@
2252
2250
  on: {
2253
2251
  "click": _vm.handleClick,
2254
2252
  "keydown": function keydown($event) {
2255
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
2253
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
2256
2254
  return null;
2257
2255
  }
2258
2256
  $event.preventDefault();
2259
- return _vm.handleClick.apply(null, arguments);
2257
+ return _vm.handleClick($event);
2260
2258
  }
2261
2259
  }
2262
2260
  }, [_c('span', {
@@ -5168,7 +5166,7 @@
5168
5166
  "keydown": _vm.handleArrowKeydown,
5169
5167
  "mousedown": function mousedown($event) {
5170
5168
  $event.stopPropagation();
5171
- return _vm.handleMouseDown.apply(null, arguments);
5169
+ return _vm.handleMouseDown($event);
5172
5170
  }
5173
5171
  }
5174
5172
  }, [_c('div', {
@@ -5305,7 +5303,7 @@
5305
5303
  "keydown": _vm.handleArrowKeydown,
5306
5304
  "mousedown": function mousedown($event) {
5307
5305
  $event.stopPropagation();
5308
- return _vm.handleMouseDown.apply(null, arguments);
5306
+ return _vm.handleMouseDown($event);
5309
5307
  }
5310
5308
  }
5311
5309
  }, [_c('div', {
@@ -5377,10 +5375,10 @@
5377
5375
  },
5378
5376
  on: {
5379
5377
  "keydown": function keydown($event) {
5380
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
5378
+ if (!('button' in $event) && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
5381
5379
  return null;
5382
5380
  }
5383
- return _vm.handleTab.apply(null, arguments);
5381
+ return _vm.handleTab($event);
5384
5382
  },
5385
5383
  "input": _vm.handleInput
5386
5384
  }
@@ -5699,7 +5697,7 @@
5699
5697
  },
5700
5698
  on: {
5701
5699
  "click": function click($event) {
5702
- return _vm.selectColor(index);
5700
+ _vm.selectColor(index);
5703
5701
  }
5704
5702
  }
5705
5703
  }, [_c('div', {
@@ -7530,113 +7528,111 @@
7530
7528
  }, [_c('div', {
7531
7529
  ref: "reference",
7532
7530
  staticClass: "bk-date-picker-rel"
7533
- }, [_vm._t("trigger", function () {
7534
- return [_c('span', {
7535
- staticClass: "icon-wrapper",
7536
- class: _vm.disabled ? 'disabled' : '',
7537
- on: {
7538
- "click": _vm.handleIconClick,
7539
- "mouseenter": _vm.handleInputMouseenter,
7540
- "mouseleave": _vm.handleInputMouseleave
7541
- }
7542
- }, [_vm.type === 'time' || _vm.type === 'timerange' ? _c('svg', {
7543
- staticClass: "picker-icon",
7544
- attrs: {
7545
- "x": "0px",
7546
- "y": "0px",
7547
- "viewBox": "0 0 1024 1024"
7548
- }
7549
- }, [_c('g', {
7550
- attrs: {
7551
- "id": "time"
7552
- }
7553
- }, [_c('path', {
7554
- attrs: {
7555
- "fill": "#c4c6cc",
7556
- "d": "M512,128c51.9,0,102.2,10.1,149.5,30.2c45.7,19.3,86.8,47,122.1,82.3s63,76.4,82.3,122.1\n c20,47.3,30.2,97.6,30.2,149.5S886,614.3,865.9,661.6c-19.3,45.7-47,86.8-82.3,122.1s-76.4,63-122.1,82.3\n c-47.3,20-97.6,30.2-149.5,30.2S409.8,886.1,362.5,866c-45.7-19.3-86.8-47-122.1-82.3s-63-76.4-82.3-122.1\n c-20-47.3-30.2-97.6-30.2-149.5s10.1-102.2,30.2-149.5c19.3-45.7,47-86.8,82.3-122.1s76.4-63,122.1-82.3\n C409.8,138.1,460.1,128,512,128 M512,64C264.6,64,64,264.6,64,512s200.6,448,448,448s448-200.6,448-448S759.4,64,512,64L512,64z"
7557
- }
7558
- }), _c('polygon', {
7559
- attrs: {
7560
- "fill": "#c4c6cc",
7561
- "points": "512,512 512,256 448,256 448,512 448,576 512,576 768,576 768,512"
7562
- }
7563
- })])]) : _c('svg', {
7564
- staticClass: "picker-icon",
7565
- attrs: {
7566
- "x": "0px",
7567
- "y": "0px",
7568
- "viewBox": "0 0 1024 1024"
7569
- }
7570
- }, [_c('g', {
7571
- attrs: {
7572
- "id": "date"
7573
- }
7574
- }, [_c('path', {
7575
- attrs: {
7576
- "fill": "#c4c6cc",
7577
- "d": "M896,128h-96v64h64v112H160V192h64v-64h-96c-17.7,0-32,14.3-32,32v736c0,17.7,14.3,32,32,32h768\n c17.7,0,32-14.3,32-32V160C928,142.3,913.7,128,896,128z M160,864V368h704v496H160z"
7578
- }
7579
- }), _c('rect', {
7580
- attrs: {
7581
- "x": "416",
7582
- "y": "128",
7583
- "fill": "#c4c6cc",
7584
- "width": "192",
7585
- "height": "64"
7586
- }
7587
- }), _c('rect', {
7588
- attrs: {
7589
- "x": "288",
7590
- "y": "96",
7591
- "fill": "#c4c6cc",
7592
- "width": "64",
7593
- "height": "128"
7594
- }
7595
- }), _c('rect', {
7596
- attrs: {
7597
- "x": "672",
7598
- "y": "96",
7599
- "fill": "#c4c6cc",
7600
- "width": "64",
7601
- "height": "128"
7602
- }
7603
- }), _c('polygon', {
7604
- attrs: {
7605
- "fill": "#c4c6cc",
7606
- "points": "403.7,514.4 557.1,514.4 557.1,515.3 420.1,765.5 483.5,765.5 620.3,504.3 620.3,466.5 403.7,466.5"
7607
- }
7608
- })])])]), _c('input', {
7609
- key: _vm.forceInputRerender,
7610
- ref: "input",
7611
- staticClass: "bk-date-picker-editor",
7612
- class: [_vm.readonly ? 'readonly' : '', _vm.fontSizeCls, {
7613
- 'only-bottom-border': _vm.behavior === 'simplicity'
7614
- }],
7615
- attrs: {
7616
- "type": "text",
7617
- "readonly": _vm.localReadonly,
7618
- "disabled": _vm.disabled,
7619
- "placeholder": _vm.placeholder
7620
- },
7621
- domProps: {
7622
- "value": _vm.displayValue
7623
- },
7624
- on: {
7625
- "focus": _vm.handleFocus,
7626
- "blur": _vm.handleBlur,
7627
- "click": _vm.handleFocus,
7628
- "change": _vm.handleInputChange,
7629
- "keydown": _vm.handleKeydown,
7630
- "mouseenter": _vm.handleInputMouseenter,
7631
- "mouseleave": _vm.handleInputMouseleave
7632
- }
7633
- }), _vm.clearable && _vm.showClose ? _c('i', {
7634
- staticClass: "bk-icon icon-close-circle-shape clear-action",
7635
- on: {
7636
- "click": _vm.handleClear
7637
- }
7638
- }) : _vm._e()];
7639
- })], 2), _c('transition', {
7531
+ }, [_vm._t("trigger", [_c('span', {
7532
+ staticClass: "icon-wrapper",
7533
+ class: _vm.disabled ? 'disabled' : '',
7534
+ on: {
7535
+ "click": _vm.handleIconClick,
7536
+ "mouseenter": _vm.handleInputMouseenter,
7537
+ "mouseleave": _vm.handleInputMouseleave
7538
+ }
7539
+ }, [_vm.type === 'time' || _vm.type === 'timerange' ? _c('svg', {
7540
+ staticClass: "picker-icon",
7541
+ attrs: {
7542
+ "x": "0px",
7543
+ "y": "0px",
7544
+ "viewBox": "0 0 1024 1024"
7545
+ }
7546
+ }, [_c('g', {
7547
+ attrs: {
7548
+ "id": "time"
7549
+ }
7550
+ }, [_c('path', {
7551
+ attrs: {
7552
+ "fill": "#c4c6cc",
7553
+ "d": "M512,128c51.9,0,102.2,10.1,149.5,30.2c45.7,19.3,86.8,47,122.1,82.3s63,76.4,82.3,122.1\n c20,47.3,30.2,97.6,30.2,149.5S886,614.3,865.9,661.6c-19.3,45.7-47,86.8-82.3,122.1s-76.4,63-122.1,82.3\n c-47.3,20-97.6,30.2-149.5,30.2S409.8,886.1,362.5,866c-45.7-19.3-86.8-47-122.1-82.3s-63-76.4-82.3-122.1\n c-20-47.3-30.2-97.6-30.2-149.5s10.1-102.2,30.2-149.5c19.3-45.7,47-86.8,82.3-122.1s76.4-63,122.1-82.3\n C409.8,138.1,460.1,128,512,128 M512,64C264.6,64,64,264.6,64,512s200.6,448,448,448s448-200.6,448-448S759.4,64,512,64L512,64z"
7554
+ }
7555
+ }), _c('polygon', {
7556
+ attrs: {
7557
+ "fill": "#c4c6cc",
7558
+ "points": "512,512 512,256 448,256 448,512 448,576 512,576 768,576 768,512"
7559
+ }
7560
+ })])]) : _c('svg', {
7561
+ staticClass: "picker-icon",
7562
+ attrs: {
7563
+ "x": "0px",
7564
+ "y": "0px",
7565
+ "viewBox": "0 0 1024 1024"
7566
+ }
7567
+ }, [_c('g', {
7568
+ attrs: {
7569
+ "id": "date"
7570
+ }
7571
+ }, [_c('path', {
7572
+ attrs: {
7573
+ "fill": "#c4c6cc",
7574
+ "d": "M896,128h-96v64h64v112H160V192h64v-64h-96c-17.7,0-32,14.3-32,32v736c0,17.7,14.3,32,32,32h768\n c17.7,0,32-14.3,32-32V160C928,142.3,913.7,128,896,128z M160,864V368h704v496H160z"
7575
+ }
7576
+ }), _c('rect', {
7577
+ attrs: {
7578
+ "x": "416",
7579
+ "y": "128",
7580
+ "fill": "#c4c6cc",
7581
+ "width": "192",
7582
+ "height": "64"
7583
+ }
7584
+ }), _c('rect', {
7585
+ attrs: {
7586
+ "x": "288",
7587
+ "y": "96",
7588
+ "fill": "#c4c6cc",
7589
+ "width": "64",
7590
+ "height": "128"
7591
+ }
7592
+ }), _c('rect', {
7593
+ attrs: {
7594
+ "x": "672",
7595
+ "y": "96",
7596
+ "fill": "#c4c6cc",
7597
+ "width": "64",
7598
+ "height": "128"
7599
+ }
7600
+ }), _c('polygon', {
7601
+ attrs: {
7602
+ "fill": "#c4c6cc",
7603
+ "points": "403.7,514.4 557.1,514.4 557.1,515.3 420.1,765.5 483.5,765.5 620.3,504.3 620.3,466.5 403.7,466.5"
7604
+ }
7605
+ })])])]), _c('input', {
7606
+ key: _vm.forceInputRerender,
7607
+ ref: "input",
7608
+ staticClass: "bk-date-picker-editor",
7609
+ class: [_vm.readonly ? 'readonly' : '', _vm.fontSizeCls, {
7610
+ 'only-bottom-border': _vm.behavior === 'simplicity'
7611
+ }],
7612
+ attrs: {
7613
+ "type": "text",
7614
+ "readonly": _vm.localReadonly,
7615
+ "disabled": _vm.disabled,
7616
+ "placeholder": _vm.placeholder
7617
+ },
7618
+ domProps: {
7619
+ "value": _vm.displayValue
7620
+ },
7621
+ on: {
7622
+ "focus": _vm.handleFocus,
7623
+ "blur": _vm.handleBlur,
7624
+ "click": _vm.handleFocus,
7625
+ "change": _vm.handleInputChange,
7626
+ "keydown": _vm.handleKeydown,
7627
+ "mouseenter": _vm.handleInputMouseenter,
7628
+ "mouseleave": _vm.handleInputMouseleave
7629
+ }
7630
+ }), _vm.clearable && _vm.showClose ? _c('i', {
7631
+ staticClass: "bk-icon icon-close-circle-shape clear-action",
7632
+ on: {
7633
+ "click": _vm.handleClear
7634
+ }
7635
+ }) : _vm._e()])], 2), _c('transition', {
7640
7636
  attrs: {
7641
7637
  "name": "transition-drop"
7642
7638
  }
@@ -7659,7 +7655,7 @@
7659
7655
  },
7660
7656
  nativeOn: {
7661
7657
  "click": function click($event) {
7662
- return _vm.handleTransferClick.apply(null, arguments);
7658
+ return _vm.handleTransferClick($event);
7663
7659
  }
7664
7660
  }
7665
7661
  }, [_c(_vm.panel, _vm._b({
@@ -8951,10 +8947,10 @@
8951
8947
  class: _vm.getCellCls(cell),
8952
8948
  on: {
8953
8949
  "click": function click($event) {
8954
- return _vm.handleClick(cell, $event);
8950
+ _vm.handleClick(cell, $event);
8955
8951
  },
8956
8952
  "mouseenter": function mouseenter($event) {
8957
- return _vm.handleMouseMove(cell);
8953
+ _vm.handleMouseMove(cell);
8958
8954
  }
8959
8955
  }
8960
8956
  }, [_c('em', [_vm._v(_vm._s(cell.desc))])]);
@@ -9037,10 +9033,10 @@
9037
9033
  class: _vm.getCellCls(cell),
9038
9034
  on: {
9039
9035
  "click": function click($event) {
9040
- return _vm.handleClick(cell);
9036
+ _vm.handleClick(cell);
9041
9037
  },
9042
9038
  "mouseenter": function mouseenter($event) {
9043
- return _vm.handleMouseMove(cell);
9039
+ _vm.handleMouseMove(cell);
9044
9040
  }
9045
9041
  }
9046
9042
  }, [_c('em', [_vm._v(_vm._s(cell.date.getFullYear()))])]);
@@ -9122,10 +9118,10 @@
9122
9118
  class: _vm.getCellCls(cell),
9123
9119
  on: {
9124
9120
  "click": function click($event) {
9125
- return _vm.handleClick(cell);
9121
+ _vm.handleClick(cell);
9126
9122
  },
9127
9123
  "mouseenter": function mouseenter($event) {
9128
- return _vm.handleMouseMove(cell);
9124
+ _vm.handleMouseMove(cell);
9129
9125
  }
9130
9126
  }
9131
9127
  }, [_c('em', [_vm._v(_vm._s(cell.text))])]);
@@ -9219,10 +9215,10 @@
9219
9215
  staticClass: "bk-picker-confirm",
9220
9216
  on: {
9221
9217
  "!keydown": function keydown($event) {
9222
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
9218
+ if (!('button' in $event) && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
9223
9219
  return null;
9224
9220
  }
9225
- return _vm.handleTab.apply(null, arguments);
9221
+ return _vm.handleTab($event);
9226
9222
  }
9227
9223
  }
9228
9224
  }, [_vm.showTime ? _c('a', {
@@ -9250,10 +9246,10 @@
9250
9246
  on: {
9251
9247
  "click": _vm.handleSuccess,
9252
9248
  "keydown": function keydown($event) {
9253
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
9249
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
9254
9250
  return null;
9255
9251
  }
9256
- return _vm.handleSuccess.apply(null, arguments);
9252
+ return _vm.handleSuccess($event);
9257
9253
  }
9258
9254
  }
9259
9255
  }, [_vm._v(_vm._s(_vm.labels.ok))])]);
@@ -9765,7 +9761,7 @@
9765
9761
  class: _vm.getCellCls(item),
9766
9762
  on: {
9767
9763
  "click": function click($event) {
9768
- return _vm.handleClick('hours', item);
9764
+ _vm.handleClick('hours', item);
9769
9765
  }
9770
9766
  }
9771
9767
  }, [_vm._v(_vm._s(_vm.padTime(item.text)))]);
@@ -9787,7 +9783,7 @@
9787
9783
  class: _vm.getCellCls(item),
9788
9784
  on: {
9789
9785
  "click": function click($event) {
9790
- return _vm.handleClick('minutes', item);
9786
+ _vm.handleClick('minutes', item);
9791
9787
  }
9792
9788
  }
9793
9789
  }, [_vm._v(_vm._s(_vm.padTime(item.text)))]);
@@ -9815,7 +9811,7 @@
9815
9811
  class: _vm.getCellCls(item),
9816
9812
  on: {
9817
9813
  "click": function click($event) {
9818
- return _vm.handleClick('seconds', item);
9814
+ _vm.handleClick('seconds', item);
9819
9815
  }
9820
9816
  }
9821
9817
  }, [_vm._v(_vm._s(_vm.padTime(item.text)))]);
@@ -10398,7 +10394,7 @@
10398
10394
  staticClass: "bk-picker-panel-shortcut",
10399
10395
  on: {
10400
10396
  "click": function click($event) {
10401
- return _vm.handleShortcutClick(shortcut);
10397
+ _vm.handleShortcutClick(shortcut);
10402
10398
  }
10403
10399
  }
10404
10400
  }, [_vm._v("\n " + _vm._s(shortcut.text) + "\n ")]);
@@ -10419,7 +10415,7 @@
10419
10415
  class: _vm.iconBtnCls('prev', '-double'),
10420
10416
  on: {
10421
10417
  "click": function click($event) {
10422
- return _vm.changeYear(-1);
10418
+ _vm.changeYear(-1);
10423
10419
  }
10424
10420
  }
10425
10421
  }, [_c('i', {
@@ -10434,7 +10430,7 @@
10434
10430
  class: _vm.iconBtnCls('prev'),
10435
10431
  on: {
10436
10432
  "click": function click($event) {
10437
- return _vm.changeMonth(-1);
10433
+ _vm.changeMonth(-1);
10438
10434
  }
10439
10435
  }
10440
10436
  }, [_c('i', {
@@ -10448,7 +10444,7 @@
10448
10444
  class: _vm.iconBtnCls('next', '-double'),
10449
10445
  on: {
10450
10446
  "click": function click($event) {
10451
- return _vm.changeYear(+1);
10447
+ _vm.changeYear(+1);
10452
10448
  }
10453
10449
  }
10454
10450
  }, [_c('i', {
@@ -10463,7 +10459,7 @@
10463
10459
  class: _vm.iconBtnCls('next'),
10464
10460
  on: {
10465
10461
  "click": function click($event) {
10466
- return _vm.changeMonth(+1);
10462
+ _vm.changeMonth(+1);
10467
10463
  }
10468
10464
  }
10469
10465
  }, [_c('i', {
@@ -11035,7 +11031,7 @@
11035
11031
  class: _vm.iconBtnCls('prev', '-double'),
11036
11032
  on: {
11037
11033
  "click": function click($event) {
11038
- return _vm.prevYear('left');
11034
+ _vm.prevYear('left');
11039
11035
  }
11040
11036
  }
11041
11037
  }, [_c('i', {
@@ -11050,7 +11046,7 @@
11050
11046
  class: _vm.iconBtnCls('prev'),
11051
11047
  on: {
11052
11048
  "click": function click($event) {
11053
- return _vm.prevMonth('left');
11049
+ _vm.prevMonth('left');
11054
11050
  }
11055
11051
  }
11056
11052
  }, [_c('i', {
@@ -11064,7 +11060,7 @@
11064
11060
  class: _vm.iconBtnCls('next', '-double'),
11065
11061
  on: {
11066
11062
  "click": function click($event) {
11067
- return _vm.nextYear('left');
11063
+ _vm.nextYear('left');
11068
11064
  }
11069
11065
  }
11070
11066
  }, [_c('i', {
@@ -11079,7 +11075,7 @@
11079
11075
  class: _vm.iconBtnCls('next'),
11080
11076
  on: {
11081
11077
  "click": function click($event) {
11082
- return _vm.nextMonth('left');
11078
+ _vm.nextMonth('left');
11083
11079
  }
11084
11080
  }
11085
11081
  }, [_c('i', {
@@ -11123,7 +11119,7 @@
11123
11119
  class: _vm.iconBtnCls('prev', '-double'),
11124
11120
  on: {
11125
11121
  "click": function click($event) {
11126
- return _vm.prevYear('right');
11122
+ _vm.prevYear('right');
11127
11123
  }
11128
11124
  }
11129
11125
  }, [_c('i', {
@@ -11138,7 +11134,7 @@
11138
11134
  class: _vm.iconBtnCls('prev'),
11139
11135
  on: {
11140
11136
  "click": function click($event) {
11141
- return _vm.prevMonth('right');
11137
+ _vm.prevMonth('right');
11142
11138
  }
11143
11139
  }
11144
11140
  }, [_c('i', {
@@ -11167,7 +11163,7 @@
11167
11163
  class: _vm.iconBtnCls('next', '-double'),
11168
11164
  on: {
11169
11165
  "click": function click($event) {
11170
- return _vm.nextYear('right');
11166
+ _vm.nextYear('right');
11171
11167
  }
11172
11168
  }
11173
11169
  }, [_c('i', {
@@ -11182,7 +11178,7 @@
11182
11178
  class: _vm.iconBtnCls('next'),
11183
11179
  on: {
11184
11180
  "click": function click($event) {
11185
- return _vm.nextMonth('right');
11181
+ _vm.nextMonth('right');
11186
11182
  }
11187
11183
  }
11188
11184
  }, [_c('i', {
@@ -11245,7 +11241,7 @@
11245
11241
  staticClass: "bk-picker-panel-shortcut",
11246
11242
  on: {
11247
11243
  "click": function click($event) {
11248
- return _vm.handleShortcutClick(shortcut);
11244
+ _vm.handleShortcutClick(shortcut);
11249
11245
  }
11250
11246
  }
11251
11247
  }, [_vm._v(_vm._s(shortcut.text))]);
@@ -12308,7 +12304,7 @@
12308
12304
  on: {
12309
12305
  "mousedown": function mousedown($event) {
12310
12306
  $event.stopPropagation();
12311
- return _vm.wrapClickHandler.apply(null, arguments);
12307
+ return _vm.wrapClickHandler($event);
12312
12308
  }
12313
12309
  }
12314
12310
  }, [_c('transition', {
@@ -12338,13 +12334,13 @@
12338
12334
  staticClass: "bk-dialog-tool",
12339
12335
  on: {
12340
12336
  "mousedown": function mousedown($event) {
12341
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "left", 37, $event.key, ["Left", "ArrowLeft"])) {
12337
+ if (!('button' in $event) && _vm._k($event.keyCode, "left", 37, $event.key, ["Left", "ArrowLeft"])) {
12342
12338
  return null;
12343
12339
  }
12344
12340
  if ('button' in $event && $event.button !== 0) {
12345
12341
  return null;
12346
12342
  }
12347
- return _vm.moveStartHandler.apply(null, arguments);
12343
+ return _vm.moveStartHandler($event);
12348
12344
  }
12349
12345
  }
12350
12346
  }, [_vm._t("tools"), _vm.closeIcon ? _c('i', {
@@ -12352,108 +12348,94 @@
12352
12348
  on: {
12353
12349
  "click": function click($event) {
12354
12350
  $event.stopPropagation();
12355
- return _vm.close.apply(null, arguments);
12351
+ return _vm.close($event);
12356
12352
  }
12357
12353
  }
12358
12354
  }) : _vm._e()], 2), _vm.type ? [_c('div', {
12359
12355
  staticClass: "bk-dialog-type-body",
12360
12356
  class: _vm.type === 'loading' ? 'loading' : ''
12361
- }, [_vm._t("type-body", function () {
12362
- return [_vm.type === 'loading' ? [_c('img', {
12363
- staticClass: "bk-dialog-loading",
12364
- attrs: {
12365
- "src": __$_require_ui_images_default_loading_png__,
12366
- "alt": "loading"
12367
- }
12368
- })] : [_c('i', {
12369
- staticClass: "bk-icon bk-dialog-mark",
12370
- class: ['bk-dialog-' + _vm.type, 'icon-' + _vm.calcIcon]
12371
- })]];
12372
- })], 2), _vm.title || _vm.$slots['type-header'] ? _c('div', {
12357
+ }, [_vm._t("type-body", [_vm.type === 'loading' ? [_c('img', {
12358
+ staticClass: "bk-dialog-loading",
12359
+ attrs: {
12360
+ "src": __$_require_ui_images_default_loading_png__,
12361
+ "alt": "loading"
12362
+ }
12363
+ })] : [_c('i', {
12364
+ staticClass: "bk-icon bk-dialog-mark",
12365
+ class: ['bk-dialog-' + _vm.type, 'icon-' + _vm.calcIcon]
12366
+ })]])], 2), _vm.title || _vm.$slots['type-header'] ? _c('div', {
12373
12367
  staticClass: "bk-dialog-type-header",
12374
12368
  class: [_vm.type === 'loading' ? 'loading' : '', _vm.subTitle || _vm.$slots['type-sub-header'] ? 'has-sub-header' : '']
12375
12369
  }, [_c('div', {
12376
12370
  staticClass: "header"
12377
- }, [_vm._t("type-header", function () {
12378
- return [_vm._v(_vm._s(_vm.title))];
12379
- })], 2)]) : _vm._e(), _vm.subTitle || _vm.$slots['type-sub-header'] ? _c('div', {
12371
+ }, [_vm._t("type-header", [_vm._v(_vm._s(_vm.title))])], 2)]) : _vm._e(), _vm.subTitle || _vm.$slots['type-sub-header'] ? _c('div', {
12380
12372
  staticClass: "bk-dialog-type-sub-header",
12381
12373
  class: _vm.type === 'loading' ? 'loading' : ''
12382
12374
  }, [_c('div', {
12383
12375
  staticClass: "header"
12384
- }, [_vm._t("type-sub-header", function () {
12385
- return [_vm._v(_vm._s(_vm.subTitle))];
12386
- })], 2)]) : _vm._e(), _vm.showFooter ? _c('div', {
12376
+ }, [_vm._t("type-sub-header", [_vm._v(_vm._s(_vm.subTitle))])], 2)]) : _vm._e(), _vm.showFooter ? _c('div', {
12387
12377
  staticClass: "bk-dialog-footer"
12388
- }, [_vm._t("footer", function () {
12389
- return [_c('div', {
12390
- staticClass: "footer-wrapper"
12391
- }, [_c('bk-button', {
12392
- attrs: {
12393
- "type": "button",
12394
- "name": "confirm",
12395
- "loading": _vm.buttonLoading,
12396
- "theme": _vm.theme
12397
- },
12398
- nativeOn: {
12399
- "click": function click($event) {
12400
- return _vm.okHandler.apply(null, arguments);
12401
- }
12378
+ }, [_vm._t("footer", [_c('div', {
12379
+ staticClass: "footer-wrapper"
12380
+ }, [_c('bk-button', {
12381
+ attrs: {
12382
+ "type": "button",
12383
+ "name": "confirm",
12384
+ "loading": _vm.buttonLoading,
12385
+ "theme": _vm.theme
12386
+ },
12387
+ nativeOn: {
12388
+ "click": function click($event) {
12389
+ return _vm.okHandler($event);
12402
12390
  }
12403
- }, [_vm._v("\n " + _vm._s(_vm.localeOkText) + "\n ")]), _c('bk-button', {
12404
- attrs: {
12405
- "type": "button",
12406
- "name": "cancel",
12407
- "disabled": _vm.buttonLoading
12408
- },
12409
- nativeOn: {
12410
- "click": function click($event) {
12411
- return _vm.cancelHandler.apply(null, arguments);
12412
- }
12391
+ }
12392
+ }, [_vm._v("\n " + _vm._s(_vm.localeOkText) + "\n ")]), _c('bk-button', {
12393
+ attrs: {
12394
+ "type": "button",
12395
+ "name": "cancel",
12396
+ "disabled": _vm.buttonLoading
12397
+ },
12398
+ nativeOn: {
12399
+ "click": function click($event) {
12400
+ return _vm.cancelHandler($event);
12413
12401
  }
12414
- }, [_vm._v("\n " + _vm._s(_vm.localeCancelText) + "\n ")])], 1)];
12415
- })], 2) : _vm._e()] : [_vm.showHead ? _c('div', {
12402
+ }
12403
+ }, [_vm._v("\n " + _vm._s(_vm.localeCancelText) + "\n ")])], 1)])], 2) : _vm._e()] : [_vm.showHead ? _c('div', {
12416
12404
  staticClass: "bk-dialog-header"
12417
- }, [_vm._t("header", function () {
12418
- return [_c('div', {
12419
- staticClass: "bk-dialog-header-inner"
12420
- }, [_vm._v(_vm._s(_vm.title))])];
12421
- })], 2) : _vm._e(), _c('div', {
12405
+ }, [_vm._t("header", [_c('div', {
12406
+ staticClass: "bk-dialog-header-inner"
12407
+ }, [_vm._v(_vm._s(_vm.title))])])], 2) : _vm._e(), _c('div', {
12422
12408
  staticClass: "bk-dialog-sub-header"
12423
- }, [_vm._t("sub-header", function () {
12424
- return [_c('div', {
12425
- staticClass: "bk-dialog-header-inner"
12426
- }, [_vm._v(_vm._s(_vm.subTitle))])];
12427
- })], 2), _vm.showFooter ? _c('div', {
12409
+ }, [_vm._t("sub-header", [_c('div', {
12410
+ staticClass: "bk-dialog-header-inner"
12411
+ }, [_vm._v(_vm._s(_vm.subTitle))])])], 2), _vm.showFooter ? _c('div', {
12428
12412
  staticClass: "bk-dialog-footer"
12429
- }, [_vm._t("footer", function () {
12430
- return [_c('div', {
12431
- staticClass: "footer-wrapper"
12432
- }, [_c('bk-button', {
12433
- attrs: {
12434
- "type": "button",
12435
- "name": "confirm",
12436
- "loading": _vm.buttonLoading,
12437
- "theme": _vm.theme
12438
- },
12439
- nativeOn: {
12440
- "click": function click($event) {
12441
- return _vm.okHandler.apply(null, arguments);
12442
- }
12413
+ }, [_vm._t("footer", [_c('div', {
12414
+ staticClass: "footer-wrapper"
12415
+ }, [_c('bk-button', {
12416
+ attrs: {
12417
+ "type": "button",
12418
+ "name": "confirm",
12419
+ "loading": _vm.buttonLoading,
12420
+ "theme": _vm.theme
12421
+ },
12422
+ nativeOn: {
12423
+ "click": function click($event) {
12424
+ return _vm.okHandler($event);
12443
12425
  }
12444
- }, [_vm._v("\n " + _vm._s(_vm.localeOkText) + "\n ")]), _c('bk-button', {
12445
- attrs: {
12446
- "type": "button",
12447
- "name": "cancel",
12448
- "disabled": _vm.buttonLoading
12449
- },
12450
- nativeOn: {
12451
- "click": function click($event) {
12452
- return _vm.cancelHandler.apply(null, arguments);
12453
- }
12426
+ }
12427
+ }, [_vm._v("\n " + _vm._s(_vm.localeOkText) + "\n ")]), _c('bk-button', {
12428
+ attrs: {
12429
+ "type": "button",
12430
+ "name": "cancel",
12431
+ "disabled": _vm.buttonLoading
12432
+ },
12433
+ nativeOn: {
12434
+ "click": function click($event) {
12435
+ return _vm.cancelHandler($event);
12454
12436
  }
12455
- }, [_vm._v("\n " + _vm._s(_vm.localeCancelText) + "\n ")])], 1)];
12456
- })], 2) : _vm._e()]], 2)])] : [_vm.shouldRender || _vm.visible ? _c('div', {
12437
+ }
12438
+ }, [_vm._v("\n " + _vm._s(_vm.localeCancelText) + "\n ")])], 1)])], 2) : _vm._e()]], 2)])] : [_vm.shouldRender || _vm.visible ? _c('div', {
12457
12439
  directives: [{
12458
12440
  name: "show",
12459
12441
  rawName: "v-show",
@@ -12473,13 +12455,13 @@
12473
12455
  staticClass: "bk-dialog-tool",
12474
12456
  on: {
12475
12457
  "mousedown": function mousedown($event) {
12476
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "left", 37, $event.key, ["Left", "ArrowLeft"])) {
12458
+ if (!('button' in $event) && _vm._k($event.keyCode, "left", 37, $event.key, ["Left", "ArrowLeft"])) {
12477
12459
  return null;
12478
12460
  }
12479
12461
  if ('button' in $event && $event.button !== 0) {
12480
12462
  return null;
12481
12463
  }
12482
- return _vm.moveStartHandler.apply(null, arguments);
12464
+ return _vm.moveStartHandler($event);
12483
12465
  }
12484
12466
  }
12485
12467
  }, [_vm._t("tools"), _vm.closeIcon ? _c('i', {
@@ -12487,7 +12469,7 @@
12487
12469
  on: {
12488
12470
  "click": function click($event) {
12489
12471
  $event.stopPropagation();
12490
- return _vm.close.apply(null, arguments);
12472
+ return _vm.close($event);
12491
12473
  }
12492
12474
  }
12493
12475
  }) : _vm._e()], 2), _vm.showHead ? _c('div', {
@@ -12498,48 +12480,44 @@
12498
12480
  style: {
12499
12481
  textAlign: _vm.headerPosition
12500
12482
  }
12501
- }, [_vm._t("header", function () {
12502
- return [_c('div', {
12503
- class: {
12504
- 'bk-dialog-header-inner': true,
12505
- 'header-aside': _vm.headerPosition !== 'center'
12506
- }
12507
- }, [_vm._v(_vm._s(_vm.title))])];
12508
- })], 2) : _vm._e(), _c('div', {
12483
+ }, [_vm._t("header", [_c('div', {
12484
+ class: {
12485
+ 'bk-dialog-header-inner': true,
12486
+ 'header-aside': _vm.headerPosition !== 'center'
12487
+ }
12488
+ }, [_vm._v(_vm._s(_vm.title))])])], 2) : _vm._e(), _c('div', {
12509
12489
  staticClass: "bk-dialog-body"
12510
12490
  }, [_vm._t("default")], 2), _vm.showFooter ? _c('div', {
12511
12491
  staticClass: "bk-dialog-footer",
12512
12492
  style: {
12513
12493
  textAlign: _vm.footerPosition
12514
12494
  }
12515
- }, [_vm._t("footer", function () {
12516
- return [_c('div', {
12517
- staticClass: "footer-wrapper"
12518
- }, [_c('bk-button', {
12519
- attrs: {
12520
- "type": "button",
12521
- "name": "confirm",
12522
- "loading": _vm.buttonLoading,
12523
- "theme": _vm.theme
12524
- },
12525
- nativeOn: {
12526
- "click": function click($event) {
12527
- return _vm.okHandler.apply(null, arguments);
12528
- }
12495
+ }, [_vm._t("footer", [_c('div', {
12496
+ staticClass: "footer-wrapper"
12497
+ }, [_c('bk-button', {
12498
+ attrs: {
12499
+ "type": "button",
12500
+ "name": "confirm",
12501
+ "loading": _vm.buttonLoading,
12502
+ "theme": _vm.theme
12503
+ },
12504
+ nativeOn: {
12505
+ "click": function click($event) {
12506
+ return _vm.okHandler($event);
12529
12507
  }
12530
- }, [_vm._v("\n " + _vm._s(_vm.localeOkText) + "\n ")]), _c('bk-button', {
12531
- attrs: {
12532
- "type": "button",
12533
- "name": "cancel",
12534
- "disabled": _vm.buttonLoading
12535
- },
12536
- nativeOn: {
12537
- "click": function click($event) {
12538
- return _vm.cancelHandler.apply(null, arguments);
12539
- }
12508
+ }
12509
+ }, [_vm._v("\n " + _vm._s(_vm.localeOkText) + "\n ")]), _c('bk-button', {
12510
+ attrs: {
12511
+ "type": "button",
12512
+ "name": "cancel",
12513
+ "disabled": _vm.buttonLoading
12514
+ },
12515
+ nativeOn: {
12516
+ "click": function click($event) {
12517
+ return _vm.cancelHandler($event);
12540
12518
  }
12541
- }, [_vm._v("\n " + _vm._s(_vm.localeCancelText) + "\n ")])], 1)];
12542
- })], 2) : _vm._e()])]) : _vm._e()]], 2)], 1)]);
12519
+ }
12520
+ }, [_vm._v("\n " + _vm._s(_vm.localeCancelText) + "\n ")])], 1)])], 2) : _vm._e()])]) : _vm._e()]], 2)], 1)]);
12543
12521
  };
12544
12522
  var __vue_staticRenderFns__$s = [];
12545
12523
 
@@ -24212,18 +24190,18 @@
24212
24190
  },
24213
24191
  on: {
24214
24192
  "keydown": [function ($event) {
24215
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
24193
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
24216
24194
  return null;
24217
24195
  }
24218
24196
  $event.preventDefault();
24219
- return _vm.handleMouseover.apply(null, arguments);
24197
+ return _vm.handleMouseover($event);
24220
24198
  }, function ($event) {
24221
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
24199
+ if (!('button' in $event) && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
24222
24200
  return null;
24223
24201
  }
24224
24202
  $event.stopPropagation();
24225
24203
  $event.preventDefault();
24226
- return _vm.handleMouseout.apply(null, arguments);
24204
+ return _vm.handleMouseout($event);
24227
24205
  }],
24228
24206
  "click": _vm.handleClick,
24229
24207
  "mouseover": _vm.handleMouseover,
@@ -24350,9 +24328,7 @@
24350
24328
  })]), _c('div', {
24351
24329
  staticClass: "bk-exception-text",
24352
24330
  class: _vm.scene + '-text'
24353
- }, [_vm._t("default", function () {
24354
- return [_vm._v(_vm._s(_vm.tipText[_vm.type]))];
24355
- })], 2)]);
24331
+ }, [_vm._t("default", [_vm._v(_vm._s(_vm.tipText[_vm.type]))])], 2)]);
24356
24332
  };
24357
24333
  var __vue_staticRenderFns__$v = [];
24358
24334
 
@@ -28791,10 +28767,10 @@
28791
28767
  style: _vm.computedStyle,
28792
28768
  on: {
28793
28769
  "keyup": function keyup($event) {
28794
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
28770
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
28795
28771
  return null;
28796
28772
  }
28797
- return _vm.handlerEnter.apply(null, arguments);
28773
+ return _vm.handlerEnter($event);
28798
28774
  },
28799
28775
  "keypress": _vm.handlerKeypress,
28800
28776
  "keydown": _vm.handlerKeydown,
@@ -28817,10 +28793,10 @@
28817
28793
  style: _vm.computedStyle,
28818
28794
  on: {
28819
28795
  "keyup": [function ($event) {
28820
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
28796
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
28821
28797
  return null;
28822
28798
  }
28823
- return _vm.handlerEnter.apply(null, arguments);
28799
+ return _vm.handlerEnter($event);
28824
28800
  }, _vm.handlerKeyup],
28825
28801
  "keypress": _vm.handlerKeypress,
28826
28802
  "keydown": _vm.handlerKeydown,
@@ -28861,7 +28837,7 @@
28861
28837
  "click": function click($event) {
28862
28838
  $event.stopPropagation();
28863
28839
  $event.preventDefault();
28864
- return _vm.handlerClear.apply(null, arguments);
28840
+ return _vm.handlerClear($event);
28865
28841
  }
28866
28842
  }
28867
28843
  }) : _vm.rightIcon ? _c('i', {
@@ -29050,9 +29026,7 @@
29050
29026
  staticClass: "point point4"
29051
29027
  })]], 2), _c('div', {
29052
29028
  staticClass: "bk-loading-title"
29053
- }, [_vm._t("default", function () {
29054
- return [_vm._v(_vm._s(_vm.title))];
29055
- })], 2)])])]);
29029
+ }, [_vm._t("default", [_vm._v(_vm._s(_vm.title))])], 2)])])]);
29056
29030
  };
29057
29031
  var __vue_staticRenderFns__$z = [];
29058
29032
 
@@ -29314,9 +29288,7 @@
29314
29288
  'ellipsis': _vm.singleEllipsis
29315
29289
  }],
29316
29290
  style: _vm.ellipsisStyle
29317
- }, [_vm._t("default", function () {
29318
- return [_vm._v(_vm._s(_vm.message))];
29319
- })], 2), _vm.showCopyText ? _c('div', {
29291
+ }, [_vm._t("default", [_vm._v(_vm._s(_vm.message))])], 2), _vm.showCopyText ? _c('div', {
29320
29292
  class: ['bk-message-copy', {
29321
29293
  'copied': _vm.copied
29322
29294
  }],
@@ -29330,7 +29302,7 @@
29330
29302
  on: {
29331
29303
  "click": function click($event) {
29332
29304
  $event.stopPropagation();
29333
- return _vm.close.apply(null, arguments);
29305
+ return _vm.close($event);
29334
29306
  }
29335
29307
  }
29336
29308
  })]) : _vm._e()])]);
@@ -29558,26 +29530,24 @@
29558
29530
  staticClass: "bk-notify-content"
29559
29531
  }, [_vm.title ? _c('h3', {
29560
29532
  staticClass: "bk-notify-content-title"
29561
- }, [_vm._v(_vm._s(_vm.title))]) : _vm._e(), _vm._t("default", function () {
29562
- return [_c('div', {
29563
- class: ['bk-notify-content-text', {
29564
- limitLine: _vm.limitLine > 0
29565
- }],
29566
- style: _vm.contentStyle
29567
- }, [_vm._v("\n " + _vm._s(_vm.message) + "\n "), _vm.showViewMore ? _c('button', {
29568
- staticClass: "showMoreBtn",
29569
- on: {
29570
- "click": _vm.onClickViewMore
29571
- }
29572
- }, [_vm._v("\n " + _vm._s(_vm.t('bk.notify.showMore')) + "\n ")]) : _vm._e()])];
29573
- })], 2), _vm.dismissable ? _c('div', {
29533
+ }, [_vm._v(_vm._s(_vm.title))]) : _vm._e(), _vm._t("default", [_c('div', {
29534
+ class: ['bk-notify-content-text', {
29535
+ limitLine: _vm.limitLine > 0
29536
+ }],
29537
+ style: _vm.contentStyle
29538
+ }, [_vm._v("\n " + _vm._s(_vm.message) + "\n "), _vm.showViewMore ? _c('button', {
29539
+ staticClass: "showMoreBtn",
29540
+ on: {
29541
+ "click": _vm.onClickViewMore
29542
+ }
29543
+ }, [_vm._v("\n " + _vm._s(_vm.t('bk.notify.showMore')) + "\n ")]) : _vm._e()])])], 2), _vm.dismissable ? _c('div', {
29574
29544
  staticClass: "bk-notify-close"
29575
29545
  }, [_c('i', {
29576
29546
  staticClass: "bk-icon icon-close",
29577
29547
  on: {
29578
29548
  "click": function click($event) {
29579
29549
  $event.stopPropagation();
29580
- return _vm.close.apply(null, arguments);
29550
+ return _vm.close($event);
29581
29551
  }
29582
29552
  }
29583
29553
  })]) : _vm._e()])]);
@@ -29772,19 +29742,17 @@
29772
29742
  }
29773
29743
  }, [_c('div', {
29774
29744
  staticClass: "bk-option-content"
29775
- }, [_vm._t("default", function () {
29776
- return [_c('div', {
29777
- staticClass: "bk-option-content-default",
29778
- attrs: {
29779
- "title": _vm.name
29780
- }
29781
- }, [_vm.select.multiple && _vm.isSelected ? _c('i', {
29782
- staticClass: "bk-option-icon bk-icon icon-check-1"
29783
- }) : _vm._e(), _c('span', {
29784
- staticClass: "bk-option-name",
29785
- class: _vm.select.fontSizeCls
29786
- }, [_vm._v("\n " + _vm._s(_vm.name) + "\n ")])])];
29787
- })], 2)]);
29745
+ }, [_vm._t("default", [_c('div', {
29746
+ staticClass: "bk-option-content-default",
29747
+ attrs: {
29748
+ "title": _vm.name
29749
+ }
29750
+ }, [_vm.select.multiple && _vm.isSelected ? _c('i', {
29751
+ staticClass: "bk-option-icon bk-icon icon-check-1"
29752
+ }) : _vm._e(), _c('span', {
29753
+ staticClass: "bk-option-name",
29754
+ class: _vm.select.fontSizeCls
29755
+ }, [_vm._v("\n " + _vm._s(_vm.name) + "\n ")])])])], 2)]);
29788
29756
  };
29789
29757
  var __vue_staticRenderFns__$C = [];
29790
29758
 
@@ -29917,9 +29885,7 @@
29917
29885
  }
29918
29886
  }, [_vm.showPrefixOpt ? [_c('span', {
29919
29887
  class: ['bk-option-group-prefix', _vm.readonly ? 'readonly' : '']
29920
- }, [_vm._v(_vm._s(_vm.prefixOptionText))])] : _vm._e(), _vm._t("group-name", function () {
29921
- return [_vm._v(_vm._s(_vm.name) + " "), _vm.showCount ? [_vm._v("(" + _vm._s(_vm.options.length) + ")")] : _vm._e()];
29922
- })], 2), _c('ul', {
29888
+ }, [_vm._v(_vm._s(_vm.prefixOptionText))])] : _vm._e(), _vm._t("group-name", [_vm._v(_vm._s(_vm.name) + " "), _vm.showCount ? [_vm._v("(" + _vm._s(_vm.options.length) + ")")] : _vm._e()])], 2), _c('ul', {
29923
29889
  directives: [{
29924
29890
  name: "show",
29925
29891
  rawName: "v-show",
@@ -30135,9 +30101,7 @@
30135
30101
  }, [_c('div', {
30136
30102
  ref: "html",
30137
30103
  staticClass: "bk-tooltip-content"
30138
- }, [_vm._t("content", function () {
30139
- return [_vm._v(_vm._s(_vm.content))];
30140
- })], 2), _c('div', {
30104
+ }, [_vm._t("content", [_vm._v(_vm._s(_vm.content))])], 2), _c('div', {
30141
30105
  ref: "reference",
30142
30106
  staticClass: "bk-tooltip-ref",
30143
30107
  attrs: {
@@ -30390,7 +30354,7 @@
30390
30354
  staticClass: "bk-icon icon-close",
30391
30355
  on: {
30392
30356
  "click": function click($event) {
30393
- return _vm.handleRemoveSelected($event, option);
30357
+ _vm.handleRemoveSelected($event, option);
30394
30358
  }
30395
30359
  }
30396
30360
  })]);
@@ -31004,10 +30968,8 @@
31004
30968
  key: index,
31005
30969
  staticClass: "bk-scroll-item",
31006
30970
  style: "height: " + _vm.itemHeight + "px; top: " + item.top + "px"
31007
- }, [_vm._t("index", function () {
31008
- return [_vm._v(_vm._s(item.value))];
31009
- }, {
31010
- "data": item.value
30971
+ }, [_vm._t("index", [_vm._v(_vm._s(item.value))], {
30972
+ data: item.value
31011
30973
  })], 2);
31012
30974
  }), 0) : _vm._e(), _c('ul', {
31013
30975
  ref: "scrollMain",
@@ -31019,7 +30981,7 @@
31019
30981
  staticClass: "bk-scroll-item",
31020
30982
  style: "height: " + _vm.itemHeight + "px; top: " + item.top + "px; left: " + -_vm.bottomScrollDis * (_vm.itemWidth - _vm.mainWidth) / (_vm.mainWidth - _vm.bottomScrollWidth) + "px;"
31021
30983
  }, [_vm._t("default", null, {
31022
- "data": item.value
30984
+ data: item.value
31023
30985
  })], 2);
31024
30986
  }), 0)]), _c('canvas', {
31025
30987
  ref: "minNav",
@@ -31031,7 +30993,7 @@
31031
30993
  style: "height: " + _vm.navHeight + "px; top: " + _vm.minNavTop + "px",
31032
30994
  on: {
31033
30995
  "mousedown": function mousedown($event) {
31034
- return _vm.startNavMove(_vm.visHeight - _vm.navHeight);
30996
+ _vm.startNavMove(_vm.visHeight - _vm.navHeight);
31035
30997
  }
31036
30998
  }
31037
30999
  }) : _vm._e(), _vm.bottomScrollWidth < _vm.mainWidth ? _c('span', {
@@ -31650,23 +31612,23 @@
31650
31612
  },
31651
31613
  on: {
31652
31614
  "keydown": [function ($event) {
31653
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
31615
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
31654
31616
  return null;
31655
31617
  }
31656
31618
  $event.preventDefault();
31657
- return _vm.show.apply(null, arguments);
31619
+ return _vm.show($event);
31658
31620
  }, function ($event) {
31659
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
31621
+ if (!('button' in $event) && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
31660
31622
  return null;
31661
31623
  }
31662
- return _vm.close.apply(null, arguments);
31624
+ return _vm.close($event);
31663
31625
  }, function ($event) {
31664
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
31626
+ if (!('button' in $event) && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
31665
31627
  return null;
31666
31628
  }
31667
31629
  $event.stopPropagation();
31668
31630
  $event.preventDefault();
31669
- return _vm.close.apply(null, arguments);
31631
+ return _vm.close($event);
31670
31632
  }]
31671
31633
  }
31672
31634
  }, [!_vm.$scopedSlots.trigger ? [_vm.loading ? [_c('img', {
@@ -31680,7 +31642,7 @@
31680
31642
  "click": function click($event) {
31681
31643
  $event.preventDefault();
31682
31644
  $event.stopPropagation();
31683
- return _vm.reset.apply(null, arguments);
31645
+ return _vm.reset($event);
31684
31646
  }
31685
31647
  }
31686
31648
  }) : _vm._e(), _c('i', {
@@ -31701,19 +31663,17 @@
31701
31663
  }
31702
31664
  }, [_vm.prefixIcon ? _c('i', {
31703
31665
  class: ['bk-select-prefix-icon', _vm.prefixIcon]
31704
- }) : _vm._e(), _vm._t("trigger", function () {
31705
- return [_vm.multiple && _vm.displayTag ? _c('bk-select-tag', {
31706
- attrs: {
31707
- "width-limit": _vm.isTagWidthLimit
31708
- }
31709
- }) : _c('div', {
31710
- staticClass: "bk-select-name",
31711
- class: _vm.fontSizeCls,
31712
- attrs: {
31713
- "title": _vm.selectedName
31714
- }
31715
- }, [_vm._v("\n " + _vm._s(_vm.selectedName) + "\n ")])];
31716
- }, null, _vm.$props), _c('div', {
31666
+ }) : _vm._e(), _vm._t("trigger", [_vm.multiple && _vm.displayTag ? _c('bk-select-tag', {
31667
+ attrs: {
31668
+ "width-limit": _vm.isTagWidthLimit
31669
+ }
31670
+ }) : _c('div', {
31671
+ staticClass: "bk-select-name",
31672
+ class: _vm.fontSizeCls,
31673
+ attrs: {
31674
+ "title": _vm.selectedName
31675
+ }
31676
+ }, [_vm._v("\n " + _vm._s(_vm.selectedName) + "\n ")])], null, _vm.$props), _c('div', {
31717
31677
  staticClass: "bk-select-dropdown-content",
31718
31678
  class: [_vm.popoverCls, _vm.extPopoverCls],
31719
31679
  style: _vm.popoverStyle,
@@ -31744,17 +31704,17 @@
31744
31704
  },
31745
31705
  on: {
31746
31706
  "keydown": [function ($event) {
31747
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
31707
+ if (!('button' in $event) && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
31748
31708
  return null;
31749
31709
  }
31750
- return _vm.handleClose.apply(null, arguments);
31710
+ return _vm.handleClose($event);
31751
31711
  }, function ($event) {
31752
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
31712
+ if (!('button' in $event) && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
31753
31713
  return null;
31754
31714
  }
31755
31715
  $event.stopPropagation();
31756
31716
  $event.preventDefault();
31757
- return _vm.handleClose.apply(null, arguments);
31717
+ return _vm.handleClose($event);
31758
31718
  }],
31759
31719
  "input": function input($event) {
31760
31720
  if ($event.target.composing) {
@@ -31807,7 +31767,7 @@
31807
31767
  }
31808
31768
  })];
31809
31769
  }
31810
- }], null, false, 3329583054)
31770
+ }])
31811
31771
  }) : _vm._t("default")], 2)]), _vm.showEmpty ? [!_vm.options.length ? _c('div', {
31812
31772
  staticClass: "bk-select-empty",
31813
31773
  class: _vm.fontSizeCls
@@ -32025,7 +31985,7 @@
32025
31985
  },
32026
31986
  on: {
32027
31987
  "click": function click($event) {
32028
- return _vm.handleStep(-1);
31988
+ _vm.handleStep(-1);
32029
31989
  }
32030
31990
  }
32031
31991
  }, [_c('i', {
@@ -32047,7 +32007,7 @@
32047
32007
  on: {
32048
32008
  "click": function click($event) {
32049
32009
  $event.preventDefault();
32050
- return _vm.showPopover.apply(null, arguments);
32010
+ return _vm.showPopover($event);
32051
32011
  }
32052
32012
  }
32053
32013
  }, [_c('span', {
@@ -32086,7 +32046,7 @@
32086
32046
  }],
32087
32047
  on: {
32088
32048
  "mousedown": function mousedown($event) {
32089
- return _vm.handleChangePage(index);
32049
+ _vm.handleChangePage(index);
32090
32050
  }
32091
32051
  }
32092
32052
  }, [_vm._v("\n " + _vm._s(index) + "\n ")]);
@@ -32097,7 +32057,7 @@
32097
32057
  },
32098
32058
  on: {
32099
32059
  "click": function click($event) {
32100
- return _vm.handleStep(1);
32060
+ _vm.handleStep(1);
32101
32061
  }
32102
32062
  }
32103
32063
  }, [_c('i', {
@@ -32421,7 +32381,7 @@
32421
32381
  staticClass: "page-item",
32422
32382
  on: {
32423
32383
  "click": function click($event) {
32424
- return _vm.jumpToPage(1);
32384
+ _vm.jumpToPage(1);
32425
32385
  }
32426
32386
  }
32427
32387
  }, [_c('a', {
@@ -32453,7 +32413,7 @@
32453
32413
  },
32454
32414
  on: {
32455
32415
  "click": function click($event) {
32456
- return _vm.jumpToPage(item);
32416
+ _vm.jumpToPage(item);
32457
32417
  }
32458
32418
  }
32459
32419
  }, [_c('a', {
@@ -32490,7 +32450,7 @@
32490
32450
  },
32491
32451
  on: {
32492
32452
  "click": function click($event) {
32493
- return _vm.jumpToPage(_vm.total);
32453
+ _vm.jumpToPage(_vm.total);
32494
32454
  }
32495
32455
  }
32496
32456
  }, [_c('a', {
@@ -32668,16 +32628,14 @@
32668
32628
  slot: "content"
32669
32629
  }, [!_vm.isTiny ? _c('div', {
32670
32630
  staticClass: "popconfirm-content"
32671
- }, [_vm._t("content", function () {
32672
- return [_vm.title ? _c('div', {
32673
- staticClass: "title"
32674
- }, [_vm._v(_vm._s(_vm.title))]) : _vm._e(), _vm.content ? _c('div', {
32675
- staticClass: "content",
32676
- class: {
32677
- 'is-simple': _vm.isSimple
32678
- }
32679
- }, [_vm._v(_vm._s(_vm.content))]) : _vm._e()];
32680
- })], 2) : _vm._e(), _c('div', {
32631
+ }, [_vm._t("content", [_vm.title ? _c('div', {
32632
+ staticClass: "title"
32633
+ }, [_vm._v(_vm._s(_vm.title))]) : _vm._e(), _vm.content ? _c('div', {
32634
+ staticClass: "content",
32635
+ class: {
32636
+ 'is-simple': _vm.isSimple
32637
+ }
32638
+ }, [_vm._v(_vm._s(_vm.content))]) : _vm._e()])], 2) : _vm._e(), _c('div', {
32681
32639
  staticClass: "popconfirm-operate"
32682
32640
  }, [_vm.localeOkText ? _c('button', {
32683
32641
  staticClass: "default-operate-button primary",
@@ -32890,7 +32848,7 @@
32890
32848
  },
32891
32849
  on: {
32892
32850
  "click": function click($event) {
32893
- return _vm.toggle(item, index);
32851
+ _vm.toggle(item, index);
32894
32852
  }
32895
32853
  }
32896
32854
  }, [_vm._v("\n " + _vm._s(item[_vm.displayKey]) + "\n "), item.isLoading && index === _vm.curProcess - 1 ? _c('div', {
@@ -33099,9 +33057,7 @@
33099
33057
  }, [_vm._v(_vm._s(_vm.percentFixed) + "%")]) : _vm._e()]), _vm.showText && _vm.textInside && _vm.percentFixed === 0 ? [_vm._v(_vm._s(_vm.percentFixed) + "%")] : _vm._e()], 2), _vm.showText && !_vm.textInside ? _c('div', {
33100
33058
  staticClass: "progress-text",
33101
33059
  style: _vm.titleStyle
33102
- }, [_vm._t("default", function () {
33103
- return [_vm._v(_vm._s(_vm.percentFixed) + "%")];
33104
- })], 2) : _vm._e()]);
33060
+ }, [_vm._t("default", [_vm._v(_vm._s(_vm.percentFixed) + "%")])], 2) : _vm._e()]);
33105
33061
  };
33106
33062
  var __vue_staticRenderFns__$P = [];
33107
33063
 
@@ -33276,11 +33232,11 @@
33276
33232
  },
33277
33233
  on: {
33278
33234
  "keydown": function keydown($event) {
33279
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
33235
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
33280
33236
  return null;
33281
33237
  }
33282
33238
  $event.preventDefault();
33283
- return _vm.handlerChange.apply(null, arguments);
33239
+ return _vm.handlerChange($event);
33284
33240
  }
33285
33241
  }
33286
33242
  }, [_c('input', {
@@ -33302,9 +33258,7 @@
33302
33258
  }
33303
33259
  }), _c('div', {
33304
33260
  staticClass: "bk-radio-text"
33305
- }, [_vm._t("default", function () {
33306
- return [_vm._v(_vm._s(_vm.label))];
33307
- })], 2)]);
33261
+ }, [_vm._t("default", [_vm._v(_vm._s(_vm.label))])], 2)]);
33308
33262
  };
33309
33263
  var __vue_staticRenderFns__$Q = [];
33310
33264
 
@@ -33439,11 +33393,11 @@
33439
33393
  },
33440
33394
  on: {
33441
33395
  "keydown": function keydown($event) {
33442
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
33396
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
33443
33397
  return null;
33444
33398
  }
33445
33399
  $event.preventDefault();
33446
- return _vm.handlerChange.apply(null, arguments);
33400
+ return _vm.handlerChange($event);
33447
33401
  }
33448
33402
  }
33449
33403
  }, [_c('input', {
@@ -33466,9 +33420,7 @@
33466
33420
  }
33467
33421
  }), _c('div', {
33468
33422
  staticClass: "bk-radio-button-text"
33469
- }, [_vm._t("default", function () {
33470
- return [_vm._v(_vm._s(_vm.label))];
33471
- })], 2)]);
33423
+ }, [_vm._t("default", [_vm._v(_vm._s(_vm.label))])], 2)]);
33472
33424
  };
33473
33425
  var __vue_staticRenderFns__$R = [];
33474
33426
 
@@ -34087,7 +34039,7 @@
34087
34039
  if ($event.target !== $event.currentTarget) {
34088
34040
  return null;
34089
34041
  }
34090
- return _vm.handleQuickClose.apply(null, arguments);
34042
+ return _vm.handleQuickClose($event);
34091
34043
  }
34092
34044
  }
34093
34045
  }, [_c('section', {
@@ -34117,9 +34069,7 @@
34117
34069
  style: {
34118
34070
  padding: _vm.calcDirection === 'left' ? '0 0 0 50px' : '0 0 0 30px'
34119
34071
  }
34120
- }, [_vm._t("header", function () {
34121
- return [_vm._v("\n " + _vm._s(_vm.title || _vm.t('bk.sideslider.title')) + "\n ")];
34122
- })], 2)]), _c('div', {
34072
+ }, [_vm._t("header", [_vm._v("\n " + _vm._s(_vm.title || _vm.t('bk.sideslider.title')) + "\n ")])], 2)]), _c('div', {
34123
34073
  ref: "content",
34124
34074
  staticClass: "bk-sideslider-content",
34125
34075
  style: {
@@ -34763,7 +34713,7 @@
34763
34713
  on: {
34764
34714
  "click": function click($event) {
34765
34715
  $event.stopPropagation();
34766
- return _vm.setButtonPos.apply(null, arguments);
34716
+ return _vm.setButtonPos($event);
34767
34717
  }
34768
34718
  }
34769
34719
  }, [_c('div', {
@@ -35129,7 +35079,7 @@
35129
35079
  },
35130
35080
  on: {
35131
35081
  "click": function click($event) {
35132
- return _vm.jumpTo(index + 1);
35082
+ _vm.jumpTo(index + 1);
35133
35083
  }
35134
35084
  }
35135
35085
  }, [_vm.isCurrent(index) && _vm.currentStatus === 'loading' || _vm.isLoadingStatus(step) ? _c('i', {
@@ -35152,7 +35102,7 @@
35152
35102
  },
35153
35103
  on: {
35154
35104
  "click": function click($event) {
35155
- return _vm.jumpTo(index + 1);
35105
+ _vm.jumpTo(index + 1);
35156
35106
  }
35157
35107
  }
35158
35108
  }, [_vm._v("\n " + _vm._s(step.title) + "\n ")]), step.description ? _c('div', {
@@ -35328,11 +35278,11 @@
35328
35278
  on: {
35329
35279
  "click": _vm.change,
35330
35280
  "keydown": function keydown($event) {
35331
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
35281
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
35332
35282
  return null;
35333
35283
  }
35334
35284
  $event.preventDefault();
35335
- return _vm.change.apply(null, arguments);
35285
+ return _vm.change($event);
35336
35286
  }
35337
35287
  }
35338
35288
  }, [_c('input', {
@@ -36048,10 +35998,10 @@
36048
35998
  },
36049
35999
  nativeOn: {
36050
36000
  "&mouseenter": function mouseenter($event) {
36051
- return _vm.handleLabelHover(panel);
36001
+ _vm.handleLabelHover(panel);
36052
36002
  },
36053
36003
  "&mouseleave": function mouseleave($event) {
36054
- return _vm.handleClearHoverTimer(panel);
36004
+ _vm.handleClearHoverTimer(panel);
36055
36005
  }
36056
36006
  }
36057
36007
  });
@@ -38350,7 +38300,7 @@
38350
38300
  _vm.keyword = $event.target.value.trim();
38351
38301
  },
38352
38302
  "blur": function blur($event) {
38353
- return _vm.$forceUpdate();
38303
+ _vm.$forceUpdate();
38354
38304
  }
38355
38305
  }
38356
38306
  })]) : _vm._e(), _vm.multiple ? [_c('bk-checkbox-group', {
@@ -38435,7 +38385,7 @@
38435
38385
  },
38436
38386
  on: {
38437
38387
  "click": function click($event) {
38438
- return _vm.handleSelect(filter);
38388
+ _vm.handleSelect(filter);
38439
38389
  }
38440
38390
  }
38441
38391
  }, [_vm._v("\n " + _vm._s(filter.text) + "\n ")]);
@@ -39609,7 +39559,7 @@
39609
39559
  }, _vm.tableSize ? "bk-table-" + _vm.tableSize : '', _vm.extCls],
39610
39560
  on: {
39611
39561
  "mouseleave": function mouseleave($event) {
39612
- return _vm.handleMouseLeave($event);
39562
+ _vm.handleMouseLeave($event);
39613
39563
  }
39614
39564
  }
39615
39565
  }, [_c('div', {
@@ -39662,11 +39612,9 @@
39662
39612
  }
39663
39613
  }, [_c('span', {
39664
39614
  staticClass: "bk-table-empty-text"
39665
- }, [_vm._t("empty", function () {
39666
- return [_c('i', {
39667
- staticClass: "bk-table-empty-icon bk-icon icon-empty"
39668
- }), _c('div', [_vm._v(_vm._s(_vm.emptyText || _vm.t('bk.table.emptyText')))])];
39669
- })], 2)]) : _vm._e(), _vm.$slots.append ? _c('div', {
39615
+ }, [_vm._t("empty", [_c('i', {
39616
+ staticClass: "bk-table-empty-icon bk-icon icon-empty"
39617
+ }), _c('div', [_vm._v(_vm._s(_vm.emptyText || _vm.t('bk.table.emptyText')))])])], 2)]) : _vm._e(), _vm.$slots.append ? _c('div', {
39670
39618
  ref: "appendWrapper",
39671
39619
  staticClass: "bk-table-append-wrapper"
39672
39620
  }, [_vm._t("append")], 2) : _vm._e()], 1), _vm.showSummary ? _c('div', {
@@ -40661,7 +40609,7 @@
40661
40609
  },
40662
40610
  nativeOn: {
40663
40611
  "click": function click($event) {
40664
- return _vm.handleSelectAll.apply(null, arguments);
40612
+ return _vm.handleSelectAll($event);
40665
40613
  }
40666
40614
  }
40667
40615
  }, [_vm._v("\n " + _vm._s(_vm.t('bk.table.setting.fields.selectAll')) + "\n ")])], 1), _c('bk-checkbox-group', {
@@ -40700,7 +40648,7 @@
40700
40648
  },
40701
40649
  on: {
40702
40650
  "click": function click($event) {
40703
- return _vm.setSize('small');
40651
+ _vm.setSize('small');
40704
40652
  }
40705
40653
  }
40706
40654
  }, [_vm._v("\n " + _vm._s(_vm.t('bk.table.setting.lineHeight.small')) + "\n ")]), _c('bk-button', {
@@ -40712,7 +40660,7 @@
40712
40660
  },
40713
40661
  on: {
40714
40662
  "click": function click($event) {
40715
- return _vm.setSize('medium');
40663
+ _vm.setSize('medium');
40716
40664
  }
40717
40665
  }
40718
40666
  }, [_vm._v("\n " + _vm._s(_vm.t('bk.table.setting.lineHeight.medium')) + "\n ")]), _c('bk-button', {
@@ -40724,7 +40672,7 @@
40724
40672
  },
40725
40673
  on: {
40726
40674
  "click": function click($event) {
40727
- return _vm.setSize('large');
40675
+ _vm.setSize('large');
40728
40676
  }
40729
40677
  }
40730
40678
  }, [_vm._v("\n " + _vm._s(_vm.t('bk.table.setting.lineHeight.large')) + "\n ")])], 1)])]), _c('div', {
@@ -42011,7 +41959,7 @@
42011
41959
  class: _vm.extCls,
42012
41960
  on: {
42013
41961
  "click": function click($event) {
42014
- return _vm.focusInputer($event);
41962
+ _vm.focusInputer($event);
42015
41963
  }
42016
41964
  }
42017
41965
  }, [_c('div', {
@@ -42045,7 +41993,7 @@
42045
41993
  staticClass: "key-node",
42046
41994
  on: {
42047
41995
  "click": function click($event) {
42048
- return _vm.selectTag($event, tag);
41996
+ _vm.selectTag($event, tag);
42049
41997
  }
42050
41998
  }
42051
41999
  }, [_c('tag-render', {
@@ -42059,7 +42007,7 @@
42059
42007
  on: {
42060
42008
  "click": function click($event) {
42061
42009
  $event.stopPropagation();
42062
- return _vm.handlerTagRemove(tag, index);
42010
+ _vm.handlerTagRemove(tag, index);
42063
42011
  }
42064
42012
  }
42065
42013
  }) : _vm._e()], 1);
@@ -42101,7 +42049,7 @@
42101
42049
  "focus": _vm.handleFocus,
42102
42050
  "paste": _vm.handlePaste,
42103
42051
  "blur": function blur($event) {
42104
- return _vm.handleBlur(_vm.curInputValue);
42052
+ _vm.handleBlur(_vm.curInputValue);
42105
42053
  },
42106
42054
  "keydown": _vm.handleKeydown
42107
42055
  }
@@ -42118,7 +42066,7 @@
42118
42066
  on: {
42119
42067
  "click": function click($event) {
42120
42068
  $event.stopPropagation();
42121
- return _vm.handlerClear.apply(null, arguments);
42069
+ return _vm.handlerClear($event);
42122
42070
  }
42123
42071
  }
42124
42072
  }) : _vm._e()]), _c('bk-popover', {
@@ -42169,7 +42117,7 @@
42169
42117
  }, _vm.activeClass(data, index)],
42170
42118
  on: {
42171
42119
  "mousedown": function mousedown($event) {
42172
- return _vm.handlerResultSelect(data, 'select');
42120
+ _vm.handlerResultSelect(data, 'select');
42173
42121
  }
42174
42122
  }
42175
42123
  }, [_c('list-render', {
@@ -42216,7 +42164,7 @@
42216
42164
  }, _vm.activeClass(data, index)],
42217
42165
  on: {
42218
42166
  "click": function click($event) {
42219
- return _vm.handlerResultSelect(data, 'select');
42167
+ _vm.handlerResultSelect(data, 'select');
42220
42168
  }
42221
42169
  }
42222
42170
  }, [_c('list-render', {
@@ -42423,25 +42371,21 @@
42423
42371
  }
42424
42372
  }) : _vm._e()], 1)]) : _vm._e(), _c('div', {
42425
42373
  staticClass: "bk-timeline-section"
42426
- }, [_vm._t("title" + index, function () {
42427
- return [item.tag !== '' ? _c('div', {
42428
- class: ['bk-timeline-title', {
42429
- 'has-event': !!_vm.$listeners['select']
42430
- }],
42431
- domProps: {
42432
- "innerHTML": _vm._s(item.tag)
42433
- },
42434
- on: {
42435
- "click": function click($event) {
42436
- return _vm.toggle(item);
42437
- }
42374
+ }, [_vm._t("title" + index, [item.tag !== '' ? _c('div', {
42375
+ class: ['bk-timeline-title', {
42376
+ 'has-event': !!_vm.$listeners['select']
42377
+ }],
42378
+ domProps: {
42379
+ "innerHTML": _vm._s(item.tag)
42380
+ },
42381
+ on: {
42382
+ "click": function click($event) {
42383
+ _vm.toggle(item);
42438
42384
  }
42439
- }) : _vm._e()];
42440
- }, null, item), item.content ? _c('div', {
42385
+ }
42386
+ }) : _vm._e()], null, item), item.content ? _c('div', {
42441
42387
  staticClass: "bk-timeline-content"
42442
- }, [_vm.isNode(item) ? [_vm._t('nodeContent' + index, function () {
42443
- return [_vm._v(_vm._s(_vm.nodeContent(item, index)))];
42444
- })] : [_c('div', {
42388
+ }, [_vm.isNode(item) ? [_vm._t('nodeContent' + index, [_vm._v(_vm._s(_vm.nodeContent(item, index)))])] : [_c('div', {
42445
42389
  attrs: {
42446
42390
  "title": _vm.computedTitle(item.content)
42447
42391
  },
@@ -42922,38 +42866,36 @@
42922
42866
  "click": function click($event) {
42923
42867
  $event.stopPropagation();
42924
42868
  $event.preventDefault();
42925
- return _vm.leftClick(index);
42869
+ _vm.leftClick(index);
42926
42870
  },
42927
42871
  "mouseover": function mouseover($event) {
42928
42872
  $event.stopPropagation();
42929
42873
  $event.preventDefault();
42930
- return _vm.leftMouseover(index);
42874
+ _vm.leftMouseover(index);
42931
42875
  },
42932
42876
  "mouseleave": function mouseleave($event) {
42933
42877
  $event.stopPropagation();
42934
42878
  $event.preventDefault();
42935
- return _vm.leftMouseleave(index);
42879
+ _vm.leftMouseleave(index);
42936
42880
  }
42937
42881
  }
42938
- }, [_vm._t("source-option", function () {
42939
- return [_vm.showOverflowTips ? _c('span', {
42940
- directives: [{
42941
- name: "bk-overflow-tips",
42942
- rawName: "v-bk-overflow-tips"
42943
- }],
42944
- staticClass: "content-text"
42945
- }, [_vm._v(_vm._s(item[_vm.displayCode]))]) : _c('span', {
42946
- staticClass: "content-text",
42947
- attrs: {
42948
- "title": item[_vm.displayCode]
42949
- }
42950
- }, [_vm._v(_vm._s(item[_vm.displayCode]))]), _c('span', {
42951
- staticClass: "icon-wrapper",
42952
- class: [index === _vm.leftHoverIndex ? 'hover' : '']
42953
- }, [_c('i', {
42954
- staticClass: "bk-icon icon-arrows-right"
42955
- })])];
42956
- }, null, item)], 2);
42882
+ }, [_vm._t("source-option", [_vm.showOverflowTips ? _c('span', {
42883
+ directives: [{
42884
+ name: "bk-overflow-tips",
42885
+ rawName: "v-bk-overflow-tips"
42886
+ }],
42887
+ staticClass: "content-text"
42888
+ }, [_vm._v(_vm._s(item[_vm.displayCode]))]) : _c('span', {
42889
+ staticClass: "content-text",
42890
+ attrs: {
42891
+ "title": item[_vm.displayCode]
42892
+ }
42893
+ }, [_vm._v(_vm._s(item[_vm.displayCode]))]), _c('span', {
42894
+ staticClass: "icon-wrapper",
42895
+ class: [index === _vm.leftHoverIndex ? 'hover' : '']
42896
+ }, [_c('i', {
42897
+ staticClass: "bk-icon icon-arrows-right"
42898
+ })])], null, item)], 2);
42957
42899
  }), 0)] : [_vm.slot['left-empty-content'] ? _c('div', [_vm._t("left-empty-content")], 2) : _c('div', {
42958
42900
  staticClass: "empty"
42959
42901
  }, [_vm._v("\n " + _vm._s(_vm.emptyContent[0] ? _vm.emptyContent[0] : _vm.t('bk.transfer.emptyContent')) + "\n ")])]], 2), _c('div', {
@@ -42983,38 +42925,36 @@
42983
42925
  "click": function click($event) {
42984
42926
  $event.stopPropagation();
42985
42927
  $event.preventDefault();
42986
- return _vm.rightClick(index);
42928
+ _vm.rightClick(index);
42987
42929
  },
42988
42930
  "mouseover": function mouseover($event) {
42989
42931
  $event.stopPropagation();
42990
42932
  $event.preventDefault();
42991
- return _vm.rightMouseover(index);
42933
+ _vm.rightMouseover(index);
42992
42934
  },
42993
42935
  "mouseleave": function mouseleave($event) {
42994
42936
  $event.stopPropagation();
42995
42937
  $event.preventDefault();
42996
- return _vm.rightMouseleave(index);
42938
+ _vm.rightMouseleave(index);
42997
42939
  }
42998
42940
  }
42999
- }, [_vm._t("target-option", function () {
43000
- return [_vm.showOverflowTips ? _c('span', {
43001
- directives: [{
43002
- name: "bk-overflow-tips",
43003
- rawName: "v-bk-overflow-tips"
43004
- }],
43005
- staticClass: "content-text"
43006
- }, [_vm._v(_vm._s(item[_vm.displayCode]))]) : _c('span', {
43007
- staticClass: "content-text",
43008
- attrs: {
43009
- "title": item[_vm.displayCode]
43010
- }
43011
- }, [_vm._v(_vm._s(item[_vm.displayCode]))]), _c('span', {
43012
- staticClass: "icon-wrapper",
43013
- class: [index === _vm.rightHoverIndex ? 'hover' : '']
43014
- }, [_c('i', {
43015
- staticClass: "bk-icon icon-close"
43016
- })])];
43017
- }, null, item)], 2);
42941
+ }, [_vm._t("target-option", [_vm.showOverflowTips ? _c('span', {
42942
+ directives: [{
42943
+ name: "bk-overflow-tips",
42944
+ rawName: "v-bk-overflow-tips"
42945
+ }],
42946
+ staticClass: "content-text"
42947
+ }, [_vm._v(_vm._s(item[_vm.displayCode]))]) : _c('span', {
42948
+ staticClass: "content-text",
42949
+ attrs: {
42950
+ "title": item[_vm.displayCode]
42951
+ }
42952
+ }, [_vm._v(_vm._s(item[_vm.displayCode]))]), _c('span', {
42953
+ staticClass: "icon-wrapper",
42954
+ class: [index === _vm.rightHoverIndex ? 'hover' : '']
42955
+ }, [_c('i', {
42956
+ staticClass: "bk-icon icon-close"
42957
+ })])], null, item)], 2);
43018
42958
  }), 0)] : [_vm.slot['right-empty-content'] ? _c('div', [_vm._t("right-empty-content")], 2) : _c('div', {
43019
42959
  staticClass: "empty"
43020
42960
  }, [_vm._v("\n " + _vm._s(_vm.emptyContent[1] ? _vm.emptyContent[1] : _vm.t('bk.transfer.emptySelected')) + "\n ")])]], 2)]);
@@ -43744,10 +43684,10 @@
43744
43684
  },
43745
43685
  on: {
43746
43686
  "drop": function drop($event) {
43747
- return _vm.drop(item, $event);
43687
+ _vm.drop(item, $event);
43748
43688
  },
43749
43689
  "dragover": function dragover($event) {
43750
- return _vm.dragover($event);
43690
+ _vm.dragover($event);
43751
43691
  }
43752
43692
  }
43753
43693
  }, [_c('div', {
@@ -43757,14 +43697,14 @@
43757
43697
  },
43758
43698
  on: {
43759
43699
  "dragstart": function dragstart($event) {
43760
- return _vm.drag(item, $event);
43700
+ _vm.drag(item, $event);
43761
43701
  }
43762
43702
  }
43763
43703
  }, [!item.parent || item.children && item.children.length || item.async ? _c('span', {
43764
43704
  class: ['bk-icon', 'tree-expanded-icon', item.expanded ? 'icon-down-shape' : 'icon-right-shape'],
43765
43705
  on: {
43766
43706
  "click": function click($event) {
43767
- return _vm.expandNode(item);
43707
+ _vm.expandNode(item);
43768
43708
  }
43769
43709
  }
43770
43710
  }) : _vm._e(), _vm.multiple ? _c('label', {
@@ -43801,14 +43741,14 @@
43801
43741
  }
43802
43742
  }, function ($event) {
43803
43743
  $event.stopPropagation();
43804
- return _vm.changeCheckStatus(item, $event);
43744
+ _vm.changeCheckStatus(item, $event);
43805
43745
  }]
43806
43746
  }
43807
43747
  }) : _vm._e()]) : _vm._e(), _c('div', {
43808
43748
  staticClass: "tree-node",
43809
43749
  on: {
43810
43750
  "click": function click($event) {
43811
- return _vm.triggerExpand(item);
43751
+ _vm.triggerExpand(item);
43812
43752
  }
43813
43753
  }
43814
43754
  }, [_vm.isShowIcon ? _c('span', {
@@ -44394,7 +44334,7 @@
44394
44334
  staticClass: "bk-icon icon-close delete-file",
44395
44335
  on: {
44396
44336
  "click": function click($event) {
44397
- return _vm.deleteFile(index, file);
44337
+ _vm.deleteFile(index, file);
44398
44338
  }
44399
44339
  }
44400
44340
  })]) : _vm._e()]);
@@ -44466,7 +44406,7 @@
44466
44406
  staticClass: "bk-icon icon-close delete-file error",
44467
44407
  on: {
44468
44408
  "click": function click($event) {
44469
- return _vm.deleteFile(0, _vm.fileList[0]);
44409
+ _vm.deleteFile(0, _vm.fileList[0]);
44470
44410
  }
44471
44411
  }
44472
44412
  })]) : _vm._e(), _vm.fileList[0].status === 'done' && !_vm.fileList[0].errorMsg ? _c('div', {
@@ -44481,7 +44421,7 @@
44481
44421
  staticClass: "bk-icon icon-close delete-file",
44482
44422
  on: {
44483
44423
  "click": function click($event) {
44484
- return _vm.deleteFile(0, _vm.fileList[0]);
44424
+ _vm.deleteFile(0, _vm.fileList[0]);
44485
44425
  }
44486
44426
  }
44487
44427
  })])]) : _vm._e()])]], 2) : _vm._e(), _c('input', {
@@ -44520,7 +44460,7 @@
44520
44460
  staticClass: "bk-icon icon-close close-upload",
44521
44461
  on: {
44522
44462
  "click": function click($event) {
44523
- return _vm.deleteFile(index, file);
44463
+ _vm.deleteFile(index, file);
44524
44464
  }
44525
44465
  }
44526
44466
  }), _c('div', {
@@ -44946,10 +44886,10 @@
44946
44886
  },
44947
44887
  on: {
44948
44888
  "click": function click($event) {
44949
- return _vm.chooseRate(index);
44889
+ _vm.chooseRate(index);
44950
44890
  },
44951
44891
  "mouseenter": function mouseenter($event) {
44952
- return _vm.changeHover(index);
44892
+ _vm.changeHover(index);
44953
44893
  }
44954
44894
  }
44955
44895
  }, [_c('g', {
@@ -45079,7 +45019,7 @@
45079
45019
  },
45080
45020
  nativeOn: {
45081
45021
  "mouseleave": function mouseleave($event) {
45082
- return _vm.changeHover(0);
45022
+ _vm.changeHover(0);
45083
45023
  }
45084
45024
  }
45085
45025
  })] : [_c('bk-star', {
@@ -45337,23 +45277,21 @@
45337
45277
  style: {
45338
45278
  'width': _vm.realWidth + "px"
45339
45279
  }
45340
- }, [_vm._t("default", function () {
45341
- return [_c('span', {
45342
- class: [{
45343
- 'bk-swiper-link': pic.link
45344
- }, pic.class, 'bk-swiper-img'],
45345
- style: {
45346
- 'background-image': "url(" + pic.url + ")",
45347
- 'background-color': pic.color
45348
- },
45349
- on: {
45350
- "click": function click($event) {
45351
- return _vm.goToLink(pic.link);
45352
- }
45280
+ }, [_vm._t("default", [_c('span', {
45281
+ class: [{
45282
+ 'bk-swiper-link': pic.link
45283
+ }, pic.class, 'bk-swiper-img'],
45284
+ style: {
45285
+ 'background-image': "url(" + pic.url + ")",
45286
+ 'background-color': pic.color
45287
+ },
45288
+ on: {
45289
+ "click": function click($event) {
45290
+ _vm.goToLink(pic.link);
45353
45291
  }
45354
- })];
45355
- }, {
45356
- "data": pic
45292
+ }
45293
+ })], {
45294
+ data: pic
45357
45295
  })], 2);
45358
45296
  }), 0), _c('ul', {
45359
45297
  staticClass: "bk-swiper-index"
@@ -45365,7 +45303,7 @@
45365
45303
  },
45366
45304
  on: {
45367
45305
  "mouseover": function mouseover($event) {
45368
- return _vm.changeIndex(index + 1);
45306
+ _vm.changeIndex(index + 1);
45369
45307
  }
45370
45308
  }
45371
45309
  });
@@ -45373,7 +45311,7 @@
45373
45311
  staticClass: "bk-swiper-nav bk-nav-prev",
45374
45312
  on: {
45375
45313
  "click": function click($event) {
45376
- return _vm.changeIndex(_vm.currentIndex - 1);
45314
+ _vm.changeIndex(_vm.currentIndex - 1);
45377
45315
  }
45378
45316
  }
45379
45317
  }, [_c('i', {
@@ -45382,7 +45320,7 @@
45382
45320
  staticClass: "bk-swiper-nav bk-nav-next",
45383
45321
  on: {
45384
45322
  "click": function click($event) {
45385
- return _vm.changeIndex(_vm.currentIndex + 1);
45323
+ _vm.changeIndex(_vm.currentIndex + 1);
45386
45324
  }
45387
45325
  }
45388
45326
  }, [_c('i', {
@@ -45533,11 +45471,11 @@
45533
45471
  on: {
45534
45472
  "mousewheel": function mousewheel($event) {
45535
45473
  $event.preventDefault();
45536
- return _vm.scrollImage.apply(null, arguments);
45474
+ return _vm.scrollImage($event);
45537
45475
  },
45538
45476
  "DOMMouseScroll": function DOMMouseScroll($event) {
45539
45477
  $event.preventDefault();
45540
- return _vm.scrollImage.apply(null, arguments);
45478
+ return _vm.scrollImage($event);
45541
45479
  },
45542
45480
  "mousedown": _vm.mouseDown
45543
45481
  }
@@ -45885,25 +45823,23 @@
45885
45823
  index !== _vm.active && _vm.handleItemClick(index);
45886
45824
  }
45887
45825
  }
45888
- }, [_vm._t("item", function () {
45889
- return [_c('span', {
45890
- directives: [{
45891
- name: "bk-overflow-tips",
45892
- rawName: "v-bk-overflow-tips",
45893
- value: {
45894
- content: item[_vm.versionTitleName],
45895
- placement: 'right'
45896
- },
45897
- expression: "{ content: item[versionTitleName], placement: 'right' }"
45898
- }],
45899
- staticClass: "item-title"
45900
- }, [_vm._v(_vm._s(item[_vm.versionTitleName]))]), _c('span', {
45901
- staticClass: "item-date"
45902
- }, [_vm._v(_vm._s(item[_vm.versionSubTitleName]))]), item[_vm.versionTitleName] === _vm.currentVersion ? _c('span', {
45903
- staticClass: "item-current"
45904
- }, [_vm._v(" " + _vm._s('当前版本') + " ")]) : _vm._e()];
45905
- }, {
45906
- "version": {
45826
+ }, [_vm._t("item", [_c('span', {
45827
+ directives: [{
45828
+ name: "bk-overflow-tips",
45829
+ rawName: "v-bk-overflow-tips",
45830
+ value: {
45831
+ content: item[_vm.versionTitleName],
45832
+ placement: 'right'
45833
+ },
45834
+ expression: "{ content: item[versionTitleName], placement: 'right' }"
45835
+ }],
45836
+ staticClass: "item-title"
45837
+ }, [_vm._v(_vm._s(item[_vm.versionTitleName]))]), _c('span', {
45838
+ staticClass: "item-date"
45839
+ }, [_vm._v(_vm._s(item[_vm.versionSubTitleName]))]), item[_vm.versionTitleName] === _vm.currentVersion ? _c('span', {
45840
+ staticClass: "item-current"
45841
+ }, [_vm._v(" " + _vm._s('当前版本') + " ")]) : _vm._e()], {
45842
+ version: {
45907
45843
  item: item,
45908
45844
  index: index
45909
45845
  }
@@ -45938,10 +45874,8 @@
45938
45874
  style: {
45939
45875
  height: _vm.dialog.height + 'px'
45940
45876
  }
45941
- }, [_vm._t("default", function () {
45942
- return [_vm._v("\n " + _vm._s(_vm.versionDetail) + "\n ")];
45943
- }, {
45944
- "detail": _vm.versionDetail
45877
+ }, [_vm._t("default", [_vm._v("\n " + _vm._s(_vm.versionDetail) + "\n ")], {
45878
+ detail: _vm.versionDetail
45945
45879
  })], 2)])]], 2);
45946
45880
  };
45947
45881
  var __vue_staticRenderFns__$1f = [];
@@ -47310,7 +47244,7 @@
47310
47244
  staticClass: "chip-clear bk-icon icon-close",
47311
47245
  on: {
47312
47246
  "click": function click($event) {
47313
- return _vm.handleClear(index, item);
47247
+ _vm.handleClear(index, item);
47314
47248
  }
47315
47249
  }
47316
47250
  })]);
@@ -47351,31 +47285,27 @@
47351
47285
  if ($event.target !== $event.currentTarget) {
47352
47286
  return null;
47353
47287
  }
47354
- return _vm.handleClearAll.apply(null, arguments);
47288
+ return _vm.handleClearAll($event);
47355
47289
  }
47356
47290
  }
47357
- }) : _vm._e(), _vm._t("nextfix", function () {
47358
- return [_c('i', {
47359
- staticClass: "bk-icon icon-search search-nextfix-icon",
47360
- class: {
47361
- 'is-focus': _vm.input.focus
47362
- },
47363
- on: {
47364
- "click": function click($event) {
47365
- if ($event.target !== $event.currentTarget) {
47366
- return null;
47367
- }
47368
- return _vm.handleClickSearch.apply(null, arguments);
47291
+ }) : _vm._e(), _vm._t("nextfix", [_c('i', {
47292
+ staticClass: "bk-icon icon-search search-nextfix-icon",
47293
+ class: {
47294
+ 'is-focus': _vm.input.focus
47295
+ },
47296
+ on: {
47297
+ "click": function click($event) {
47298
+ if ($event.target !== $event.currentTarget) {
47299
+ return null;
47369
47300
  }
47301
+ return _vm.handleClickSearch($event);
47370
47302
  }
47371
- })];
47372
- })], 2)]), _vm.validateStr.length ? _c('div', {
47303
+ }
47304
+ })])], 2)]), _vm.validateStr.length ? _c('div', {
47373
47305
  staticClass: "bk-select-tips"
47374
- }, [_vm._t("validate", function () {
47375
- return [_c('i', {
47376
- staticClass: "bk-icon icon-exclamation-circle-shape select-tips"
47377
- }), _vm._v(_vm._s(_vm.validateStr || '') + "\n ")];
47378
- })], 2) : _vm._e()]);
47306
+ }, [_vm._t("validate", [_c('i', {
47307
+ staticClass: "bk-icon icon-exclamation-circle-shape select-tips"
47308
+ }), _vm._v(_vm._s(_vm.validateStr || '') + "\n ")])], 2) : _vm._e()]);
47379
47309
  };
47380
47310
  var __vue_staticRenderFns__$1g = [];
47381
47311
 
@@ -47826,7 +47756,7 @@
47826
47756
  },
47827
47757
  on: {
47828
47758
  "click": function click($event) {
47829
- return _vm.props.node.tree.handleNodeClick(_vm.props.node);
47759
+ _vm.props.node.tree.handleNodeClick(_vm.props.node);
47830
47760
  }
47831
47761
  }
47832
47762
  }, [_c('div', {
@@ -47838,7 +47768,7 @@
47838
47768
  on: {
47839
47769
  "click": function click($event) {
47840
47770
  $event.stopPropagation();
47841
- return _vm.props.node.tree.handleNodeExpand(_vm.props.node);
47771
+ _vm.props.node.tree.handleNodeExpand(_vm.props.node);
47842
47772
  }
47843
47773
  }
47844
47774
  }) : _vm._e(), _vm.props.node.hasCheckbox ? _c('span', {
@@ -47851,18 +47781,16 @@
47851
47781
  on: {
47852
47782
  "click": function click($event) {
47853
47783
  $event.stopPropagation();
47854
- return _vm.props.node.tree.handleNodeCheck(_vm.props.node);
47784
+ _vm.props.node.tree.handleNodeCheck(_vm.props.node);
47855
47785
  }
47856
47786
  }
47857
47787
  }) : _vm._e(), _vm.props.node.nodeIcon ? _c('i', {
47858
47788
  class: ['node-icon', _vm.props.node.nodeIcon]
47859
47789
  }) : _vm._e()]), _c('div', {
47860
47790
  staticClass: "node-content"
47861
- }, [_vm._t("default", function () {
47862
- return [_vm._v("\n " + _vm._s(_vm.props.node.name) + "\n ")];
47863
- }, {
47864
- "node": _vm.props.node,
47865
- "data": _vm.props.node.data
47791
+ }, [_vm._t("default", [_vm._v("\n " + _vm._s(_vm.props.node.name) + "\n ")], {
47792
+ node: _vm.props.node,
47793
+ data: _vm.props.node.data
47866
47794
  })], 2)]) : _vm._e();
47867
47795
  };
47868
47796
  var __vue_staticRenderFns__$1h = [];
@@ -48594,11 +48522,11 @@
48594
48522
  "id": "bk-big-tree-" + _vm.id + "-node-" + node.id
48595
48523
  }
48596
48524
  }, [_vm._t("default", null, {
48597
- "node": node,
48598
- "data": node.data
48525
+ node: node,
48526
+ data: node.data
48599
48527
  })], 2);
48600
48528
  }
48601
- }], null, true)
48529
+ }])
48602
48530
  }) : _vm._l(_vm.nodes, function (node) {
48603
48531
  return [_c('tree-item', {
48604
48532
  key: node.id,
@@ -48608,14 +48536,12 @@
48608
48536
  "node": node
48609
48537
  }
48610
48538
  }, [_vm._t("default", null, {
48611
- "node": node,
48612
- "data": node.data
48539
+ node: node,
48540
+ data: node.data
48613
48541
  })], 2)];
48614
48542
  }), (_vm.$slots.empty || _vm.useDefaultEmpty) && _vm.isSearchEmpty ? _c('div', {
48615
48543
  staticClass: "bk-big-tree-empty"
48616
- }, [_vm._t("empty", function () {
48617
- return [_vm._v("\n " + _vm._s(_vm.t('bk.bigTree.emptyText')) + "\n ")];
48618
- })], 2) : _vm._e()], 2);
48544
+ }, [_vm._t("empty", [_vm._v("\n " + _vm._s(_vm.t('bk.bigTree.emptyText')) + "\n ")])], 2) : _vm._e()], 2);
48619
48545
  };
48620
48546
  var __vue_staticRenderFns__$1i = [];
48621
48547
 
@@ -48667,17 +48593,13 @@
48667
48593
  style: {
48668
48594
  borderBottomWidth: _vm.navigationType === 'left-right' ? '0' : '1px'
48669
48595
  }
48670
- }, 'div', _vm.$attrs, false), [_vm._t("default", function () {
48671
- return [_c('span', {
48672
- staticClass: "title-icon"
48673
- }, [_vm._t("side-icon", function () {
48674
- return [_c('i', {
48675
- staticClass: "bk-icon icon-rtx"
48676
- })];
48677
- })], 2), _c('span', {
48678
- staticClass: "title-desc"
48679
- }, [_vm._v(_vm._s(_vm.sideTitle))])];
48680
- })], 2);
48596
+ }, 'div', _vm.$attrs, false), [_vm._t("default", [_c('span', {
48597
+ staticClass: "title-icon"
48598
+ }, [_vm._t("side-icon", [_c('i', {
48599
+ staticClass: "bk-icon icon-rtx"
48600
+ })])], 2), _c('span', {
48601
+ staticClass: "title-desc"
48602
+ }, [_vm._v(_vm._s(_vm.sideTitle))])])], 2);
48681
48603
  };
48682
48604
  var __vue_staticRenderFns__$1j = [];
48683
48605
 
@@ -48844,11 +48766,9 @@
48844
48766
  attrs: {
48845
48767
  "side-title": _vm.sideTitle
48846
48768
  }
48847
- }, [_vm.$slots['side-header'] || _vm.$slots['side-icon'] ? [_vm.$slots['side-header'] ? _vm._t("side-header", function () {
48848
- return [_vm.$slots['side-icon'] ? _c('template', {
48849
- slot: "side-icon"
48850
- }, [_vm._t("side-icon")], 2) : _vm._e()];
48851
- }) : _vm.$slots['side-icon'] ? _c('template', {
48769
+ }, [_vm.$slots['side-header'] || _vm.$slots['side-icon'] ? [_vm.$slots['side-header'] ? _vm._t("side-header", [_vm.$slots['side-icon'] ? _c('template', {
48770
+ slot: "side-icon"
48771
+ }, [_vm._t("side-icon")], 2) : _vm._e()]) : _vm.$slots['side-icon'] ? _c('template', {
48852
48772
  slot: "side-icon"
48853
48773
  }, [_vm._t("side-icon")], 2) : _vm._e()] : _vm._e()], 2), _c('div', {
48854
48774
  staticClass: "header-right"
@@ -48868,10 +48788,10 @@
48868
48788
  },
48869
48789
  on: {
48870
48790
  "&mouseenter": function mouseenter($event) {
48871
- return _vm.handleMouseOver.apply(null, arguments);
48791
+ return _vm.handleMouseOver($event);
48872
48792
  },
48873
48793
  "&mouseleave": function mouseleave($event) {
48874
- return _vm.handleMouseLeave.apply(null, arguments);
48794
+ return _vm.handleMouseLeave($event);
48875
48795
  }
48876
48796
  }
48877
48797
  }, [_vm.navigationType !== 'top-bottom' ? [_c('navigation-menu-title', {
@@ -48881,11 +48801,9 @@
48881
48801
  attrs: {
48882
48802
  "side-title": _vm.sideTitle
48883
48803
  }
48884
- }, [_vm.$slots['side-header'] || _vm.$slots['side-icon'] ? [_vm.$slots['side-header'] ? _vm._t("side-header", function () {
48885
- return [_vm.$slots['side-icon'] ? _c('template', {
48886
- slot: "side-icon"
48887
- }, [_vm._t("side-icon")], 2) : _vm._e()];
48888
- }) : _vm.$slots['side-icon'] ? _c('template', {
48804
+ }, [_vm.$slots['side-header'] || _vm.$slots['side-icon'] ? [_vm.$slots['side-header'] ? _vm._t("side-header", [_vm.$slots['side-icon'] ? _c('template', {
48805
+ slot: "side-icon"
48806
+ }, [_vm._t("side-icon")], 2) : _vm._e()]) : _vm.$slots['side-icon'] ? _c('template', {
48889
48807
  slot: "side-icon"
48890
48808
  }, [_vm._t("side-icon")], 2) : _vm._e()] : _vm._e()], 2)] : _vm._e(), _c('div', {
48891
48809
  staticClass: "nav-slider-list",
@@ -48902,7 +48820,7 @@
48902
48820
  on: {
48903
48821
  "click": function click($event) {
48904
48822
  $event.stopPropagation();
48905
- return _vm.handleClick.apply(null, arguments);
48823
+ return _vm.handleClick($event);
48906
48824
  }
48907
48825
  }
48908
48826
  }, [_c('span', {
@@ -48937,13 +48855,11 @@
48937
48855
  style: {
48938
48856
  flexBasis: _vm.headHeight + 'px'
48939
48857
  }
48940
- }, [_vm._t("header", function () {
48941
- return [_c('div', {
48942
- staticClass: "container-header-title"
48943
- }, [_vm._v(_vm._s(_vm.headerTitle))]), _c('div', {
48944
- staticClass: "container-header-sets"
48945
- }, [_vm._t("header-set")], 2)];
48946
- })], 2)] : _vm._e(), _c('div', {
48858
+ }, [_vm._t("header", [_c('div', {
48859
+ staticClass: "container-header-title"
48860
+ }, [_vm._v(_vm._s(_vm.headerTitle))]), _c('div', {
48861
+ staticClass: "container-header-sets"
48862
+ }, [_vm._t("header-set")], 2)])], 2)] : _vm._e(), _c('div', {
48947
48863
  staticClass: "container-content",
48948
48864
  style: {
48949
48865
  maxHeight: "calc(100vh - " + _vm.headHeight + "px)"
@@ -49550,18 +49466,18 @@
49550
49466
  if ($event.target !== $event.currentTarget) {
49551
49467
  return null;
49552
49468
  }
49553
- return _vm.handleMouseHover(!_vm.disabled);
49469
+ _vm.handleMouseHover(!_vm.disabled);
49554
49470
  },
49555
49471
  "mouseleave": function mouseleave($event) {
49556
49472
  if ($event.target !== $event.currentTarget) {
49557
49473
  return null;
49558
49474
  }
49559
- return _vm.handleMouseHover(false);
49475
+ _vm.handleMouseHover(false);
49560
49476
  },
49561
49477
  "click": function click($event) {
49562
49478
  $event.stopPropagation();
49563
49479
  $event.preventDefault();
49564
- return _vm.handleSbmenuClick.apply(null, arguments);
49480
+ return _vm.handleSbmenuClick($event);
49565
49481
  }
49566
49482
  }
49567
49483
  }, [_vm.icon ? _c('span', {
@@ -49636,7 +49552,7 @@
49636
49552
  on: {
49637
49553
  "click": function click($event) {
49638
49554
  $event.stopPropagation();
49639
- return _vm.handleClick($event);
49555
+ _vm.handleClick($event);
49640
49556
  },
49641
49557
  "mouseover": function mouseover($event) {
49642
49558
  if ($event.target !== $event.currentTarget) {
@@ -49648,7 +49564,7 @@
49648
49564
  if ($event.target !== $event.currentTarget) {
49649
49565
  return null;
49650
49566
  }
49651
- return _vm.handleMouseHover(false);
49567
+ _vm.handleMouseHover(false);
49652
49568
  }
49653
49569
  }
49654
49570
  }, [_vm.icon ? _c('span', {
@@ -49806,32 +49722,30 @@
49806
49722
  }
49807
49723
  }, [_c('div', {
49808
49724
  staticClass: "bk-option-content"
49809
- }, [_vm._t("default", function () {
49810
- return [_c('div', {
49811
- staticClass: "bk-option-content-default",
49812
- attrs: {
49813
- "title": _vm.item.name
49814
- }
49815
- }, [_vm.multiple ? _c('div', {
49816
- staticClass: "bk-cascade-check"
49817
- }, [_c('bk-checkbox', {
49818
- attrs: {
49819
- "value": _vm.item.isSelected,
49820
- "disabled": _vm.item.disabled,
49821
- "indeterminate": _vm.item.isIndeterminate
49822
- },
49823
- on: {
49824
- "change": _vm.handleCheckItem
49825
- }
49826
- })], 1) : _vm._e(), _c('span', {
49827
- staticClass: "bk-option-name",
49828
- class: {
49829
- 'bk-margin-left': _vm.multiple
49830
- }
49831
- }, [_vm._v("\n " + _vm._s(_vm.item.name) + "\n "), _vm._t("prepend", null, {
49832
- "node": _vm.item
49833
- })], 2)])];
49834
- })], 2), _vm.isRemote ? [_vm.item.isLoading ? _c('i', {
49725
+ }, [_vm._t("default", [_c('div', {
49726
+ staticClass: "bk-option-content-default",
49727
+ attrs: {
49728
+ "title": _vm.item.name
49729
+ }
49730
+ }, [_vm.multiple ? _c('div', {
49731
+ staticClass: "bk-cascade-check"
49732
+ }, [_c('bk-checkbox', {
49733
+ attrs: {
49734
+ "value": _vm.item.isSelected,
49735
+ "disabled": _vm.item.disabled,
49736
+ "indeterminate": _vm.item.isIndeterminate
49737
+ },
49738
+ on: {
49739
+ "change": _vm.handleCheckItem
49740
+ }
49741
+ })], 1) : _vm._e(), _c('span', {
49742
+ staticClass: "bk-option-name",
49743
+ class: {
49744
+ 'bk-margin-left': _vm.multiple
49745
+ }
49746
+ }, [_vm._v("\n " + _vm._s(_vm.item.name) + "\n "), _vm._t("prepend", null, {
49747
+ node: _vm.item
49748
+ })], 2)])])], 2), _vm.isRemote ? [_vm.item.isLoading ? _c('i', {
49835
49749
  staticClass: "bk-icon left-icon icon-loading bk-button-icon-loading bk-cascade-right"
49836
49750
  }, [_c('span', {
49837
49751
  staticClass: "loading"
@@ -50161,11 +50075,11 @@
50161
50075
  nativeOn: {
50162
50076
  "click": function click($event) {
50163
50077
  $event.stopPropagation();
50164
- return _vm.cascadeClick(item);
50078
+ _vm.cascadeClick(item);
50165
50079
  },
50166
50080
  "mouseenter": function mouseenter($event) {
50167
50081
  $event.stopPropagation();
50168
- return _vm.cascadeHover(item);
50082
+ _vm.cascadeHover(item);
50169
50083
  }
50170
50084
  },
50171
50085
  scopedSlots: _vm._u([{
@@ -50173,10 +50087,10 @@
50173
50087
  fn: function fn(ref) {
50174
50088
  var node = ref.node;
50175
50089
  return [_vm._t("prepend", null, {
50176
- "node": node
50090
+ node: node
50177
50091
  })];
50178
50092
  }
50179
- }], null, true)
50093
+ }])
50180
50094
  });
50181
50095
  }), 1) : _c('ul', {
50182
50096
  staticClass: "bk-cascade-panel-ul",
@@ -50203,10 +50117,10 @@
50203
50117
  fn: function fn(ref) {
50204
50118
  var node = ref.node;
50205
50119
  return [_vm._t("prepend", null, {
50206
- "node": node
50120
+ node: node
50207
50121
  })];
50208
50122
  }
50209
- }], null, true)
50123
+ }])
50210
50124
  }) : _vm._e()], 1);
50211
50125
  };
50212
50126
  var __vue_staticRenderFns__$1n = [];
@@ -50851,23 +50765,23 @@
50851
50765
  },
50852
50766
  on: {
50853
50767
  "keydown": [function ($event) {
50854
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
50768
+ if (!('button' in $event) && _vm._k($event.keyCode, "enter", 13, $event.key, "Enter")) {
50855
50769
  return null;
50856
50770
  }
50857
50771
  $event.preventDefault();
50858
- return _vm.showTippyInstance.apply(null, arguments);
50772
+ return _vm.showTippyInstance($event);
50859
50773
  }, function ($event) {
50860
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
50774
+ if (!('button' in $event) && _vm._k($event.keyCode, "tab", 9, $event.key, "Tab")) {
50861
50775
  return null;
50862
50776
  }
50863
- return _vm.handleDropdownHide.apply(null, arguments);
50777
+ return _vm.handleDropdownHide($event);
50864
50778
  }, function ($event) {
50865
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
50779
+ if (!('button' in $event) && _vm._k($event.keyCode, "esc", 27, $event.key, ["Esc", "Escape"])) {
50866
50780
  return null;
50867
50781
  }
50868
50782
  $event.stopPropagation();
50869
50783
  $event.preventDefault();
50870
- return _vm.handleDropdownHide.apply(null, arguments);
50784
+ return _vm.handleDropdownHide($event);
50871
50785
  }]
50872
50786
  }
50873
50787
  }, [_c('i', {
@@ -50878,7 +50792,7 @@
50878
50792
  "click": function click($event) {
50879
50793
  $event.preventDefault();
50880
50794
  $event.stopPropagation();
50881
- return _vm.clearData.apply(null, arguments);
50795
+ return _vm.clearData($event);
50882
50796
  }
50883
50797
  }
50884
50798
  }) : _vm._e(), _c('bk-popover', {
@@ -50914,7 +50828,7 @@
50914
50828
  on: {
50915
50829
  "click": function click($event) {
50916
50830
  $event.stopPropagation();
50917
- return _vm.removeTag(item, index);
50831
+ _vm.removeTag(item, index);
50918
50832
  }
50919
50833
  }
50920
50834
  }, [_c('i', {
@@ -51014,21 +50928,19 @@
51014
50928
  "click": function click($event) {
51015
50929
  $event.preventDefault();
51016
50930
  $event.stopPropagation();
51017
- return _vm.handleSelectItem(item, index);
50931
+ _vm.handleSelectItem(item, index);
51018
50932
  }
51019
50933
  }
51020
50934
  }, [_c('div', {
51021
50935
  staticClass: "bk-option-content"
51022
- }, [_vm._t("default", function () {
51023
- return [_c('div', {
51024
- staticClass: "bk-option-content-default",
51025
- attrs: {
51026
- "title": item.name
51027
- }
51028
- }, [_c('span', {
51029
- staticClass: "bk-option-name"
51030
- }, [_vm._v(_vm._s(item.name))])])];
51031
- })], 2)]);
50936
+ }, [_vm._t("default", [_c('div', {
50937
+ staticClass: "bk-option-content-default",
50938
+ attrs: {
50939
+ "title": item.name
50940
+ }
50941
+ }, [_c('span', {
50942
+ staticClass: "bk-option-name"
50943
+ }, [_vm._v(_vm._s(item.name))])])])], 2)]);
51032
50944
  }), !_vm.searchList.length ? _c('li', {
51033
50945
  staticClass: "bk-option-none"
51034
50946
  }, [_c('span', [_vm._v(_vm._s(_vm.emptyText || _vm.t('bk.select.searchEmpty')))])]) : _vm._e()], 2)]) : _vm._e(), _c('bk-caspanel', {
@@ -51057,10 +50969,10 @@
51057
50969
  fn: function fn(ref) {
51058
50970
  var node = ref.node;
51059
50971
  return [_vm._t("prepend", null, {
51060
- "node": node
50972
+ node: node
51061
50973
  })];
51062
50974
  }
51063
- }], null, true)
50975
+ }])
51064
50976
  })], 1)])], 2)], 1);
51065
50977
  };
51066
50978
  var __vue_staticRenderFns__$1o = [];
@@ -51202,37 +51114,35 @@
51202
51114
  }
51203
51115
  }, [_vm.isCollapse ? _c('i', {
51204
51116
  class: "bk-icon bk-card-head-icon " + _vm.collapseIcon
51205
- }) : _vm._e(), _vm._t("header", function () {
51206
- return [_vm.showInput ? [_c('span', {
51207
- staticClass: "title",
51208
- attrs: {
51209
- "title": _vm.renderTitle
51210
- }
51211
- }, [_vm._v(_vm._s(_vm.renderTitle))]), _c('span', {
51212
- staticClass: "card-edit"
51213
- }, [_vm.isEdit ? _c('i', {
51214
- staticClass: "bk-icon icon-edit-line",
51215
- on: {
51216
- "click": _vm.clickEdit
51217
- }
51218
- }) : _vm._e()])] : _c('bk-input', {
51219
- ref: "titleInputComp",
51220
- attrs: {
51221
- "ext-cls": "bk-card-input"
51222
- },
51223
- on: {
51224
- "blur": _vm.saveEdit,
51225
- "enter": _vm.saveEdit
51117
+ }) : _vm._e(), _vm._t("header", [_vm.showInput ? [_c('span', {
51118
+ staticClass: "title",
51119
+ attrs: {
51120
+ "title": _vm.renderTitle
51121
+ }
51122
+ }, [_vm._v(_vm._s(_vm.renderTitle))]), _c('span', {
51123
+ staticClass: "card-edit"
51124
+ }, [_vm.isEdit ? _c('i', {
51125
+ staticClass: "bk-icon icon-edit-line",
51126
+ on: {
51127
+ "click": _vm.clickEdit
51128
+ }
51129
+ }) : _vm._e()])] : _c('bk-input', {
51130
+ ref: "titleInputComp",
51131
+ attrs: {
51132
+ "ext-cls": "bk-card-input"
51133
+ },
51134
+ on: {
51135
+ "blur": _vm.saveEdit,
51136
+ "enter": _vm.saveEdit
51137
+ },
51138
+ model: {
51139
+ value: _vm.renderTitle,
51140
+ callback: function callback($$v) {
51141
+ _vm.renderTitle = $$v;
51226
51142
  },
51227
- model: {
51228
- value: _vm.renderTitle,
51229
- callback: function callback($$v) {
51230
- _vm.renderTitle = $$v;
51231
- },
51232
- expression: "renderTitle"
51233
- }
51234
- })];
51235
- })], 2) : _vm._e(), _vm.collapseActive ? [_c('div', {
51143
+ expression: "renderTitle"
51144
+ }
51145
+ })])], 2) : _vm._e(), _vm.collapseActive ? [_c('div', {
51236
51146
  staticClass: "bk-card-body"
51237
51147
  }, [_vm._t("default")], 2), _vm.showFoot ? _c('div', {
51238
51148
  staticClass: "bk-card-foot"
@@ -51584,42 +51494,42 @@
51584
51494
  staticClass: "bk-icon icon-narrow-line",
51585
51495
  on: {
51586
51496
  "click": function click($event) {
51587
- return _vm.handleActions('zoomOut');
51497
+ _vm.handleActions('zoomOut');
51588
51498
  }
51589
51499
  }
51590
51500
  }), _c('i', {
51591
51501
  staticClass: "bk-icon icon-enlarge-line",
51592
51502
  on: {
51593
51503
  "click": function click($event) {
51594
- return _vm.handleActions('zoomIn');
51504
+ _vm.handleActions('zoomIn');
51595
51505
  }
51596
51506
  }
51597
51507
  }), _c('i', {
51598
51508
  staticClass: "bk-icon icon-normalized",
51599
51509
  on: {
51600
51510
  "click": function click($event) {
51601
- return _vm.toggleMode('original');
51511
+ _vm.toggleMode('original');
51602
51512
  }
51603
51513
  }
51604
51514
  }), _c('i', {
51605
51515
  staticClass: "bk-icon icon-left-turn-line",
51606
51516
  on: {
51607
51517
  "click": function click($event) {
51608
- return _vm.handleActions('anticlocelise');
51518
+ _vm.handleActions('anticlocelise');
51609
51519
  }
51610
51520
  }
51611
51521
  }), _c('i', {
51612
51522
  staticClass: "bk-icon icon-right-turn-line",
51613
51523
  on: {
51614
51524
  "click": function click($event) {
51615
- return _vm.handleActions('clocelise');
51525
+ _vm.handleActions('clocelise');
51616
51526
  }
51617
51527
  }
51618
51528
  }), _c('i', {
51619
51529
  staticClass: "bk-icon icon-unfull-screen",
51620
51530
  on: {
51621
51531
  "click": function click($event) {
51622
- return _vm.toggleMode('contain');
51532
+ _vm.toggleMode('contain');
51623
51533
  }
51624
51534
  }
51625
51535
  })])]), _c('div', {
@@ -51898,19 +51808,15 @@
51898
51808
  var _c = _vm._self._c || _h;
51899
51809
  return _c('div', {
51900
51810
  staticClass: "bk-image"
51901
- }, [_vm.loading ? _vm._t("placeholder", function () {
51902
- return [_vm._m(0)];
51903
- }) : _vm.error ? _vm._t("error", function () {
51904
- return [_c('div', {
51905
- staticClass: "bk-image-placeholder"
51906
- }, [_vm.fallback ? _c('img', {
51907
- attrs: {
51908
- "src": _vm.fallback
51909
- }
51910
- }) : _c('i', {
51911
- staticClass: "bk-icon icon-image-fail"
51912
- })])];
51913
- }) : _c('img', _vm._g(_vm._b({
51811
+ }, [_vm.loading ? _vm._t("placeholder", [_vm._m(0)]) : _vm.error ? _vm._t("error", [_c('div', {
51812
+ staticClass: "bk-image-placeholder"
51813
+ }, [_vm.fallback ? _c('img', {
51814
+ attrs: {
51815
+ "src": _vm.fallback
51816
+ }
51817
+ }) : _c('i', {
51818
+ staticClass: "bk-icon icon-image-fail"
51819
+ })])]) : _c('img', _vm._g(_vm._b({
51914
51820
  staticClass: "bk-image-inner",
51915
51821
  class: {
51916
51822
  'bk-image-inner-center': _vm.alignCenter,
@@ -52281,7 +52187,7 @@
52281
52187
  on: {
52282
52188
  "click": function click($event) {
52283
52189
  $event.stopPropagation();
52284
- return _vm.handleClose.apply(null, arguments);
52190
+ return _vm.handleClose($event);
52285
52191
  }
52286
52192
  }
52287
52193
  }) : _vm._e()]);
@@ -52601,13 +52507,13 @@
52601
52507
  style: _vm.computedTriggerStyle,
52602
52508
  on: {
52603
52509
  "mousedown": function mousedown($event) {
52604
- if (!$event.type.indexOf('key') && _vm._k($event.keyCode, "left", 37, $event.key, ["Left", "ArrowLeft"])) {
52510
+ if (!('button' in $event) && _vm._k($event.keyCode, "left", 37, $event.key, ["Left", "ArrowLeft"])) {
52605
52511
  return null;
52606
52512
  }
52607
52513
  if ('button' in $event && $event.button !== 0) {
52608
52514
  return null;
52609
52515
  }
52610
- return _vm.handleMousedown($event);
52516
+ _vm.handleMousedown($event);
52611
52517
  }
52612
52518
  }
52613
52519
  }), _c('i', {
@@ -52619,14 +52525,12 @@
52619
52525
  }],
52620
52526
  ref: "resizeProxy",
52621
52527
  class: ['bk-resize-proxy', _vm.placement]
52622
- }), _vm.collapsible ? _vm._t("collapse-trigger", function () {
52623
- return [_c('i', {
52624
- staticClass: "bk-resize-collapse bk-icon icon-angle-left",
52625
- on: {
52626
- "click": _vm.setCollapse
52627
- }
52628
- })];
52629
- }) : _vm._e()], 2), _c('main', {
52528
+ }), _vm.collapsible ? _vm._t("collapse-trigger", [_c('i', {
52529
+ staticClass: "bk-resize-collapse bk-icon icon-angle-left",
52530
+ on: {
52531
+ "click": _vm.setCollapse
52532
+ }
52533
+ })]) : _vm._e()], 2), _c('main', {
52630
52534
  staticClass: "bk-resize-layout-main"
52631
52535
  }, [_vm._t("main")], 2), _c('div', {
52632
52536
  ref: "resizeMask",