告警修改

Signed-off-by: y1135885 <yuqigang1@huawei.com>
This commit is contained in:
y1135885 2023-05-20 09:30:17 +08:00
parent ff889cbe46
commit e66d10c038
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ export class FloatWindowFun {
static initAllFun() {
globalThis.CreateFloatingWindow = (() => {
//5.5SP2 2106 改成 8
wm.create(globalThis.abilityContext, 'sp_floatingWindow', window.WindowType_TYPE_FLOAT).then((floatWin) => {
wm.create(globalThis.abilityContext, 'sp_floatingWindow', wm.WindowType_TYPE_FLOAT).then((floatWin) => {
floatWin.moveTo(this.floatingWindowOffsetX, this.floatingWindowOffsetY).then(() => {
floatWin.resetSize(this.atWidth*globalThis.coefficient, this.atWidth*globalThis.coefficient).then(() => {
floatWin.getProperties().then((property) => {
@ -71,7 +71,7 @@ export class FloatWindowFun {
})
globalThis.CreateTitleWindow = (() => {
wm.create(globalThis.abilityContext, 'sp_TitleWindow', window.WindowType_TYPE_FLOAT).then((floatWin) => {
wm.create(globalThis.abilityContext, 'sp_TitleWindow', wm.WindowType_TYPE_FLOAT).then((floatWin) => {
floatWin.moveTo(this.titleWindowOffsetX, this.titleWindowOffsetY).then(() => {
floatWin.resetSize(350*globalThis.coefficient, 480*globalThis.coefficient).then(() => {
floatWin.getProperties().then((property) => {

View File

@ -37,7 +37,7 @@ export function initFloatWindow() {
export function createFloatWindow(floatName:string) {
//5.5SP2 2106 改成 8
wm.create(globalThis.abilityContext, floatName, window.WindowType_TYPE_FLOAT).then((floatWin) => {
wm.create(globalThis.abilityContext, floatName, wm.WindowType_TYPE_FLOAT).then((floatWin) => {
floatWin.moveTo(lineChartWindowOffsetX, lineChartWindowOffsetY).then(() => {
floatWin.resetSize(360*globalThis.coefficient,270*globalThis.coefficient).then(() => {
floatWin.getProperties().then((property) => {