nubomed-ui 2.0.175 → 2.0.176

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.
@@ -272,6 +272,27 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".el-pagination--left[data-v-0ac60d85]{
272
272
  /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
273
273
 
274
274
 
275
+ /***/ }),
276
+
277
+ /***/ 4411:
278
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
279
+
280
+ "use strict";
281
+ __webpack_require__.r(__webpack_exports__);
282
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1601);
283
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
284
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6314);
285
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
286
+ // Imports
287
+
288
+
289
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
290
+ // Module
291
+ ___CSS_LOADER_EXPORT___.push([module.id, "b,strong{font-family:OPPOSans-B,OPPOSans B,OPPOSans;font-weight:400}i{font-style:normal}", ""]);
292
+ // Exports
293
+ /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
294
+
295
+
275
296
  /***/ }),
276
297
 
277
298
  /***/ 6314:
@@ -21765,6 +21786,22 @@ var update = add("7c8b4c93", content, true, {"sourceMap":false,"shadowMode":fals
21765
21786
 
21766
21787
  /***/ }),
21767
21788
 
21789
+ /***/ 6403:
21790
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
21791
+
21792
+ // style-loader: Adds some css to the DOM by adding a <style> tag
21793
+
21794
+ // load the styles
21795
+ var content = __webpack_require__(4411);
21796
+ if(content.__esModule) content = content.default;
21797
+ if(typeof content === 'string') content = [[module.id, content, '']];
21798
+ if(content.locals) module.exports = content.locals;
21799
+ // add the styles to the DOM
21800
+ var add = (__webpack_require__(9548)/* ["default"] */ .A)
21801
+ var update = add("4f9c5615", content, true, {"sourceMap":false,"shadowMode":false});
21802
+
21803
+ /***/ }),
21804
+
21768
21805
  /***/ 9548:
21769
21806
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
21770
21807
 
@@ -26263,6 +26300,10 @@ __webpack_require__.d(__webpack_exports__, {
26263
26300
  NBTag: function() { return /* reexport */ NBTag["default"]; },
26264
26301
  cabinetHelp: function() { return /* reexport */ cabinetHelp; },
26265
26302
  "default": function() { return /* binding */ entry_lib; },
26303
+ nbAlert: function() { return /* reexport */ nbAlert; },
26304
+ nbConfirm: function() { return /* reexport */ nbConfirm; },
26305
+ nbMessage: function() { return /* reexport */ nbMessage; },
26306
+ nbNotify: function() { return /* reexport */ nbNotify; },
26266
26307
  setDateFormat: function() { return /* reexport */ date_util/* setDateFormat */.U; }
26267
26308
  });
26268
26309
 
@@ -26290,7 +26331,7 @@ var esnext_iterator_constructor = __webpack_require__(8992);
26290
26331
  // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.for-each.js
26291
26332
  var esnext_iterator_for_each = __webpack_require__(3949);
26292
26333
  ;// ./package.json
26293
- var package_namespaceObject = {"rE":"2.0.175"};
26334
+ var package_namespaceObject = {"rE":"2.0.176"};
26294
26335
  ;// ./packages/utils/convert.js
