From 743a085df156140f4a3f4ae2d03e910790181945 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期一, 08 四月 2024 15:05:12 +0800
Subject: [PATCH] 新增查询条件

---
 src/views/Admin/addressBook.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/Admin/addressBook.vue b/src/views/Admin/addressBook.vue
index 6cb435d..92bd22b 100644
--- a/src/views/Admin/addressBook.vue
+++ b/src/views/Admin/addressBook.vue
@@ -1,13 +1,13 @@
 <template>
   <div class="inner">
     <a-row type="flex" justify="space-between" style="margin-bottom: 20px">
-      <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 :span="6" v-if="unittype && unittype !== null">
+        <a-button type="primary" @click="editData('add',{})">新增</a-button>
+        <a-button type="primary" @click="visible = true" style="margin: 0 12px">导入通讯录表</a-button>
+        <a-button type="primary" @click="openGroup()">分组管理</a-button>
       </a-col>
       <a-col :span="18">
-        <a-row type="flex" justify="end" :gutter="14">
+        <a-row type="flex" :gutter="14">
           <a-col :span="6">
             <a-input v-model="search.searchParams.company" placeholder="单位名称" style="width: 100%"/>
           </a-col>

--
Gitblit v1.9.2