common-interface.ts 192 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // 通用的interface // 公用api返回 export interface ICommonReturn { code: number msg: string data:string } export interface ICommonSelectOptions { value:string label:string }