@egova/egova-api 1.0.224 → 1.0.227
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.
|
@@ -17,8 +17,12 @@ export default class InterfaceSettings extends Component {
|
|
|
17
17
|
errorLine: any;
|
|
18
18
|
originId: string;
|
|
19
19
|
scriptView: boolean;
|
|
20
|
+
apiForm: any;
|
|
21
|
+
showImportModal: boolean;
|
|
22
|
+
importObj: any;
|
|
20
23
|
typeList: Array<any>;
|
|
21
24
|
requertSettingTypeList: Array<any>;
|
|
25
|
+
rules: any;
|
|
22
26
|
currentRequestSettingType: any;
|
|
23
27
|
mounted(): void;
|
|
24
28
|
onClickRequertSettingTpye(item: any): void;
|
|
@@ -26,8 +30,18 @@ export default class InterfaceSettings extends Component {
|
|
|
26
30
|
onRun(): Promise<void>;
|
|
27
31
|
onSave(): Promise<void>;
|
|
28
32
|
interfaceModelChange(): void;
|
|
33
|
+
showImportModalChange(value: boolean): void;
|
|
29
34
|
onImport(file: any): Promise<boolean>;
|
|
35
|
+
/**
|
|
36
|
+
* 选择导入文件且名称校验弹窗通过之后的保存事件
|
|
37
|
+
* @param obj 导入文件解析之后的数据
|
|
38
|
+
* @returns
|
|
39
|
+
*/
|
|
40
|
+
saveImportData(obj: any): Promise<void>;
|
|
30
41
|
onExport(): void;
|
|
42
|
+
validateEnvName(rule: any, value: any, callback: any): Promise<void>;
|
|
43
|
+
validateAuthName(rule: any, value: any, callback: any): Promise<void>;
|
|
44
|
+
cancleModify(): void;
|
|
31
45
|
onVersion(): void;
|
|
32
46
|
onCurrentId(id: string): void;
|
|
33
47
|
getEnvironmentParamList(): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@egova/egova-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.227",
|
|
4
4
|
"description": "api",
|
|
5
5
|
"author": "egova",
|
|
6
6
|
"publishConfig": {
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"last 2 versions",
|
|
81
81
|
"not ie <= 8"
|
|
82
82
|
],
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "cfb53c0fc11dce371c29338ff812bcbc09aa5641"
|
|
84
84
|
}
|