From 89781e8f9bc49ccbf9c3ede426f9237dfa2faa0c Mon Sep 17 00:00:00 2001
From: zhangxiao <898441624@qq.com>
Date: 星期四, 15 八月 2024 09:36:20 +0800
Subject: [PATCH] fix: 修改新建会话判断条件,模型页面调整

---
 src/views/authority/users/index.vue |   85 ++++--------------------------------------
 1 files changed, 8 insertions(+), 77 deletions(-)

diff --git a/src/views/authority/users/index.vue b/src/views/authority/users/index.vue
index ab35e07..6d76315 100644
--- a/src/views/authority/users/index.vue
+++ b/src/views/authority/users/index.vue
@@ -64,71 +64,6 @@
           </div>
         </div>
       </div>
-      <!-- <a-row>
-        <a-col :flex="2"></a-col>
-        <a-col :flex="1">
-          <a-form :model="formModel" style="margin-top: 30px">
-            <a-form-item field="name">
-              <a-input
-                v-model="formModel.name"
-                :style="{ width: '320px' }"
-                :placeholder="$t('璇疯緭鍏�')"
-              />
-            </a-form-item>
-          </a-form>
-        </a-col>
-        <a-col :flex="'200px'" style="text-align: right; margin-top: 30px">
-          <a-button type="primary" @click="search" style="margin-right: 20px">
-            <template #icon>
-              <icon-search />
-            </template>
-            {{ $t('searchTable.form.search') }}
-          </a-button>
-          <a-button @click="reset">
-            <template #icon>
-              <icon-refresh />
-            </template>
-            {{ $t('searchTable.form.reset') }}
-          </a-button>
-        </a-col>
-      </a-row> -->
-      <!-- <a-divider style="margin-top: 0" />
-      <a-row style="margin-bottom: 16px">
-        <a-col :span="12">
-          <a-space>
-            <a-button type="primary" :align="'right'" @click="operation(0)"
-              >+ 鏂板缓璐︽埛</a-button
-            >
-          </a-space>
-        </a-col>
-        <a-col
-          :span="12"
-          style="display: flex; align-items: center; justify-content: end"
-        >
-          <a-tooltip :content="$t('searchTable.actions.refresh')">
-            <div class="action-icon" @click="search">
-              <icon-refresh size="18" />
-            </div>
-          </a-tooltip>
-          <a-dropdown @select="handleSelectDensity">
-            <a-tooltip :content="$t('searchTable.actions.density')">
-              <div class="action-icon">
-                <icon-line-height size="18" />
-              </div>
-            </a-tooltip>
-            <template #content>
-              <a-doption
-                v-for="item in densityList"
-                :key="item.value"
-                :value="item.value"
-                :class="{ active: item.value === size }"
-              >
-                <span>{{ item.name }}</span>
-              </a-doption>
-            </template>
-          </a-dropdown>
-        </a-col>
-      </a-row> -->
       <a-table
         row-key="id"
         :loading="loading"
@@ -191,17 +126,14 @@
       @ok="editHandleOk"
     >
       <a-form :model="editform">
+        <a-form-item field="email" label="鐢ㄦ埛鍚�">
+          <a-input v-model="editform.email" />
+        </a-form-item>
         <a-form-item field="name" label="鏄电О">
           <a-input v-model="editform.nickName" />
         </a-form-item>
-        <a-form-item field="userName" label="鐢ㄦ埛鍚�">
-          <a-input v-model="editform.userName" />
-        </a-form-item>
         <a-form-item field="phoneNumber" label="鎵嬫満鍙�">
           <a-input v-model="editform.phoneNumber" />
-        </a-form-item>
-        <a-form-item field="email" label="閭">
-          <a-input v-model="editform.email" />
         </a-form-item>
       </a-form>
     </a-modal>
@@ -249,7 +181,7 @@
       </div>
     </a-modal>
     <a-modal
-      width="70%"
+      width="50%"
       v-model:visible="resourcevisible"
       v-if="resourcevisible"
       title="鏉冮檺閰嶇疆"
@@ -275,19 +207,18 @@
               @check="onCheckMenu"
               :fieldNames="{
                 key: 'menuId',
-
+                title: 'menuName',
                 children: 'children',
               }"
               :check-strictly="checkStrictlyMenu"
             >
-              <template #extra="nodeData">
+              <!-- <template #extra="nodeData">
                 <div :class="{ 'custom-class': nodeData.menuType == 1 }">
                   <span>
                     {{ nodeData.menuName }}
                   </span>
                 </div>
-              </template>
-              <!-- <template #extra="nodeData"> {{ nodeData.menuName }}) </template> -->
+              </template> -->
             </a-tree>
             <!-- <a-space class="space_select_all">
               <a-button type="primary">鍏ㄩ��</a-button>
@@ -631,7 +562,7 @@
       slotName: 'index',
     },
     {
-      title: t('鐧诲綍鍚�'),
+      title: t('鐢ㄦ埛鍚�'),
       dataIndex: 'email',
     },
     {

--
Gitblit v1.8.0