|
@@ -39,12 +39,12 @@
|
|
|
></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="[scope.row.Status == 1 || scope.row.Status == 10 || scope.row.Status == 11 || (!scope.row.Status && scope.row.precent == 100)? 'upLoad-loading':'','upLoad']"
|
|
|
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"
|
|
|
+ :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"
|
|
|
:color="scope.row.Status == 1 || scope.row.Status == 10 || scope.row.Status == 11?'#909399':'#67C23A'"
|
|
@@ -58,7 +58,7 @@
|
|
|
@click="closeUpdate(scope.row)"
|
|
|
circle
|
|
|
></el-button>-->
|
|
|
- <span v-show="scope.row.Status && scope.row.precent == 100">上传中</span>
|
|
|
+ <span v-show="!scope.row.Status && scope.row.precent == 100">上传中</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>
|