|
@@ -251,7 +251,6 @@ export default {
|
|
|
deploy:'local',
|
|
|
resource:'',
|
|
|
server:''
|
|
|
-
|
|
|
});
|
|
|
kankan.use("MinMap", {
|
|
|
theme: {
|
|
@@ -298,7 +297,12 @@ export default {
|
|
|
currFrames = this.tours[partId].list.length;
|
|
|
this.progressPart = 0;
|
|
|
}
|
|
|
- this.progressPart += progress / currFrames;
|
|
|
+
|
|
|
+ const length = this.tours[partId].list.length;
|
|
|
+
|
|
|
+ const baiFen =
|
|
|
+ (frameId / length + Number(progress).toFixed(5) / length) * 100;
|
|
|
+ this.progressPart = baiFen;
|
|
|
}
|
|
|
});
|
|
|
});
|