问题
表格表头插入状态切换按钮,绑定的Flg已经改变但是该按钮没有更新。

<el-table-column prop="receiverPhone">
<template slot="header">
收件人电话
<span
class="icon-password"
:class="{'show-phone': showPhone}"
@click="showPhone=!showPhone"></span>
</template>
</el-table-column>
解决方法
在表头加key进行刷新
<el-table-column prop="receiverPhone" :key="showPhone">
至于此处没有更新dom的原因,还未确定,需要探索。