|
|
|
@ -113,7 +113,7 @@
|
|
|
|
|
解冻 |
|
|
|
|
</a-menu-item> |
|
|
|
|
</a-menu> |
|
|
|
|
<a-button style="margin-left: 8px"> |
|
|
|
|
<a-button style="margin-left: 8px" v-has="'user:delete'"> |
|
|
|
|
批量操作 |
|
|
|
|
<a-icon type="down"/> |
|
|
|
|
</a-button> |
|
|
|
@ -189,19 +189,19 @@
|
|
|
|
|
</a-menu-item> |
|
|
|
|
|
|
|
|
|
<a-menu-item> |
|
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
|
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)" v-has="'user:delete'"> |
|
|
|
|
<a>删除</a> |
|
|
|
|
</a-popconfirm> |
|
|
|
|
</a-menu-item> |
|
|
|
|
|
|
|
|
|
<a-menu-item v-if="record.status==1"> |
|
|
|
|
<a-popconfirm title="确定冻结吗?" @confirm="() => handleFrozen(record.id,2,record.username)"> |
|
|
|
|
<a-popconfirm title="确定冻结吗?" @confirm="() => handleFrozen(record.id,2,record.username)" v-has="'user:frost'"> |
|
|
|
|
<a>冻结</a> |
|
|
|
|
</a-popconfirm> |
|
|
|
|
</a-menu-item> |
|
|
|
|
|
|
|
|
|
<a-menu-item v-if="record.status==2"> |
|
|
|
|
<a-popconfirm title="确定解冻吗?" @confirm="() => handleFrozen(record.id,1,record.username)"> |
|
|
|
|
<a-popconfirm title="确定解冻吗?" @confirm="() => handleFrozen(record.id,1,record.username)" v-has="'user:defrost'"> |
|
|
|
|
<a>解冻</a> |
|
|
|
|
</a-popconfirm> |
|
|
|
|
</a-menu-item> |
|
|
|
|