From d942877495ceea1575e64fb6d4e2972f6da10cac Mon Sep 17 00:00:00 2001
From: odc.xiaohui <xiaohui@Q1>
Date: 星期三, 11 一月 2023 10:09:24 +0800
Subject: [PATCH] 2023/1/11 肖辉 修改UI样式

---
 src/components/Table/index.vue |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/components/Table/index.vue b/src/components/Table/index.vue
index d1afdbc..4a560a0 100644
--- a/src/components/Table/index.vue
+++ b/src/components/Table/index.vue
@@ -1,8 +1,11 @@
 <template>
     <div class="Table">
         <div class="datatable">
-            <el-table ref="multipleTable" :data="tableData" style="width: 100%"
-                :header-cell-style="{'font-size':'14px','font-weight':'650','line-height':'45px'}"
+            <el-table
+                border
+                stripe
+                ref="multipleTable" :data="tableData" style="width: 100%"
+                :header-cell-style="{'background':'#F5F5F5','font-size':'14px','font-weight':'650','line-height':'45px'}"
                 :row-class-name="tableRowClassName">
                 <el-table-column v-for="item in option.group" :key="item.prop" :label="item.label"
                     :prop="item.prop" :min-width="item['min-width'] ? item['item.min-width']:'10'">
@@ -11,11 +14,11 @@
                             {{scope.row[item.prop]}}
                         </div>
                         <slot v-else-if="item.type === 'operation'" name="operation" :info="scope">
-                            
+
                         </slot>
                         <slot name="status" v-else-if="item.type === 'status'" :info="scope">
                         </slot>
-                        <slot name='time' v-else-if="item.type === 'time'" :timeobj="scope"> 
+                        <slot name='time' v-else-if="item.type === 'time'" :timeobj="scope">
 
                         </slot>
                     </template>
@@ -255,4 +258,4 @@
         background-color: #4b9bb7;
     }
 }
-</style>
\ No newline at end of file
+</style>

--
Gitblit v1.8.0