6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
export const formStatusType: { [key: string]: string } = {
|
|
create: '创建',
|
|
update: '编辑',
|
|
test: '测试',
|
|
};
|