import React, { Component, Fragment } from 'react'; import { List } from 'antd'; const passwordStrength = { strong: , medium: 中文, weak: , }; export default class SecurityView extends Component { getData = () => { return [ { title: '账户密码', description: 当前密码强度:{passwordStrength.strong}, actions: [修改], }, { title: '密保手机', description: '已绑定手机:138****8293', actions: [修改], }, { title: '密保问题', description: '未设置密保问题,密保问题可有效保护账户安全', actions: [设置], }, { title: '备用邮箱', description: '已绑定邮箱:ant***sign.com', actions: [修改], }, { title: 'MFA 设备', description: '未绑定 MFA 设备,绑定后,可以进行二次确认', actions: [绑定], }, ]; }; render() { return ( ( )} /> ); } }