瀏覽代碼

444

master
congzc 2 年之前
父節點
當前提交
aae86a3026
共有 1 個文件被更改,包括 8 次插入1 次删除
  1. +8
    -1
      src/views/videoDownload/videoDownload.vue

+ 8
- 1
src/views/videoDownload/videoDownload.vue 查看文件

@@ -146,7 +146,14 @@ export default {
if (!isAndroid) {
console.log('ios');
let videoData = await exportVideoApi(this.id);
that.downloadFun(videoData, that.title);
let timerId = setInterval(() => {
if (videoData) {
clearInterval(timerId);
that.downloadFun(videoData, that.title);
} else {
}
}, 1000);

// const AccessToken = localStorage.getItem('AccessToken');
// that
// .$axios({


Loading…
取消
儲存