Explorar el Código

统一风格:禁止状态时将el-tag的type修改为info

vera_min hace 3 años
padre
commit
f51834e330
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/views/network/server/component/list.vue

+ 1 - 1
src/views/network/server/component/list.vue

@@ -10,7 +10,7 @@
             <!-- <el-table-column align="center" prop="last" label="最近上线"/> -->
             <el-table-column align="center" prop="types" label="状态">
                 <template #default="scope">
-                    <el-tag v-if="!scope.row.status" class="ml-2" type="danger">未启动</el-tag>
+                    <el-tag v-if="!scope.row.status" class="ml-2" type="info">未启动</el-tag>
                     <el-tag v-else class="ml-2" type="success">启动</el-tag>
                 </template>
             </el-table-column>