|
@@ -27,16 +27,16 @@
|
|
|
<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 == 10 || scope.row.Status == 11 || (!scope.row.Status && scope.row.precent == 100)? 'upLoad-loading':'','upLoad']"
|
|
|
+ :class="['upLoad-loading']"
|
|
|
v-show="scope.row.isDown">
|
|
|
<div class="progress">
|
|
|
<el-progress
|
|
|
- :text-inside="scope.row.Status == 1 || scope.row.Status == 10 || scope.row.Status == 11 || (!scope.row.Status && scope.row.precent == 100)?false:true"
|
|
|
- :stroke-width="20" :percentage="scope.row.precent"
|
|
|
+ :text-inside="false"
|
|
|
+ :stroke-width="20" :percentage="100"
|
|
|
:color="scope.row.Status == 1 || scope.row.Status == 10 || scope.row.Status == 11?'#909399':'#67C23A'"></el-progress>
|
|
|
</div>
|
|
|
<div class="progress-right">
|
|
|
- <span v-show="!scope.row.Status && scope.row.precent == 100">上传中</span>
|
|
|
+ <span v-show="!scope.row.Status">上传中</span>
|
|
|
<span v-show="scope.row.Status == 1">等待检查...</span>
|
|
|
<span v-show="scope.row.Status == 10">模型检查中</span>
|
|
|
<span v-show="scope.row.Status == 11">未通过检查</span>
|