UNPKG

knk

Version:

react components based on react

18 lines (17 loc) 421 B
"use strict"; // 日期规则 exports.dateRule = /^\d{4}-\d{2}-\d{2}$/; // 电话规则 exports.telRule = /^[\S]+$/; // 邮箱规则 exports.emailRule = /\w@\w*\.\w/; // 邮政编码规则 exports.postCodeRule = /^[0-9]{6}$/; // 传真规则 exports.faxRule = /^[\S]+$/; // 手机规则 exports.moblieRule = /^1[3-9]\d{9}$/; // 字段长度判断 exports.strLength = 30; // 详细地址长度 exports.addressLength = 60;