core
    正在准备搜索索引...

    接口 YmxUi

    界面

    interface YmxUi {
        hideLoading(): Promise<void>;
        hideToast(): Promise<void>;
        showActionSheet(data: ShowActionSheetData): Promise<ShowActionSheetResult>;
        showLoading(data: ShowLoadingData): Promise<void>;
        showModal(data: ShowModalData): Promise<ShowModalResult>;
        showToast(data: ShowToastData): Promise<void>;
    }

    层级 (查看层级一览)

    索引

    方法

    • 隐藏 loading 提示

      返回 Promise<void>

      ymx.hideLoading();
      
    • 隐藏吐司提示

      返回 Promise<void>

      ymx.hideToast();