加入重置密码功能

This commit is contained in:
java110 2021-02-03 00:12:54 +08:00
parent 90356eae88
commit 5313cbf21c
2 changed files with 10 additions and 0 deletions

View File

@ -104,6 +104,11 @@
v-on:click="_deleteAppUserBindingOwnerModel(auditAppUserBindingOwner)">
解绑
</button>
<button class="btn-white btn btn-xs"
v-on:click="_resetUserPwdModel(auditAppUserBindingOwner)">
重置密码
</button>
</td>
</tr>
@ -127,4 +132,6 @@
</vc:create>
<vc:create path="property/deleteAppUserBindingOwner"></vc:create>
<vc:create path="frame/resetStaffPwd"></vc:create>
</div>

View File

@ -102,6 +102,9 @@
},
_deleteAppUserBindingOwnerModel:function(_auditAppUserBindingOwner){
vc.emit('deleteAppUserBindingOwner','openDeleteAppUserBindingOwnerModal',_auditAppUserBindingOwner);
},
_resetUserPwdModel: function (_staff) {
vc.emit('resetStaffPwd', 'openResetStaffPwd', _staff);
}