| 1234567891011121314151617181920212223242526 |
-
- //页面加载数据API
- const BASIC_COMMON_API = "mdm-server/wxapi/basic/common/"
-
- /**
- * @desc : 最大的数量
- * @author : 于继渤
- * @date : 2022/8/19 10:16
- */
- const Mess_Max_Quantity = '超过最大值或最小值,最大值为9999999999.999999'
- /**
- * @desc : 手机号正则表达式 目前只有位数校验(11位)
- * @author : 于继渤
- * @date : 2022/8/19 10:16
- */
- const Mobile_Phone_Number_Regular_Expression = /^[0-9][0-9][0-9]{9}$/;
-
-
- /**
- * 导出常量
- */
- module.exports = {
- BASIC_COMMON_API: BASIC_COMMON_API,
- Mobile_Phone_Number_Regular_Expression: Mobile_Phone_Number_Regular_Expression,
- };
|