Parcourir la source

workspace update

master
unknown il y a 4 ans
Parent
révision
b301bd98bb
2 fichiers modifiés avec 14 ajouts et 2 suppressions
  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 Voir le fichier

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


+ 11
- 0
src/views/main_web/workspace/workspace.vue Voir le fichier

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


Chargement…
Annuler
Enregistrer