ソースを参照

优化-开发小工具-表格宽度调整

shiy 1 年間 前
コミット
309bd3712d
1 ファイル変更6 行追加6 行削除
  1. 6 6
      src/views/monitor/system/index.vue

+ 6 - 6
src/views/monitor/system/index.vue

@@ -24,24 +24,24 @@
       </el-form-item>
     </el-form>
     <el-table v-loading="loading" :data="serviceList" border :height="tableHeight">
-      <el-table-column label="业务域" min-width="120" align="center" prop="busDomain" :formatter="formatterBusDomain"/>
-      <el-table-column label="业务类型" min-width="120" align="center" prop="monitorType">
+      <el-table-column label="业务域" min-width="80" align="center" prop="busDomain" :formatter="formatterBusDomain"/>
+      <el-table-column label="业务类型" min-width="60" align="center" prop="monitorType">
         <template slot-scope="scope">
           <span v-if="scope.row.monitorType == 'flow'">流程</span>
           <span v-if="scope.row.monitorType == 'todo'">待办</span>
         </template>
       </el-table-column>
-      <el-table-column label="OA单据信息" min-width="80" align="center" prop="oaIdentity"/>
+      <el-table-column label="OA单据信息" min-width="120" align="center" prop="oaIdentity"/>
       <el-table-column label="业务域单据信息" min-width="120" align="center" prop="docIdentity"/>
       <el-table-column label="所属模块" min-width="80" align="center" prop="busModule" :show-overflow-tooltip="true"/>
       <el-table-column label="状态释意" min-width="80" align="center" prop="busStatusName"/>
-      <el-table-column label="问题原因" min-width="150" align="center" prop="errorMsg"/>
-      <el-table-column label="创建时间" min-width="120" align="center" prop="createTime" :show-overflow-tooltip="true"/>
+      <el-table-column label="问题原因" min-width="180" align="center" prop="errorMsg"/>
+      <el-table-column label="创建时间" min-width="100" align="center" prop="createTime" :show-overflow-tooltip="true"/>
       <el-table-column
         fixed="right"
         label="操作"
         align="center"
-        width="180"
+        width="80"
       >
         <template slot-scope="scope">
           <el-button type="text" size="mini" @click="disposeData(scope.row)">处理</el-button>