38 lines
988 B
C++
38 lines
988 B
C++
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2024. All rights reserved.
|
|
*
|
|
* Description:
|
|
*
|
|
* Author: wuchangxin
|
|
*
|
|
* Create: 2024-6-14
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef TJD_UI_MAIN_PAGE_MAP_H
|
|
#define TJD_UI_MAIN_PAGE_MAP_H
|
|
|
|
#include "components/ui_card_page.h"
|
|
#include "components/ui_image_view.h"
|
|
#include "components/ui_view_group.h"
|
|
|
|
namespace TJD {
|
|
class TjdUiAppMainPageMap : public OHOS::UICardPage
|
|
{
|
|
public:
|
|
TjdUiAppMainPageMap();
|
|
virtual ~TjdUiAppMainPageMap();
|
|
static TjdUiAppMainPageMap *GetInstance(void);
|
|
bool InitView(void);
|
|
void PreLoad(void) override;
|
|
void UnLoad(void) override;
|
|
|
|
private:
|
|
bool viewiInitStatus{false};
|
|
OHOS::UIViewGroup *container_{nullptr};
|
|
OHOS::UIImageView *image_bg = nullptr;
|
|
OHOS::UIImageView *image_enter = nullptr;
|
|
};
|
|
} // namespace TJD
|
|
|
|
#endif // PAYMENT_DATING_PAGE_H
|