Selaa lähdekoodia

修复用户管理显示问题

CaIon 2 vuotta sitten
vanhempi
commit
7a8344c40a
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      web/src/components/UsersTable.js

+ 2 - 2
web/src/components/UsersTable.js

@@ -72,13 +72,13 @@ const UsersTable = () => {
     }, {
     }, {
         title: '状态', dataIndex: 'status', render: (text, record, index) => {
         title: '状态', dataIndex: 'status', render: (text, record, index) => {
             return (<div>
             return (<div>
-                {record.deleted_at !== null? <Tag color='red'>已注销</Tag> : renderStatus(text)}
+                {record.DeletedAt !== null? <Tag color='red'>已注销</Tag> : renderStatus(text)}
             </div>);
             </div>);
         },
         },
     }, {
     }, {
         title: '', dataIndex: 'operate', render: (text, record, index) => (<div>
         title: '', dataIndex: 'operate', render: (text, record, index) => (<div>
             {
             {
-                record.deleted_at !== null ? <></>:
+                record.DeletedAt !== null ? <></>:
                     <>
                     <>
                         <Popconfirm
                         <Popconfirm
                             title="确定?"
                             title="确定?"