26295
26336
  /**
26296
26337
  * 将大驼峰(camelCase)字符串转换为小写且带有空格分隔的形式(kebab-case)
@@ -26310,6 +26351,241 @@ var date_util = __webpack_require__(2035);
26310
26351
  var NBLoading = __webpack_require__(8816);
26311
26352
  // EXTERNAL MODULE: ./packages/components/NBTag/index.js + 4 modules
26312
26353
  var NBTag = __webpack_require__(3588);
26354
+ // EXTERNAL MODULE: ./packages/styles/reset.scss
26355
+ var styles_reset = __webpack_require__(6403);
26356
+ ;// ./packages/utils/feadback/el-message.js
26357
+ /**
26358
+ * MessageBox.confirm 确认弹框
26359
+ * @param {Object} MessageBox ElementUI 的 MessageBox 组件
26360
+ * @param {Object} obj 配置对象
26361
+ * @param {String} obj.type 图标类型,info-不显示图标 / success-成功 / warning-警告 / abnormal-异常 / error-失败
26362
+ * @param {String} obj.title 标题,支持换行显示,用<br>隔开
26363
+ * @param {String} obj.message 消息正文内容
26364
+ * @param {String} obj.messageType 消息正文内容类型:info-提示,灰色字体 / success-成功,绿色字体 / warning-警告,黄色字体 / danger-失败,红色字体
26365
+ * @param {String} obj.cancelButtonText 取消按钮的文本内容
26366
+ * @param {String} obj.cancelButtonType 取消按钮的类型,按钮为朴素按钮:default-默认按钮,danger-异常按钮,primary-主要按钮
26367
+ * @param {String} obj.confirmButtonText 确定按钮的文本内容
26368
+ * @param {String} obj.confirmButtonType 确定按钮的类型:default-默认按钮,danger-异常按钮,primary-主要按钮
26369
+ * @param {String} obj.size 尺寸:small-小尺寸720*520,默认尺寸 / medium-中尺寸1000*640
26370
+ * @returns MessageBox.confirm
26371
+ */
26372
+ const nbConfirm = (MessageBox, obj) => {
26373
+ if (typeof obj === 'string') {
26374
+ obj = {
26375
+ title: obj
26376
+ };
26377
+ }
26378
+ let cancelButtonClass = 'is-plain';
26379
+ obj.cancelButtonType = obj.cancelButtonType || 'default';
26380
+ if ((obj.cancelButtonType || '').includes('danger')) {
26381
+ cancelButtonClass += ' el-button--danger';
26382
+ }
26383
+ let confirmButtonClass = '';
26384
+ if (obj.confirmButtonType) {
26385
+ confirmButtonClass += ` el-button--${obj.confirmButtonType}`;
26386
+ }
26387
+
26388
+ // 如果未指定size,但是要显示图标+标题+正文,则size为medium
26389
+ if (!obj.size && obj.type && obj.title && obj.message) {
26390
+ obj.size = 'medium';
26391
+ }
26392
+ let customClass = ` nb-confirm--${obj.size || 'small'}`;
26393
+ // 未指定type(即不显示图标)
26394
+ if (!obj.type) {
26395
+ customClass += ' nb-confirm--no-icon';
26396
+ }
26397
+ return MessageBox.confirm(getHtml(obj), '', {
26398
+ dangerouslyUseHTMLString: true,
26399
+ showClose: false,
26400
+ showCancelButton: true,
26401
+ cancelButtonText: obj.cancelButtonText,
26402
+ cancelButtonClass: cancelButtonClass,
26403
+ showConfirmButton: true,
26404
+ confirmButtonText: obj.confirmButtonText,
26405
+ confirmButtonClass: confirmButtonClass,
26406
+ closeOnClickModal: false,
26407
+ closeOnPressEscape: false,
26408
+ center: true,
26409
+ customClass: `nb-confirm ${customClass} ` + (obj.customClass || '')
26410
+ });
26411
+ };
26412
+
26413
+ /**
26414
+ * MessageBox.alert 确定弹框
26415
+ * @param {Object} MessageBox ElementUI 的 MessageBox 组件
26416
+ * @param {Object} obj 配置对象
26417
+ * @param {String} obj.type 图标类型,warning-红色警告
26418
+ * @param {String} obj.title 标题,支持HTML,换行显示,用<br>隔开
26419
+ * @param {String} obj.message 消息正文内容
26420
+ * @param {String} obj.messageType 消息正文内容类型:warning-黄色字体,success-绿色字体,danger-红色字体,默认灰色字体
26421
+ * @param {String} obj.buttonText 确定按钮的文本内容
26422
+ * @param {String} obj.customClass 自定义类名
26423
+ * @param {String} obj.buttonType 按钮的类型:danger-异常按钮
26424
+ * @param {Boolean} obj.buttonPlain 是否朴素按钮,默认true
26425
+ * @param {String} obj.size 尺寸:small-小尺寸720*520,默认尺寸 / medium-中尺寸1000*640
26426
+ * @returns MessageBox.alert
26427
+ */
26428
+ const nbAlert = (MessageBox, obj) => {
26429
+ if (typeof obj === 'string') {
26430
+ obj = {
26431
+ title: obj
26432
+ };
26433
+ }
26434
+ let confirmButtonClass = '';
26435
+ if (obj.buttonType) {
26436
+ confirmButtonClass += ` el-button--${obj.buttonType}`;
26437
+ }
26438
+ if (typeof obj.buttonPlain !== 'boolean') {
26439
+ obj.buttonPlain = true;
26440
+ }
26441
+ if (obj.buttonPlain) {
26442
+ confirmButtonClass += ' is-plain';
26443
+ }
26444
+ // 如果未指定size,但是要显示图标+标题+正文,则size为medium
26445
+ if (!obj.size && obj.type && obj.title && obj.message) {
26446
+ obj.size = 'medium';
26447
+ }
26448
+ let customClass = ` nb-alert--${obj.size || 'small'}`;
26449
+ // 未指定type(即不显示图标)
26450
+ if (!obj.type) {
26451
+ customClass += ' nb-alert--no-icon';
26452
+ }
26453
+ return MessageBox.alert(getHtml(obj), '', {
26454
+ dangerouslyUseHTMLString: true,
26455
+ showClose: false,
26456
+ confirmButtonText: obj.confirmButtonText || obj.buttonText,
26457
+ confirmButtonClass: confirmButtonClass,
26458
+ closeOnClickModal: false,
26459
+ closeOnPressEscape: false,
26460
+ center: true,
26461
+ customClass: `nb-alert ${customClass} ` + (obj.customClass || '')
26462
+ });
26463
+ };
26464
+
26465
+ /**
26466
+ * 弹框显示的内容
26467
+ * @param {String} obj.type 图标类型,warning-红色警告
26468
+ * @param {String} obj.title 标题,支持换行显示,用<br>隔开,最多支持换2行
26469
+ * @param {String} obj.message 消息正文内容
26470
+ * @param {String} obj.messageType 消息正文内容类型:warning-绿色字体,其它灰色字体,默认灰色字体
26471
+ * @param {String} obj.cancelButtonText 取消按钮的文本内容
26472
+ * @param {String} obj.confirmButtonText 确定按钮的文本内容
26473
+ * @returns 拼接的HTML字符串
26474
+ */
26475
+ function getHtml(obj) {
26476
+ let html = '';
26477
+ // 图标
26478
+ switch (obj.type) {
26479
+ case 'success':
26480
+ html += `<img class="message__icon" src="${__webpack_require__(6559)}" />`;
26481
+ break;
26482
+ case 'warning':
26483
+ html += `<img class="message__icon" src="${__webpack_require__(629)}" />`;
26484
+ break;
26485
+ case 'abnormal':
26486
+ html += `<img class="message__icon" src="${__webpack_require__(3906)}" />`;
26487
+ break;
26488
+ case 'error':
26489
+ html += `<img class="message__icon" src="${__webpack_require__(8508)}" />`;
26490
+ break;
26491
+ default:
26492
+ break;
26493
+ }
26494
+ // 标题
26495
+ if (obj.title) {
26496
+ html += `<div class="message__title">${obj.title}</div>`;
26497
+ }
26498
+ // 正文
26499
+ if (obj.message) {
26500
+ html += `<div class="message__message message__message--${obj.messageType || 'info'}">${obj.message}</div>`;
26501
+ }
26502
+ return html;
26503
+ }
26504
+ const types = ['success', 'warning', 'error', 'abnormal'];
26505
+ const defaultDuration = 2000;
26506
+
26507
+ /**
26508
+ * @param {Object} Message ElementUI 的 Message 组件
26509
+ * @param {Object} obj 配置对象
26510
+ * @param {string} obj.type 图标类型, 可选值: success warning error
26511
+ * @param {string} obj.title 标题,支持换行显示,用<br>隔开
26512
+ */
26513
+ const nbMessage = (Message, obj) => {
26514
+ const duration = obj.duration === undefined ? defaultDuration : obj.duration;
26515
+ const m = Message({
26516
+ duration: duration,
26517
+ center: true,
26518
+ dangerouslyUseHTMLString: true,
26519
+ message: obj.message,
26520
+ type: obj.type,
26521
+ offset: 220,
26522
+ customClass: `nb-message nb-message--${obj.type} ${obj.customClass ? obj.customClass : ''}`,
26523
+ onClose: () => {}
26524
+ });
26525
+ // 手动关闭
26526
+ if (duration > 0) {
26527
+ let timer = setTimeout(() => {
26528
+ if (m) {
26529
+ m.close();
26530
+ }
26531
+ clearTimeout(timer);
26532
+ }, duration);
26533
+ }
26534
+ return m;
26535
+ };
26536
+ // 可直接通过$message[type]的形式调用
26537
+ types.forEach(type => {
26538
+ nbMessage[type] = (Message, obj) => {
26539
+ if (typeof obj === 'string') {
26540
+ obj = {
26541
+ message: obj
26542
+ };
26543
+ }
26544
+ obj.type = type;
26545
+ return nbMessage(Message, obj);
26546
+ };
26547
+ });
26548
+
26549
+ /**
26550
+ * @param {Object} Notification ElementUI 的 Notification 组件
26551
+ * @param {Object} obj 配置对象
26552
+ * @param {string} obj.type 图标类型, 可选值: success warning error
26553
+ * @param {string} obj.title 标题,支持换行显示,用<br>隔开
26554
+ * @param {string} obj.customClass 自定义样式
26555
+ */
26556
+ const nbNotify = (Notification, obj) => {
26557
+ return Notification({
26558
+ duration: obj.duration === undefined ? defaultDuration : obj.duration,
26559
+ center: true,
26560
+ dangerouslyUseHTMLString: true,
26561
+ showClose: false,
26562
+ customClass: `nb-notify nb-notify--${obj.type} ${obj.customClass ? obj.customClass : ''}`,
26563
+ position: 'top-left',
26564
+ message: obj.message,
26565
+ type: obj.type,
26566
+ offset: 284,
26567
+ onClose: () => {
26568
+ if (obj.onClose) {
26569
+ obj.onClose();
26570
+ }
26571
+ }
26572
+ });
26573
+ };
26574
+ types.forEach(type => {
26575
+ nbNotify[type] = (Notification, obj) => {
26576
+ if (typeof obj === 'string') {
26577
+ obj = {
26578
+ message: obj
26579
+ };
26580
+ }
26581
+ if (typeof obj === 'object' && obj.title) {
26582
+ obj.message = obj.title;
26583
+ }
26584
+ obj.type = type;
26585
+ return nbNotify(Notification, obj);
26586
+ };
26587
+ });
26588
+
26313
26589
  ;// ./packages/index.js
