Browse Source

隐藏上传终止按钮

zhangyu 5 years ago
parent
commit
5a0ade3f9b
1 changed files with 7 additions and 3 deletions
  1. 7 3
      src/components/model/file/floorTable.vue

+ 7 - 3
src/components/model/file/floorTable.vue

@@ -33,13 +33,13 @@
             ></el-progress>
           </div>
           <div class="progress-right">
-            <el-button
+            <!-- <el-button
               v-show="!scope.row.Status"
               type="danger"
               class="iconfont icon-termination"
               @click="closeUpdate(scope.row)"
               circle
-            ></el-button>
+            ></el-button> -->
             <span v-show="scope.row.Status == 1">等待检查...</span>
             <span v-show="scope.row.Status == 2">模型检查中</span>
           </div>
@@ -160,7 +160,8 @@ export default {
     align-items: center;
     padding: 4px 0;
     .progress {
-      width: 150px;
+      // width: 150px;
+      width: 175px;
       height: 20px;
     }
     .progress-right {
@@ -196,4 +197,7 @@ export default {
     padding-right: 44px;
     margin-right: -44px;
 }
+/deep/ .el-progress-bar__inner {
+    text-align: center;
+}
 </style>