部分问题修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
93acf8f333
commit
e20719415a
|
@ -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,
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue