@ledvance/group-ui-biz-bundle 1.0.101 → 1.0.103
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.
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ import {Utils, Dialog} from "tuya-panel-kit";
|
|
|
14
14
|
import ItemCard from "./ItemCard";
|
|
15
15
|
import InfoText from "@ledvance/base/src/components/InfoText";
|
|
16
16
|
import ThemeType from '@ledvance/base/src/config/themeType'
|
|
17
|
-
import { showDialog
|
|
17
|
+
import {isConflictTask, showDialog} from "@ledvance/base/src/utils/common";
|
|
18
18
|
|
|
19
19
|
const {convertX: cx, topBarHeight} = Utils.RatioUtils;
|
|
20
20
|
const { withTheme } = Utils.ThemeUtils
|
|
@@ -150,9 +150,9 @@ const FixedTimeForPlugPage = (props: { theme?: ThemeType}) => {
|
|
|
150
150
|
subTitle: I18n.getLang('cancel_dialog_delete_item_fixedtimecycle_description'),
|
|
151
151
|
onConfirm: async (_, {close}) => {
|
|
152
152
|
close()
|
|
153
|
-
state.loading = true
|
|
153
|
+
state.loading = true
|
|
154
154
|
await onPost('del', item)
|
|
155
|
-
state.loading = false
|
|
155
|
+
state.loading = false
|
|
156
156
|
}
|
|
157
157
|
})
|
|
158
158
|
}}
|