import React, { Component } from 'react'; import { Cell, Tag, Avatar } from 'tdesign-mobile-react'; export default function render() { const { t } = this; const { nickname, avatar, name, mobile, userState, idState, stateColor, idStateColor, mobileCount, } = this.state; const getMobile = () => { if (mobileCount > 1) { return `${mobileCount}条手机号`; } else if (mobileCount === 1) { return mobile; } else { return '未设置'; } } return (