26314
26590
 
26315
26591
 
@@ -26317,7 +26593,7 @@ var NBTag = __webpack_require__(3588);
26317
26593
  /*
26318
26594
  * @Author: chenghuan.dong
26319
26595
  * @Date: 2024-11-11 13:46:54
26320
- * @LastEditTime: 2025-02-06 10:17:00
26596
+ * @LastEditTime: 2025-03-04 19:22:34
26321
26597
  * @LastEditors: chenghuan.dong
26322
26598
  * @Description: 主index.js导出全部组件
26323
26599
  * @FilePath: \nubomed-ui\packages\index.js
@@ -26337,6 +26613,8 @@ const cabinetHelp = {
26337
26613
 
26338
26614
 
26339
26615
 
26616
+
26617
+
26340
26618
  // 获取所有组件
26341
26619
  const components = [];
26342
26620
  const req = __webpack_require__(3798);
package/nubomed-ui.umd.js CHANGED
@@ -282,6 +282,27 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".el-pagination--left[data-v-0ac60d85]{
282
282
  /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
283
283
 
284
284
 
285
+ /***/ }),
286
+
287
+ /***/ 5659:
288
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
289
+
290
+ "use strict";
291
+ __webpack_require__.r(__webpack_exports__);
292
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1601);
293
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
294
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6314);
295
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
296
+ // Imports
297
+
298
+
299
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
300
+ // Module
301
+ ___CSS_LOADER_EXPORT___.push([module.id, "b,strong{font-family:OPPOSans-B,OPPOSans B,OPPOSans;font-weight:400}i{font-style:normal}", ""]);
302
+ // Exports
303
+ /* harmony default export */ __webpack_exports__["default"] = (___CSS_LOADER_EXPORT___);
304
+
305
+
285
306
  /***/ }),
