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>