部分问题修复
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2024-05-29 16:56:14 +08:00
parent 93acf8f333
commit e20719415a
3 changed files with 4 additions and 4 deletions

View File

@ -74,9 +74,9 @@ const searchDataDefault = () => {
UserType: null,
PageIndex: 1,
PageSize: 20,
Asc: true,
Asc: false,
RealName: "",
SortField: "",
SortField: "CreateTime",
CreateTimeArr: [],
BeginCreateTime: null,
EndCreateTime: null,

View File

@ -140,7 +140,7 @@
<template slot-scope="scope">
<span>{{
scope.row.FileSize && scope.row.FileSize > 0
? `${Math.ceil(scope.row.FileSize / 1024 / 1024)}MB`
? `${(scope.row.FileSize / 1024 / 1024).toFixed(2)}MB`
: 0
}}</span>
</template>

View File

@ -150,7 +150,7 @@
<template slot-scope="scope">
<span>{{
scope.row.VisitImageZipSize && scope.row.VisitImageZipSize > 0
? `${Math.ceil(scope.row.VisitImageZipSize / 1024 / 1024)}MB`
? `${(scope.row.VisitImageZipSize / 1024 / 1024).toFixed(2)}MB`
: 0
}}</span>
</template>