mobile.wxs 175 B

1234567891011
  1. var hidden = function (mobile) {
  2. if(mobile){
  3. return mobile.substring(0, 3) + "********";
  4. }else{
  5. return "***********"
  6. }
  7. }
  8. module.exports = {
  9. hidden: hidden,
  10. };