Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
a239bccc90
|
@ -179,11 +179,11 @@ export function verifyMFACode(params) {
|
|||
}
|
||||
|
||||
// 发送MFA邮件
|
||||
export function sendMFAEmail(params) {
|
||||
export function sendMFAEmail(data) {
|
||||
return request({
|
||||
url: `/User/sendMFAEmail`,
|
||||
method: 'post',
|
||||
params
|
||||
data
|
||||
})
|
||||
}
|
||||
// 获取公钥
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
label-width="100px"
|
||||
>
|
||||
<!-- 邮箱 -->
|
||||
<p class="tip">
|
||||
<p class="tip_mfa">
|
||||
<i class="el-icon-warning" style="color: #409eff"></i>
|
||||
<span>{{ tip }}</span>
|
||||
</p>
|
||||
|
@ -154,7 +154,7 @@ export default {
|
|||
this.timer = null;
|
||||
}
|
||||
let data = {
|
||||
// IdentityUserId: this.form.IdentityUserId,
|
||||
IdentityUserId: this.form.IdentityUserId,
|
||||
};
|
||||
if (this.status === "lock") {
|
||||
data.MfaType = 1;
|
||||
|
@ -189,7 +189,7 @@ export default {
|
|||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.tip {
|
||||
.tip_mfa {
|
||||
width: 86%;
|
||||
margin: auto;
|
||||
margin-bottom: 20px;
|
||||
|
|
|
@ -407,7 +407,7 @@
|
|||
<el-tooltip
|
||||
class="item"
|
||||
effect="dark"
|
||||
:content="$t('trials:staff:tip:userDisabled')"
|
||||
:content="$t('trials:staff:tip:userTypeDisabled')"
|
||||
placement="top"
|
||||
style="margin-right: 3px"
|
||||
v-if="scope.row.IsUserRoleDisabled"
|
||||
|
|
|
@ -522,8 +522,10 @@ export default {
|
|||
})
|
||||
},
|
||||
refreshSysData(){
|
||||
this.tabList.SysWaitSignDocCount = this.tabList.SysWaitSignDocCount - 1
|
||||
store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount)
|
||||
// this.tabList.SysWaitSignDocCount = this.tabList.SysWaitSignDocCount - 1
|
||||
// this.tabList.SysSignedDocCount = this.tabList.SysWaitSignDocCount + 1
|
||||
// store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount)
|
||||
this.getUserTobeDoneRecord()
|
||||
},
|
||||
getUserTobeDoneRecord() {
|
||||
getUserTobeDoneRecord().then(async res => {
|
||||
|
|
Loading…
Reference in New Issue