bill 4 months ago
parent
commit
94a1112e9f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/animation/right/am.vue

+ 1 - 1
src/views/animation/right/am.vue

@@ -202,7 +202,7 @@ const getActionDur = (key: string) => {
   const actions = amMap[getAMKey(props.am)]?.am?.getSupportActions() || [];
   const actions = amMap[getAMKey(props.am)]?.am?.getSupportActions() || [];
   const action = actions.find((item) => item.name === key);
   const action = actions.find((item) => item.name === key);
   if (action?.duration) {
   if (action?.duration) {
-    return Math.floor(action?.duration);
+    return Math.floor(action?.duration * 100) / 100;
   }
   }
 };
 };
 </script>
 </script>