vue表格的手机号中间的隐藏

vue表格的手机号中间的隐藏

  • 在表格中的使用方法
  • 中间四位是用****代替的
  • 效果:131****2463
//代码如下,请参考:

<el-table-column prop="phone" width="110" label="联系电话">
   <template slot-scope="scope">
  	 {
  {scope.row.phone?scope.row.phone.replace(/(\d{3})(\d{4})(\d{4})/,"$1****$3"):""}}
   </template>
</el-table-column>
    原文作者:什么也不在说
    原文地址: https://blog.csdn.net/weixin_45854395/article/details/109031826
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