mirror of
https://gitee.com/openharmony/developtools_profiler
synced 2024-11-23 15:00:17 +00:00
告警修改
Signed-off-by: y1135885 <yuqigang1@huawei.com>
This commit is contained in:
parent
ff889cbe46
commit
e66d10c038
@ -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) => {
|
||||
|
@ -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) => {
|
||||
|
Loading…
Reference in New Issue
Block a user