fix: 消息提示0时常驻
This commit is contained in:
@@ -170,7 +170,7 @@ function listEditOk() {
|
||||
}
|
||||
|
||||
// 发送
|
||||
const hide = message.loading({ content: t('common.loading') });
|
||||
const hide = message.loading(t('common.loading'), 0);
|
||||
let data = {
|
||||
[from['name']]: from['value'],
|
||||
};
|
||||
@@ -292,7 +292,7 @@ function arrayEditOk() {
|
||||
}
|
||||
|
||||
// 发送
|
||||
const hide = message.loading({ content: t('common.loading') });
|
||||
const hide = message.loading(t('common.loading'), 0);
|
||||
updateParamConfigInfo(
|
||||
'array',
|
||||
{
|
||||
@@ -398,7 +398,7 @@ function arrayAddOk(from: Record<string, any>) {
|
||||
}
|
||||
|
||||
// 发送
|
||||
const hide = message.loading({ content: t('common.loading') });
|
||||
const hide = message.loading(t('common.loading'), 0);
|
||||
addParamConfigInfo(
|
||||
{
|
||||
neType: neType,
|
||||
@@ -570,7 +570,7 @@ function arrayChildEditOk() {
|
||||
}
|
||||
|
||||
// 发送
|
||||
const hide = message.loading({ content: t('common.loading') });
|
||||
const hide = message.loading(t('common.loading'), 0);
|
||||
updateParamConfigInfo(
|
||||
'array',
|
||||
{
|
||||
@@ -676,7 +676,7 @@ function arrayChildAddOk(from: Record<string, any>) {
|
||||
}
|
||||
|
||||
// 发送
|
||||
const hide = message.loading({ content: t('common.loading') });
|
||||
const hide = message.loading(t('common.loading'), 0);
|
||||
addParamConfigInfo(
|
||||
{
|
||||
neType: neType,
|
||||
|
||||
Reference in New Issue
Block a user