UNPKG

xy-tool-ui

Version:

XiaoYi tool compenent library

20 lines (16 loc) 812 B
export default data = { /** * 是一个数字 、2位小数 * @date 2022/08/17 */ isNumber_decimal2: /^-?\d+(\.\d{1,2})*$/, /** * 手机号验证 * 电信所有号码段:133、153、173、177、180、181、189、190、191、193、199 * 联通所有号码段:130、131、132、145、155、156、166、167、171、175、176、185、186、196 * 移动所有号码段:134(0-8)、135、136、137、138、139、1440、147、148、150、151、152、157、158、159、172、178、182、183、184、187、188、195、197、198 * 其他号段:14号段部分为上网卡专属号段:中国联通145,中国移动147,中国电信149 * @date 2022/08/17 */ isPhone_long: /^(13[0-9]|14[01456879]|15[0-35-9]|16[2567]|17[0-8]|18[0-9]|19[0-35-9])\d{8}$/, }