// The intermediate 4-digit phone number to *

function (val) {// The intermediate 4-digit phone number to *
    return val ? (val.substring(0, 3) + '****' + val.substring(7)) : "匿名";
  },

Guess you like

Origin www.cnblogs.com/xiaoxiaoxun/p/12118543.html