iv-npm 1.1.2 → 1.1.3

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": "iv-npm",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "公共通用包",
5
5
  "author": "Mr.Cong",
6
6
  "license": "ISC",
@@ -0,0 +1,14 @@
1
+ declare const BASE_URL = "https://basis.nacho.cn";
2
+ declare const API_OPTION: {
3
+ getIVMrpOrgDropdown: {
4
+ url: string;
5
+ option: any;
6
+ };
7
+ getIVMrpProdBaseDropdown: {
8
+ url: string;
9
+ option: any;
10
+ };
11
+ };
12
+ export declare const formatHTTP: (fetch: any) => Promise<any>;
13
+ export declare const formatUrl: (base: string, api: string, params: object) => string;
14
+ export { BASE_URL, API_OPTION };
@@ -0,0 +1,3 @@
1
+ import IVMrpOrgDropdown from "./component/IVMrpOrgDropdown.vue";
2
+ import IVMrpProdBaseDropdown from "./component/IVMrpProdBaseDropdown.vue";
3
+ export { IVMrpOrgDropdown, IVMrpProdBaseDropdown };
@@ -0,0 +1,10 @@
1
+ export interface FieldNames {
2
+ label: string;
3
+ value: string;
4
+ }
5
+ export interface ReplaceFields {
6
+ children: string;
7
+ label: string;
8
+ key: string;
9
+ value: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ import IVMrpModal from "./component/IVMrpModal.vue";
2
+ export { IVMrpModal };