From d806bf1af77108e0a4931549af8d35236aa93961 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期四, 03 八月 2023 09:09:33 +0800
Subject: [PATCH] 样式调整

---
 src/views/Admin/addressBook.vue |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/views/Admin/addressBook.vue b/src/views/Admin/addressBook.vue
index 7618f47..6cb435d 100644
--- a/src/views/Admin/addressBook.vue
+++ b/src/views/Admin/addressBook.vue
@@ -1,12 +1,12 @@
 <template>
   <div class="inner">
     <a-row type="flex" justify="space-between" style="margin-bottom: 20px">
-      <a-col :span="8">
+      <a-col :span="6">
         <a-button v-if="unittype && unittype !== null" type="primary" @click="editData('add',{})">新增</a-button>
         <a-button v-if="unittype && unittype !== null" type="primary" @click="visible = true" style="margin: 0 12px">导入通讯录表</a-button>
         <a-button v-if="unittype && unittype !== null" type="primary" @click="openGroup()">分组管理</a-button>
       </a-col>
-      <a-col :span="16">
+      <a-col :span="18">
         <a-row type="flex" justify="end" :gutter="14">
           <a-col :span="6">
             <a-input v-model="search.searchParams.company" placeholder="单位名称" style="width: 100%"/>
@@ -16,7 +16,7 @@
               <a-select-option v-for="item in groupData" :value="item.id" :key="item.id">{{item.name}}</a-select-option>
             </a-select>
           </a-col>
-          <a-col :span="4">
+          <a-col :span="6">
             <a-button type="primary" @click="searchData()">查询</a-button>
             <a-button style="margin-left: 12px" @click="resetSearch">重置</a-button>
           </a-col>
@@ -97,6 +97,7 @@
         {
           title: '操作',
           key: 'action',
+          width: '15%',
           scopedSlots: { customRender: 'action' }
         },
       ],

--
Gitblit v1.9.2