NGToolsAdmin/pages/uni-stat/error/js/uploadTask.vue

63 lines
1.3 KiB
Vue
Raw Normal View History

2024-09-13 08:39:31 +00:00
<template>
<view>
<block v-for="(fileTask, index) in uploadTasks" :key="index">
<view class="upload-task-body">
<view class="upload-task-item">
<text class="upload-task-item-name">{{fileTask.name}}</text>
<progress v-if="showProgress" class="upload-task-item-progress" :activeColor="fileTask.state !== -1 ? '#42b983' : '#ff5a5f'" :percent="fileTask.progress * 100" active :duration="5" />
<view class="flex" style="justify-content: space-between;">
<text class="upload-task-item-size">{{fileTask.size}}</text>
<text class="upload-task-item-size">{{fileTask.state !== -1 ? '' : '失败'}}</text>
</view>
</view>
</view>
</block>
</view>
</template>
<script>
export default {
props: {
uploadTasks: {
type: Array,
default: function() {
return []
}
},
showProgress: {
type: Boolean,
default: true
}
}
}
</script>
<style>
.upload-task-body {
background-color: #fff;
padding: 0 25rpx;
transition: background-color .4s;
}
.upload-task-body:hover {
background-color: #f5f5f5;
}
.upload-task-item {
padding: 20rpx 0;
}
.upload-task-item-progress {
padding: 20rpx 0;
}
.upload-task-item-size {
font-size: 12px;
color: #999;
}
.upload-task-item-name {
font-size: 14px;
}
</style>