From 6bf92751fe8dfa0624285268968a1fd7a8a7e7e5 Mon Sep 17 00:00:00 2001 From: Mr Ke <kelq@hugeinfo.com.cn> Date: Tue, 20 Oct 2020 14:39:49 +0800 Subject: [PATCH] 修改默认人员头像 --- src/components/oa/basicConfig/UserManage.jsx | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/components/oa/basicConfig/UserManage.jsx b/src/components/oa/basicConfig/UserManage.jsx index f26d5f8..7ed59ee 100644 --- a/src/components/oa/basicConfig/UserManage.jsx +++ b/src/components/oa/basicConfig/UserManage.jsx @@ -90,7 +90,7 @@ renderColumns = () => { let obj = this; return [ - { title: '头像', className: "txt-c", dataIndex: 'avatar', key: 'avatar', render: (text, record) => text ? <img style={{ height: 23, width: 25 }} src={text} /> : <Icon type="user-delete" style={{ fontSize: 20 }} /> }, + { title: '头像', className: "txt-c", dataIndex: 'avatar', key: 'avatar', render: (text, record) => text ? <img style={{ height: 23, width: 25 }} src={text} /> : <Icon type="user" style={{ fontSize: 20 }} /> }, { title: '姓名', className: "txt-c", dataIndex: 'trueName', key: 'trueName' }, { title: '身份证', className: "txt-c", dataIndex: 'idcard', key: 'idcard' }, { title: '邮箱', className: "txt-c", dataIndex: 'email', key: 'email' }, -- Gitblit v1.8.0