开发平台api
This commit is contained in:
96
src/views/foundation/data/zh_data/index.ts
Normal file
96
src/views/foundation/data/zh_data/index.ts
Normal file
@@ -0,0 +1,96 @@
|
||||
import {
|
||||
// HTTPS_ERROR_PARAMS_COLUMNS,
|
||||
// HTTPS_PARAMS_COLUMNS,
|
||||
HTTPS_URL_COLUMNS,
|
||||
HTTPS_PUBLIC_PARAMS_COLUMNS
|
||||
//HTTPS_RETURN_PARAMS_COLUMNS
|
||||
} from "../../constant/zh_list/index";
|
||||
|
||||
export const ZH_DATA = [
|
||||
{
|
||||
title: "请求地址",
|
||||
columns: HTTPS_URL_COLUMNS, //列表配置项
|
||||
data: [
|
||||
{
|
||||
environment: "测试环境",
|
||||
https: "https://demo.orico.com.cn"
|
||||
},
|
||||
{
|
||||
environment: "正式环境",
|
||||
https: "https://.orico.com.cn"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "公共请求参数",
|
||||
columns: HTTPS_PUBLIC_PARAMS_COLUMNS, //列表配置项
|
||||
data: [
|
||||
{
|
||||
parameterName: "111",
|
||||
parameterType: "233",
|
||||
isItMandatory: "123232",
|
||||
parameterDescription: "3232323"
|
||||
},
|
||||
{
|
||||
parameterName: "111",
|
||||
parameterType: "233",
|
||||
isItMandatory: "123232",
|
||||
parameterDescription: "3232323"
|
||||
}
|
||||
]
|
||||
}
|
||||
// {
|
||||
// title: "请求参数说明",
|
||||
// columns: HTTPS_PARAMS_COLUMNS, //列表配置项
|
||||
// data: [
|
||||
// {
|
||||
// parameterName: "测试环境",
|
||||
// parameterType: "https://demo.orico.com.cn",
|
||||
// isItMandatory: "否",
|
||||
// exampleValue: "多少",
|
||||
// parameterDescription: "demo"
|
||||
// },
|
||||
// {
|
||||
// parameterName: "测试环境",
|
||||
// parameterType: "https://demo.orico.com.cn",
|
||||
// isItMandatory: "是",
|
||||
// exampleValue: "大萨达",
|
||||
// parameterDescription: "demo1"
|
||||
// }
|
||||
// ]
|
||||
// },
|
||||
// {
|
||||
// title: "返回参数说明",
|
||||
// columns: HTTPS_RETURN_PARAMS_COLUMNS, //列表配置项
|
||||
// data: [
|
||||
// {
|
||||
// parameterInterface: "1",
|
||||
// parameterType: "2",
|
||||
// exampleValue: "3",
|
||||
// describe: "4"
|
||||
// },
|
||||
// {
|
||||
// parameterInterface: "1",
|
||||
// parameterType: "2",
|
||||
// exampleValue: "3",
|
||||
// describe: "4"
|
||||
// }
|
||||
// ]
|
||||
// },
|
||||
// {
|
||||
// title: "错误说明",
|
||||
// columns: HTTPS_ERROR_PARAMS_COLUMNS, //列表配置项
|
||||
// data: [
|
||||
// {
|
||||
// errorCode: "111",
|
||||
// errorInfo: "233",
|
||||
// TroMethods: "123232"
|
||||
// },
|
||||
// {
|
||||
// errorCode: "111",
|
||||
// errorInfo: "233",
|
||||
// TroMethods: "123232"
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
];
|
||||
Reference in New Issue
Block a user