部分问题修复
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,
|
UserType: null,
|
||||||
PageIndex: 1,
|
PageIndex: 1,
|
||||||
PageSize: 20,
|
PageSize: 20,
|
||||||
Asc: true,
|
Asc: false,
|
||||||
RealName: "",
|
RealName: "",
|
||||||
SortField: "",
|
SortField: "CreateTime",
|
||||||
CreateTimeArr: [],
|
CreateTimeArr: [],
|
||||||
BeginCreateTime: null,
|
BeginCreateTime: null,
|
||||||
EndCreateTime: null,
|
EndCreateTime: null,
|
||||||
|
|
|
@ -140,7 +140,7 @@
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{
|
<span>{{
|
||||||
scope.row.FileSize && scope.row.FileSize > 0
|
scope.row.FileSize && scope.row.FileSize > 0
|
||||||
? `${Math.ceil(scope.row.FileSize / 1024 / 1024)}MB`
|
? `${(scope.row.FileSize / 1024 / 1024).toFixed(2)}MB`
|
||||||
: 0
|
: 0
|
||||||
}}</span>
|
}}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{
|
<span>{{
|
||||||
scope.row.VisitImageZipSize && scope.row.VisitImageZipSize > 0
|
scope.row.VisitImageZipSize && scope.row.VisitImageZipSize > 0
|
||||||
? `${Math.ceil(scope.row.VisitImageZipSize / 1024 / 1024)}MB`
|
? `${(scope.row.VisitImageZipSize / 1024 / 1024).toFixed(2)}MB`
|
||||||
: 0
|
: 0
|
||||||
}}</span>
|
}}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue