整理源码结构,修改modelviewtab为view
This commit is contained in:
parent
d460a43a99
commit
324b330e6d
@ -3,7 +3,7 @@ import { OverlayManager } from '@kit.ArkUI';
|
||||
import { TitleTab } from './titletabs/TitleTab'
|
||||
import { LeftSideTab } from './leftside/LeftSideTab'
|
||||
import { RightSideTab } from './rightside/RightSideTab'
|
||||
import { ModelViewTab } from './ModelViewTab'
|
||||
import { View } from './view/View'
|
||||
import { TitleColumnSub } from './titletabs/TitleColumnSub'
|
||||
import { mdwInfo } from './displaywindowinfo/DispWinInfo'
|
||||
|
||||
@ -97,7 +97,7 @@ struct Index {
|
||||
})
|
||||
//中间操作区域
|
||||
Row() {
|
||||
ModelViewTab()
|
||||
View()
|
||||
}.layoutWeight(1)
|
||||
.align(Alignment.Center)
|
||||
//右拖拽手柄
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { GroupActionMenu } from './GroupAction'
|
||||
import { GetEventsPage } from '../subpages/MapPages'
|
||||
import { GetEventsPage } from './MapPages'
|
||||
import {
|
||||
ModelType,
|
||||
EventType,
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { DevModel, MatrixModel } from "./MatrixModel";
|
||||
import { GroupActionMenu } from "./GroupAction";
|
||||
import { GetEventsPage} from '../subpages/MapPages'
|
||||
import { GetEventsPage} from './MapPages'
|
||||
import {
|
||||
TitleInterface,
|
||||
TitleGroup,
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
import { hilog } from '@kit.PerformanceAnalysisKit';
|
||||
import { mdwInfo } from './displaywindowinfo/DispWinInfo'
|
||||
import { mdwInfo } from '../displaywindowinfo/DispWinInfo'
|
||||
import { AppStorageV2 } from '@kit.ArkUI';
|
||||
import {InitXCompNode,XCompInfos,XCompInfo,CurrentXCompIndex} from './eventhub/XCompMgr'
|
||||
import {InitXCompNode,XCompInfos,XCompInfo,CurrentXCompIndex} from '../eventhub/XCompMgr'
|
||||
|
||||
|
||||
@ComponentV2
|
||||
export struct ModelViewTab {
|
||||
export struct View {
|
||||
@Local xcInfos: XCompInfos = AppStorageV2.connect<XCompInfos>(XCompInfos, () => new XCompInfos)!;
|
||||
//顶部导航组件
|
||||
private barTabs: TabsController = new TabsController();
|
||||
Loading…
Reference in New Issue
Block a user