286
307
 
287
308
  /***/ 6314:
@@ -21775,6 +21796,22 @@ var update = add("132041ca", content, true, {"sourceMap":false,"shadowMode":fals
21775
21796
 
21776
21797
  /***/ }),
21777
21798
 
21799
+ /***/ 5975:
21800
+ /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
21801
+
21802
+ // style-loader: Adds some css to the DOM by adding a <style> tag
21803
+
21804
+ // load the styles
21805
+ var content = __webpack_require__(5659);
21806
+ if(content.__esModule) content = content.default;
21807
+ if(typeof content === 'string') content = [[module.id, content, '']];
21808
+ if(content.locals) module.exports = content.locals;
21809
+ // add the styles to the DOM
21810
+ var add = (__webpack_require__(9548)/* ["default"] */ .A)
21811
+ var update = add("d3234ac6", content, true, {"sourceMap":false,"shadowMode":false});
21812
+
21813
+ /***/ }),
21814
+
21778
21815
  /***/ 9548:
21779
21816
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
21780
21817
 
@@ -26273,6 +26310,10 @@ __webpack_require__.d(__webpack_exports__, {
26273
26310
  NBTag: function() { return /* reexport */ NBTag["default"]; },
26274
26311
  cabinetHelp: function() { return /* reexport */ cabinetHelp; },
26275
26312
  "default": function() { return /* binding */ entry_lib; },
26313
+ nbAlert: function() { return /* reexport */ nbAlert; },
26314
+ nbConfirm: function() { return /* reexport */ nbConfirm; },
26315
+ nbMessage: function() { return /* reexport */ nbMessage; },
26316
+ nbNotify: function() { return /* reexport */ nbNotify; },
26276
26317
  setDateFormat: function() { return /* reexport */ date_util/* setDateFormat */.U; }
26277
26318
  });
