Browse Source

180秒限制

dev
congzc 1 year ago
parent
commit
f77cbbba22
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/views/createVideo/index.vue

+ 4
- 0
src/views/createVideo/index.vue View File

@@ -1879,6 +1879,10 @@ function handleTime(time) {
if (s < 10) {
s = "0" + s;
}
if (s==60) {
m=Number(m)+1
s = "00";
}
return m + ":" + s;
}
// 点击上传音乐


Loading…
Cancel
Save