antd-management-fast-framework 2.12.29 → 2.12.30
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.
|
@@ -369,9 +369,15 @@ export class InternalFlow extends Core {
|
|
|
369
369
|
/**
|
|
370
370
|
* 检测是否有作业正在处理中。
|
|
371
371
|
* @function
|
|
372
|
+
* @param {Object} option 配置项。
|
|
373
|
+
* @param {Boolean} option.showMessage 是否显示工作中的提示,默认值为:true。
|
|
374
|
+
* @param {string} option.message 提示文字,默认值为:“数据正在处理中,请稍等一下再点哦”。
|
|
372
375
|
* @returns {boolean} 检测结果。
|
|
373
376
|
*/
|
|
374
|
-
checkWorkDoing(
|
|
377
|
+
checkWorkDoing({ showMessage, message, }: {
|
|
378
|
+
showMessage: boolean;
|
|
379
|
+
message: string;
|
|
380
|
+
}): boolean;
|
|
375
381
|
/**
|
|
376
382
|
* 数据校验。
|
|
377
383
|
* @function
|