import { Method, Status } from '../types' export const Method_List = [ { value: Method.GET, label: Method.GET }, { value: Method.POST, label: Method.POST }, { value: Method.DELETE, label: Method.DELETE }, { value: Method.PUT, label: Method.PUT } ] export const Status_List = [ { value: Status.NORMAL, label: '正常' }, { value: Status.ABNORMAL, label: '异常' }, { value: Status.DELETED, label: '已删除' }, { value: Status.DEPRECATING, label: '即将废弃' }, { value: Status.DEPRECATED, label: '已废弃' } ]