|
@@ -335,10 +335,12 @@ export default {
|
|
|
this.handleQuery();
|
|
this.handleQuery();
|
|
|
},
|
|
},
|
|
|
lostDurationText(duration) {
|
|
lostDurationText(duration) {
|
|
|
- if (!duration || duration=='0') {
|
|
|
|
|
|
|
+ if (!duration) {
|
|
|
|
|
+ return "未知";
|
|
|
|
|
+ }
|
|
|
|
|
+ if (duration=='0') {
|
|
|
return "未丢失";
|
|
return "未丢失";
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
let str = "";
|
|
let str = "";
|
|
|
let hour = Math.floor(duration / 60);
|
|
let hour = Math.floor(duration / 60);
|
|
|
if (hour > 0) {
|
|
if (hour > 0) {
|