|
@@ -3,8 +3,9 @@
|
|
|
ref="filterTable"
|
|
|
:data="tableData"
|
|
|
style="width: 100%"
|
|
|
+ :height="maxHeight"
|
|
|
+ max-height="800px"
|
|
|
:header-cell-style="{background:'#ccc',color:'#000'}"
|
|
|
- height="600"
|
|
|
>
|
|
|
<el-table-column prop="FloorName" label="模型文件" width="180">
|
|
|
<template slot-scope="scope">
|
|
@@ -21,26 +22,45 @@
|
|
|
<div class="operate" v-show="!scope.row.isDown">
|
|
|
<el-button
|
|
|
type="primary"
|
|
|
- size="mini"
|
|
|
+ size="mini"
|
|
|
class="iconfont icon-download"
|
|
|
@click="downloadModel(scope.row)"
|
|
|
></el-button>
|
|
|
- <el-button type="primary" size="mini" class="iconfont icon-replace" @click="repliaceModel(scope.row)"></el-button>
|
|
|
- <el-button type="primary" size="mini" class="iconfont icon-Log" @click="queryModelLog(scope.row)"></el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ class="iconfont icon-replace"
|
|
|
+ @click="repliaceModel(scope.row)"
|
|
|
+ ></el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ size="mini"
|
|
|
+ class="iconfont icon-Log"
|
|
|
+ @click="queryModelLog(scope.row)"
|
|
|
+ ></el-button>
|
|
|
</div>
|
|
|
- <div :class="[scope.row.Status == 1 ||scope.row.Status == 2 ? 'upLoad-loading':'','upLoad']" v-show="scope.row.isDown">
|
|
|
+ <div
|
|
|
+ :class="[scope.row.Status == 1 ||scope.row.Status == 2 ? 'upLoad-loading':'','upLoad']"
|
|
|
+ v-show="scope.row.isDown"
|
|
|
+ >
|
|
|
<div class="progress">
|
|
|
- <el-progress
|
|
|
- :text-inside="scope.row.Status == 1 || scope.row.Status == 2 ?false:true"
|
|
|
- :stroke-width="20"
|
|
|
- :percentage="scope.row.precent"
|
|
|
- :status="scope.row.Status == 1 || scope.row.Status == 2 ?'warning':'success'"
|
|
|
- ></el-progress>
|
|
|
+ <el-progress
|
|
|
+ :text-inside="scope.row.Status == 1 || scope.row.Status == 2 ?false:true"
|
|
|
+ :stroke-width="20"
|
|
|
+ :percentage="scope.row.precent"
|
|
|
+ :status="scope.row.Status == 1 || scope.row.Status == 2 ?'warning':'success'"
|
|
|
+ ></el-progress>
|
|
|
</div>
|
|
|
<div class="progress-right">
|
|
|
- <el-button v-show="!scope.row.Status" type="danger" icon="el-icon-delete" @click="closeUpdate(scope.row)" circle></el-button>
|
|
|
- <span v-show="scope.row.Status == 1">等待检查...</span>
|
|
|
- <span v-show="scope.row.Status == 2">模型检查中</span>
|
|
|
+ <el-button
|
|
|
+ v-show="!scope.row.Status"
|
|
|
+ type="danger"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="closeUpdate(scope.row)"
|
|
|
+ circle
|
|
|
+ ></el-button>
|
|
|
+ <span v-show="scope.row.Status == 1">等待检查...</span>
|
|
|
+ <span v-show="scope.row.Status == 2">模型检查中</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -48,13 +68,19 @@
|
|
|
</el-table>
|
|
|
</template>
|
|
|
<script>
|
|
|
+import { mapGetters } from "vuex";
|
|
|
export default {
|
|
|
props: {
|
|
|
tableData: Array,
|
|
|
persentList: Array
|
|
|
},
|
|
|
data() {
|
|
|
- return {};
|
|
|
+ return {
|
|
|
+ maxHeight: 0
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapGetters("layout", ["projectId", "userInfo", "userId", "secret"])
|
|
|
},
|
|
|
methods: {
|
|
|
// 查看日志
|
|
@@ -70,13 +96,13 @@ export default {
|
|
|
if (item.Id == Id) {
|
|
|
if (precent >= 100) {
|
|
|
// 如过precent == 100 不能关闭进度条,
|
|
|
- if(precent == 100){
|
|
|
+ if (precent == 100) {
|
|
|
item.precent = 99;
|
|
|
- }else if(precent == 101){
|
|
|
- // 如过precent == 101 则返回结果为suceess 不能关闭进度条,
|
|
|
- item.precent = 100;
|
|
|
- item.isDown = false;
|
|
|
- this.$emit('percentFinish')
|
|
|
+ } else if (precent == 101) {
|
|
|
+ // 如过precent == 101 则返回结果为suceess 不能关闭进度条,
|
|
|
+ item.precent = 100;
|
|
|
+ item.isDown = false;
|
|
|
+ this.$emit("percentFinish");
|
|
|
}
|
|
|
return;
|
|
|
} else {
|
|
@@ -98,7 +124,14 @@ export default {
|
|
|
},
|
|
|
// 停止上传
|
|
|
closeUpdate(item) {
|
|
|
- this.$emit("closeUpdateFile", item);
|
|
|
+ if (this.userInfo.username ==item.UserName ) {
|
|
|
+ this.$emit("closeUpdateFile", item);
|
|
|
+ } else {
|
|
|
+ this.$message({
|
|
|
+ message:"您不是该文件的上传者,不能停止该文件上传!",
|
|
|
+ type: "error"
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
@@ -116,32 +149,36 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- mounted() {}
|
|
|
+ mounted() {
|
|
|
+ this.$nextTick(function() {
|
|
|
+ this.maxHeight = $("#file_moddle_manage").height() - 60; // 获取最外层的高度
|
|
|
+ });
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|
|
|
<style scoped lang="less">
|
|
|
.box-card {
|
|
|
- min-height: 800px;
|
|
|
- .upLoad{
|
|
|
+ height: 100%;
|
|
|
+ .upLoad {
|
|
|
display: flex;
|
|
|
justify-content: flex-start;
|
|
|
align-items: center;
|
|
|
- .progress{
|
|
|
+ .progress {
|
|
|
width: 160px;
|
|
|
height: 20px;
|
|
|
}
|
|
|
}
|
|
|
- .upLoad-loading{
|
|
|
+ .upLoad-loading {
|
|
|
position: relative;
|
|
|
- justify-content: center;
|
|
|
- .progress{
|
|
|
- width: 200px
|
|
|
- }
|
|
|
- .progress-right{
|
|
|
+ justify-content: center;
|
|
|
+ .progress {
|
|
|
+ width: 200px;
|
|
|
+ }
|
|
|
+ .progress-right {
|
|
|
position: absolute;
|
|
|
left: 40%;
|
|
|
top: 50%;
|
|
|
- transform: translate(-50%,-50%);
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
color: #909399;
|
|
|
}
|
|
|
}
|