26278
26319
 
@@ -26300,7 +26341,7 @@ var esnext_iterator_constructor = __webpack_require__(8992);
26300
26341
  // EXTERNAL MODULE: ./node_modules/core-js/modules/esnext.iterator.for-each.js
26301
26342
  var esnext_iterator_for_each = __webpack_require__(3949);
26302
26343
  ;// ./package.json
26303
- var package_namespaceObject = {"rE":"2.0.175"};
26344
+ var package_namespaceObject = {"rE":"2.0.176"};
26304
26345
  ;// ./packages/utils/convert.js
26305
26346
  /**
26306
26347
  * 将大驼峰(camelCase)字符串转换为小写且带有空格分隔的形式(kebab-case)
@@ -26320,6 +26361,241 @@ var date_util = __webpack_require__(2127);
26320
26361
  var NBLoading = __webpack_require__(9190);
26321
26362
  // EXTERNAL MODULE: ./packages/components/NBTag/index.js + 4 modules
26322
26363
  var NBTag = __webpack_require__(983);
26364
+ // EXTERNAL MODULE: ./packages/styles/reset.scss
26365
+ var styles_reset = __webpack_require__(5975);
26366
+ ;// ./packages/utils/feadback/el-message.js
26367
+ /**
26368
+ * MessageBox.confirm 确认弹框
26369
+ * @param {Object} MessageBox ElementUI 的 MessageBox 组件
26370
+ * @param {Object} obj 配置对象
26371
+ * @param {String} obj.type 图标类型,info-不显示图标 / success-成功 / warning-警告 / abnormal-异常 / error-失败
26372
+ * @param {String} obj.title 标题,支持换行显示,用<br>隔开
26373
+ * @param {String} obj.message 消息正文内容
26374
+ * @param {String} obj.messageType 消息正文内容类型:info-提示,灰色字体 / success-成功,绿色字体 / warning-警告,黄色字体 / danger-失败,红色字体
26375
+ * @param {String} obj.cancelButtonText 取消按钮的文本内容
26376
+ * @param {String} obj.cancelButtonType 取消按钮的类型,按钮为朴素按钮:default-默认按钮,danger-异常按钮,primary-主要按钮
26377
+ * @param {String} obj.confirmButtonText 确定按钮的文本内容
26378
+ * @param {String} obj.confirmButtonType 确定按钮的类型:default-默认按钮,danger-异常按钮,primary-主要按钮
26379
+ * @param {String} obj.size 尺寸:small-小尺寸720*520,默认尺寸 / medium-中尺寸1000*640
26380
+ * @returns MessageBox.confirm
26381
+ */
26382
+ const nbConfirm = (MessageBox, obj) => {
26383
+ if (typeof obj === 'string') {
26384
+ obj = {
26385
+ title: obj
26386
+ };
26387
+ }
26388
+ let cancelButtonClass = 'is-plain';
26389
+ obj.cancelButtonType = obj.cancelButtonType || 'default';
26390
+ if ((obj.cancelButtonType || '').includes('danger')) {
26391
+ cancelButtonClass += ' el-button--danger';
26392
+ }
26393
+ let confirmButtonClass = '';
26394
+ if (obj.confirmButtonType) {
26395
+ confirmButtonClass += ` el-button--${obj.confirmButtonType}`;
26396
+ }
26397
+
26398
+ // 如果未指定size,但是要显示图标+标题+正文,则size为medium
26399
+ if (!obj.size && obj.type && obj.title && obj.message) {
26400
+ obj.size = 'medium';
26401
+ }
26402
+ let customClass = ` nb-confirm--${obj.size || 'small'}`;
26403
+ // 未指定type(即不显示图标)
26404
+ if (!obj.type) {
26405
+ customClass += ' nb-confirm--no-icon';
26406
+ }
26407
+ return MessageBox.confirm(getHtml(obj), '', {
26408
+ dangerouslyUseHTMLString: true,
26409
+ showClose: false,
26410
+ showCancelButton: true,
26411
+ cancelButtonText: obj.cancelButtonText,
26412
+ cancelButtonClass: cancelButtonClass,
26413
+ showConfirmButton: true,
26414
+ confirmButtonText: obj.confirmButtonText,
26415
+ confirmButtonClass: confirmButtonClass,
26416
+ closeOnClickModal: false,
26417
+ closeOnPressEscape: false,
26418
+ center: true,
26419
+ customClass: `nb-confirm ${customClass} ` + (obj.customClass || '')
26420
+ });
26421
+ };
26422
+
26423
+ /**
26424
+ * MessageBox.alert 确定弹框
26425
+ * @param {Object} MessageBox ElementUI 的 MessageBox 组件
26426
+ * @param {Object} obj 配置对象
26427
+ * @param {String} obj.type 图标类型,warning-红色警告
26428
+ * @param {String} obj.title 标题,支持HTML,换行显示,用<br>隔开
26429
+ * @param {String} obj.message 消息正文内容
26430
+ * @param {String} obj.messageType 消息正文内容类型:warning-黄色字体,success-绿色字体,danger-红色字体,默认灰色字体
26431
+ * @param {String} obj.buttonText 确定按钮的文本内容
26432
+ * @param {String} obj.customClass 自定义类名
26433
+ * @param {String} obj.buttonType 按钮的类型:danger-异常按钮
26434
+ * @param {Boolean} obj.buttonPlain 是否朴素按钮,默认true
26435
+ * @param {String} obj.size 尺寸:small-小尺寸720*520,默认尺寸 / medium-中尺寸1000*640
26436
+ * @returns MessageBox.alert
26437
+ */
26438
+ const nbAlert = (MessageBox, obj) => {
26439
+ if (typeof obj === 'string') {
26440
+ obj = {
26441
+ title: obj
26442
+ };
26443
+ }
26444
+ let confirmButtonClass = '';
26445
+ if (obj.buttonType) {
26446
+ confirmButtonClass += ` el-button--${obj.buttonType}`;
26447
+ }
26448
+ if (typeof obj.buttonPlain !== 'boolean') {
26449
+ obj.buttonPlain = true;
26450
+ }
26451
+ if (obj.buttonPlain) {
26452
+ confirmButtonClass += ' is-plain';
26453
+ }
26454
+ // 如果未指定size,但是要显示图标+标题+正文,则size为medium
26455
+ if (!obj.size && obj.type && obj.title && obj.message) {
26456
+ obj.size = 'medium';
26457
+ }
26458
+ let customClass = ` nb-alert--${obj.size || 'small'}`;
26459
+ // 未指定type(即不显示图标)
26460
+ if (!obj.type) {
26461
+ customClass += ' nb-alert--no-icon';
26462
+ }
26463
+ return MessageBox.alert(getHtml(obj), '', {
26464
+ dangerouslyUseHTMLString: true,
26465
+ showClose: false,
26466
+ confirmButtonText: obj.confirmButtonText || obj.buttonText,
26467
+ confirmButtonClass: confirmButtonClass,
26468
+ closeOnClickModal: false,
26469
+ closeOnPressEscape: false,
26470
+ center: true,
26471
+ customClass: `nb-alert ${customClass} ` + (obj.customClass || '')
26472
+ });
26473
+ };
26474
+
26475
+ /**
26476
+ * 弹框显示的内容
26477
+ * @param {String} obj.type 图标类型,warning-红色警告
26478
+ * @param {String} obj.title 标题,支持换行显示,用<br>隔开,最多支持换2行
26479
+ * @param {String} obj.message 消息正文内容
26480
+ * @param {String} obj.messageType 消息正文内容类型:warning-绿色字体,其它灰色字体,默认灰色字体
26481
+ * @param {String} obj.cancelButtonText 取消按钮的文本内容
26482
+ * @param {String} obj.confirmButtonText 确定按钮的文本内容
26483
+ * @returns 拼接的HTML字符串
26484
+ */
26485
+ function getHtml(obj) {
26486
+ let html = '';
26487
+ // 图标
26488
+ switch (obj.type) {
26489
+ case 'success':
26490
+ html += `<img class="message__icon" src="${__webpack_require__(6559)}" />`;
26491
+ break;
26492
+ case 'warning':
26493
+ html += `<img class="message__icon" src="${__webpack_require__(629)}" />`;
26494
+ break;
26495
+ case 'abnormal':
26496
+ html += `<img class="message__icon" src="${__webpack_require__(3906)}" />`;
26497
+ break;
26498
+ case 'error':
26499
+ html += `<img class="message__icon" src="${__webpack_require__(8508)}" />`;
26500
+ break;
26501
+ default:
26502
+ break;
26503
+ }
26504
+ // 标题
26505
+ if (obj.title) {
26506
+ html += `<div class="message__title">${obj.title}</div>`;
26507
+ }
26508
+ // 正文
26509
+ if (obj.message) {
26510
+ html += `<div class="message__message message__message--${obj.messageType || 'info'}">${obj.message}</div>`;
26511
+ }
26512
+ return html;
26513
+ }
26514
+ const types = ['success', 'warning', 'error', 'abnormal'];
26515
+ const defaultDuration = 2000;
26516
+
26517
+ /**
26518
+ * @param {Object} Message ElementUI 的 Message 组件
26519
+ * @param {Object} obj 配置对象
26520
+ * @param {string} obj.type 图标类型, 可选值: success warning error
26521
+ * @param {string} obj.title 标题,支持换行显示,用<br>隔开
26522
+ */
26523
+ const nbMessage = (Message, obj) => {
26524
+ const duration = obj.duration === undefined ? defaultDuration : obj.duration;
26525
+ const m = Message({
26526
+ duration: duration,
26527
+ center: true,
26528
+ dangerouslyUseHTMLString: true,
26529
+ message: obj.message,
26530
+ type: obj.type,
26531
+ offset: 220,
26532
+ customClass: `nb-message nb-message--${obj.type} ${obj.customClass ? obj.customClass : ''}`,
26533
+ onClose: () => {}
26534
+ });
26535
+ // 手动关闭
26536
+ if (duration > 0) {
26537
+ let timer = setTimeout(() => {
26538
+ if (m) {
26539
+ m.close();
26540
+ }
26541
+ clearTimeout(timer);
26542
+ }, duration);
26543
+ }
26544
+ return m;
26545
+ };
26546
+ // 可直接通过$message[type]的形式调用
26547
+ types.forEach(type => {
26548
+ nbMessage[type] = (Message, obj) => {
26549
+ if (typeof obj === 'string') {
26550
+ obj = {
26551
+ message: obj
26552
+ };
26553
+ }
26554
+ obj.type = type;
26555
+ return nbMessage(Message, obj);
26556
+ };
26557
+ });
26558
+
26559
+ /**
26560
+ * @param {Object} Notification ElementUI 的 Notification 组件
26561
+ * @param {Object} obj 配置对象
26562
+ * @param {string} obj.type 图标类型, 可选值: success warning error
26563
+ * @param {string} obj.title 标题,支持换行显示,用<br>隔开
26564
+ * @param {string} obj.customClass 自定义样式
26565
+ */
26566
+ const nbNotify = (Notification, obj) => {
26567
+ return Notification({
26568
+ duration: obj.duration === undefined ? defaultDuration : obj.duration,
26569
+ center: true,
26570
+ dangerouslyUseHTMLString: true,
26571
+ showClose: false,
26572
+ customClass: `nb-notify nb-notify--${obj.type} ${obj.customClass ? obj.customClass : ''}`,
26573
+ position: 'top-left',
26574
+ message: obj.message,
26575
+ type: obj.type,
26576
+ offset: 284,
26577
+ onClose: () => {
26578
+ if (obj.onClose) {
26579
+ obj.onClose();
26580
+ }
26581
+ }
26582
+ });
26583
+ };
26584
+ types.forEach(type => {
26585
+ nbNotify[type] = (Notification, obj) => {
26586
+ if (typeof obj === 'string') {
26587
+ obj = {
26588
+ message: obj
26589
+ };
26590
+ }
26591
+ if (typeof obj === 'object' && obj.title) {
26592
+ obj.message = obj.title;
26593
+ }
26594
+ obj.type = type;
26595
+ return nbNotify(Notification, obj);
26596
+ };
26597
+ });
26598
+
26323
26599
  ;// ./packages/index.js
26324
26600
 
26325
26601
 
@@ -26327,7 +26603,7 @@ var NBTag = __webpack_require__(983);
26327
26603
  /*
26328
26604
  * @Author: chenghuan.dong
26329
26605
  * @Date: 2024-11-11 13:46:54
26330
- * @LastEditTime: 2025-02-06 10:17:00
26606
+ * @LastEditTime: 2025-03-04 19:22:34
26331
26607
  * @LastEditors: chenghuan.dong
26332
26608
  * @Description: 主index.js导出全部组件
26333
26609
  * @FilePath: \nubomed-ui\packages\index.js
@@ -26347,6 +26623,8 @@ const cabinetHelp = {
26347
26623
 
26348
26624
 
26349
26625
 
26626
+
26627
+
26350
26628
  // 获取所有组件
26351
26629
  const components = [];
26352
26630
  const req = __webpack_require__(3798);