Browse Source

fix(player): 倍速 0.875 改成 0.9(一位小数更易记)

0.875 是三位数小数,用户反馈记不住也不好看。
改成 0.9,含义'略微放慢'更直观。
MyFramework User 1 month ago
parent
commit
af8eb10957
1 changed files with 1 additions and 1 deletions
  1. 1 1
      my-uniapp-vue3/src/pages/player/index.vue

+ 1 - 1
my-uniapp-vue3/src/pages/player/index.vue

@@ -158,7 +158,7 @@
         <text class="rate-title">播放速度</text>
         <view class="rate-options">
           <view
-            v-for="rate in [0.5, 0.75, 0.875, 1, 1.25, 1.5, 2]"
+            v-for="rate in [0.5, 0.75, 0.9, 1, 1.25, 1.5, 2]"
             :key="rate"
             class="rate-item"
             :class="{ active: playRate === rate }"