@newview/base-vue 1.1.7 → 1.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newview/base-vue",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "author": "newview",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/readme.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 1.1.8
2
+ 1、样式调整
3
+ 2、增加免登录中转页
4
+
1
5
  ### 1.1.6
2
6
  1、样式调整
3
7
 
@@ -1,5 +1,6 @@
1
1
  import { MessageInstance } from "./MessageInstance";
2
2
  import { ModalInstance } from "./ModalInstance";
3
+ import { OtherCommon } from "./OtherCommon";
3
4
  import { Utilities } from '@newview/tools';
4
5
  import { StorageInfo } from "@newview/infrastructure";
5
6
  import { Emitter, EventType } from "mitt";
@@ -25,6 +26,11 @@ export declare class BaseInstance {
25
26
  */
26
27
  storageInfo: StorageInfo;
27
28
 
29
+ /**
30
+ * 其他公共方法(业务相关)
31
+ */
32
+ otherCommon:OtherCommon
33
+
28
34
  /**
29
35
  * 事件总线
30
36
  */
@@ -0,0 +1,4 @@
1
+ import type { DefineComponent } from 'vue';
2
+
3
+ export declare const FreeLoginCenter: DefineComponent<{
4
+ }>
@@ -0,0 +1,7 @@
1
+ export declare class OtherCommon {
2
+ /**
3
+ * 获取各项目进入BIM中心传递参数
4
+ * @param prop
5
+ */
6
+ getEnterBIMParam(BIMViewUrl:string): any;
7
+ }
package/types/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export * from "./RootInstance"
13
13
  export * from "./LinkMain"
14
14
  export * from "./Root"
15
15
  export * from "./LoaderManage"
16
+ export * from "./FreeLoginCenter"
16
17
 
17
18
  export function initWeb(app: App, platformNo: string, menus: any[], router: any);
18
19
  export const message: MessageInstance = new MessageInstance();