// 匹配origin的正则 export const originReg = /https?:\/\/.*?\//; // 金额 export const money = /^([1-9]+|0)(\.\d[1-9]?)?$/; //手机号 export const phone = /^1[13456789][0-9]{9}$/; //发票税率 export const InvoiceTaxRate = /^([1-9][0-9]{0,3}|0)(\.\d[1-9]?)?$/; //座机 export const landline = /^(\+?0?86\-?)?1[345789]\d{9}$/; //汉字 export const chinase = /[\u4e00-\u9fa5]/;