Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing Details

uat_us
caiyiling 2025-01-06 15:28:02 +08:00
commit a239bccc90
4 changed files with 10 additions and 8 deletions

View File

@ -179,11 +179,11 @@ export function verifyMFACode(params) {
} }
// 发送MFA邮件 // 发送MFA邮件
export function sendMFAEmail(params) { export function sendMFAEmail(data) {
return request({ return request({
url: `/User/sendMFAEmail`, url: `/User/sendMFAEmail`,
method: 'post', method: 'post',
params data
}) })
} }
// 获取公钥 // 获取公钥

View File

@ -21,7 +21,7 @@
label-width="100px" label-width="100px"
> >
<!-- 邮箱 --> <!-- 邮箱 -->
<p class="tip"> <p class="tip_mfa">
<i class="el-icon-warning" style="color: #409eff"></i> <i class="el-icon-warning" style="color: #409eff"></i>
<span>{{ tip }}</span> <span>{{ tip }}</span>
</p> </p>
@ -154,7 +154,7 @@ export default {
this.timer = null; this.timer = null;
} }
let data = { let data = {
// IdentityUserId: this.form.IdentityUserId, IdentityUserId: this.form.IdentityUserId,
}; };
if (this.status === "lock") { if (this.status === "lock") {
data.MfaType = 1; data.MfaType = 1;
@ -189,7 +189,7 @@ export default {
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.tip { .tip_mfa {
width: 86%; width: 86%;
margin: auto; margin: auto;
margin-bottom: 20px; margin-bottom: 20px;

View File

@ -407,7 +407,7 @@
<el-tooltip <el-tooltip
class="item" class="item"
effect="dark" effect="dark"
:content="$t('trials:staff:tip:userDisabled')" :content="$t('trials:staff:tip:userTypeDisabled')"
placement="top" placement="top"
style="margin-right: 3px" style="margin-right: 3px"
v-if="scope.row.IsUserRoleDisabled" v-if="scope.row.IsUserRoleDisabled"

View File

@ -522,8 +522,10 @@ export default {
}) })
}, },
refreshSysData(){ refreshSysData(){
this.tabList.SysWaitSignDocCount = this.tabList.SysWaitSignDocCount - 1 // this.tabList.SysWaitSignDocCount = this.tabList.SysWaitSignDocCount - 1
store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount) // this.tabList.SysSignedDocCount = this.tabList.SysWaitSignDocCount + 1
// store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount)
this.getUserTobeDoneRecord()
}, },
getUserTobeDoneRecord() { getUserTobeDoneRecord() {
getUserTobeDoneRecord().then(async res => { getUserTobeDoneRecord().then(async res => {