Constants.js 627 B

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