调整 eps 方法名

This commit is contained in:
神仙都没用 2023-11-10 18:15:44 +08:00
parent 7ce127a8b8
commit 0a58a05d86

View File

@ -179,8 +179,8 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
item.api.forEach((a) => { item.api.forEach((a) => {
// 方法名 // 方法名
const n = toCamel(a.name || last(a.path.split("/")) || "").replace( const n = (a.name || last(a.path.split("/")) || "").replace(
/[:\/-]/g, /[:\/]/g,
"" ""
); );
@ -203,7 +203,7 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
const a = `${p.name}${p.required ? "" : "?"}`; const a = `${p.name}${p.required ? "" : "?"}`;
const b = `${p.schema.type || "string"}`; const b = `${p.schema.type || "string"}`;
q.push(`${a}: ${b},`); q.push(`"${a}": ${b},`);
}); });
if (isEmpty(q)) { if (isEmpty(q)) {
@ -250,7 +250,7 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
t.push(" */\n"); t.push(" */\n");
t.push( t.push(
`${n}(data${q.length == 1 ? "?" : ""}: ${q.join( `"${n}"(data${q.length == 1 ? "?" : ""}: ${q.join(
"" ""
)}): Promise<${res}>;` )}): Promise<${res}>;`
); );
@ -266,7 +266,7 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
t.push(" */\n"); t.push(" */\n");
t.push( t.push(
`permission: { ${permission `permission: { ${permission
.map((e) => `${e}: string;`) .map((e) => `"${e}": string;`)
.join("\n")} };` .join("\n")} };`
); );
@ -277,7 +277,7 @@ async function createDescribe({ list, service }: { list: Eps.Entity[]; service:
t.push(" */\n"); t.push(" */\n");
t.push( t.push(
`_permission: { ${permission `_permission: { ${permission
.map((e) => `${e}: boolean;`) .map((e) => `"${e}": boolean;`)
.join("\n")} };` .join("\n")} };`
); );
@ -382,7 +382,7 @@ function createService() {
n = n.split("/:")[0]; n = n.split("/:")[0];
} }
d[k][toCamel(n)] = a; d[k][n] = a;
} }
}); });