pull/591/merge
yombo 2023-03-01 06:07:24 +00:00 committed by GitHub
commit 659878dd48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@ import { AuthButton, Action } from 'components';
import { http, uniqueId, X_TOKEN } from 'libs';
import lds from 'lodash';
import styles from './index.module.less'
import moment from 'moment';
class FileManager extends React.Component {
@ -72,6 +73,7 @@ class FileManager extends React.Component {
}, {
title: '修改时间',
dataIndex: 'date',
sorter: (a, b) => { return moment(a.date).unix() - moment(b.date).unix()},
width: 190
}, {
title: '属性',