common层导入文件bug修复

Signed-off-by: wangzhigang <wangzhigang46@huawei.com>
This commit is contained in:
wangzhigang 2023-03-24 15:53:00 +08:00
parent 0a9170d6fb
commit 45abccb6c6
3 changed files with 8 additions and 10 deletions

View File

@ -14,8 +14,8 @@
*/
import Prompt from '@ohos.promptAction';
import windowAnimationManager from '@ohos.animation.windowAnimationManager';
import { CheckEmptyUtils } from '@ohos/common';
import { Log } from '@ohos/common';
import { CheckEmptyUtils } from '../../utils/CheckEmptyUtils';
import { Log } from '../../utils/Log';
import RemoteConstants from '../../constants/RemoteConstants';
const TAG = 'WindowAnimationControllerImpl';

View File

@ -13,8 +13,8 @@
* limitations under the License.
*/
import formManagerAbility from '@ohos.application.formHost';
import { FormConstants } from '@ohos/common';
import formManagerAbility from '@ohos.app.form.formHost';
import { FormConstants } from '../constants/FormConstants';
import { Log } from '../utils/Log';
import { CardItemInfo } from '../bean/CardItemInfo';
import { CommonConstants } from '../constants/CommonConstants';

View File

@ -15,12 +15,10 @@
import windowAnimationManager from '@ohos.animation.windowAnimationManager';
import curves from '@ohos.curves';
import {
Log,
Trace,
StyleConstants,
CommonConstants
} from '@ohos/common';
import { Log } from '../utils/Log';
import { Trace } from '../utils/Trace';
import { StyleConstants } from '../constants/StyleConstants';
import { CommonConstants } from '../constants/CommonConstants';
import OverlayAppIcon from './OverlayAppIcon';
import RemoteConstants from '../constants/RemoteConstants';
import { localEventManager } from '../manager/LocalEventManager';