浏览代码

Merge remote-tracking branch 'origin/dev-frontend'

# Conflicts:
#	frontend/src/views/Photography/detail.vue
panqiuyao 6 月之前
父节点
当前提交
59bc939e48
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      frontend/src/views/Photography/detail.vue

+ 1 - 1
frontend/src/views/Photography/detail.vue

@@ -468,7 +468,7 @@ const openLoadingDialog = (timer: number) => {
   const step = 100 / timer
   INTERVAL.value = setInterval(() => {
     if (progress.value < 100) {
-      progress.value == Math.min(Math.round(progress.value + step),100)
+      progress.value = Math.min(Math.round(progress.value + step),100)
     }
   }, 1000)
 }