소스 검색

workspace update

master
unknown 4 년 전
부모
커밋
b301bd98bb
2개의 변경된 파일14개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      src/views/main_web/workspace/components/file-item.vue
  2. +11
    -0
      src/views/main_web/workspace/workspace.vue

+ 3
- 2
src/views/main_web/workspace/components/file-item.vue 파일 보기

@@ -73,7 +73,7 @@
v-if="isClient && file.downloadStatus === DownloadStatus.UPLOADING"
>
<div class="progress-circle">
<img class="bg-pic" src="/static/img/upload.png" alt="">
<img class="bg-pic" src="/static/img/upload.png" alt="" :style="{ width: '24px' }" >
<el-progress :width="45" :height="45"
type="circle" :show-text="false"
:percentage="file.loadProgress" :stroke-width="3" color="rgb(140, 0, 255)">
@@ -199,7 +199,8 @@ export default {
background-color: #fff;
border-radius: 50%;
}
.progress-circle , .readytodownload-icon img, .progress-circle .bg-pic{
.progress-circle , .readytodownload-icon img,
.progress-circle .bg-pic{
position: absolute;
top: 50%;
left: 50%;


+ 11
- 0
src/views/main_web/workspace/workspace.vue 파일 보기

@@ -473,6 +473,16 @@
:move="draggableMove"
@end="draggableEnd"
>
<FileItem
class="lisy-group-item"
v-for="file in removeMilestone(myFilesList)"
:key="file.id"
:file="file"
:rightShowMenu="rightShowMenu"
:clientDownLoad="clientDownLoad"
:setFileStatus="setFileStatus"
:showFileMilestone="showFileMilestone"
/>
<div
class="lisy-group-item"
v-for="file in removeMilestone(myFilesList)"
@@ -7173,6 +7183,7 @@ export default {
* 拖拽完成发送请求
*/
draggableEnd: function (evt) {
debugger;
var thisApp = this;
if (thisApp.currentPageType == 1) {
thisApp.$notify({


불러오는 중...
취소
저장