Skip to content

Commit cf674ec

Browse files
feat: bugs
1 parent e8f8009 commit cf674ec

File tree

13 files changed

+907
-753
lines changed

13 files changed

+907
-753
lines changed
File renamed without changes.

ui/src/components/app-icon/icons/menu.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,4 +261,25 @@ export default {
261261
])
262262
},
263263
},
264+
'app-user-chat': {
265+
iconReader: () => {
266+
return h('i', [
267+
h(
268+
'svg',
269+
{
270+
style: { height: '100%', width: '100%' },
271+
viewBox: '0 0 1024 1024',
272+
version: '1.1',
273+
xmlns: 'http://www.w3.org/2000/svg',
274+
},
275+
[
276+
h('path', {
277+
d: 'M426.666667 512a213.333333 213.333333 0 1 1 0.085333-426.752A213.333333 213.333333 0 0 1 426.666667 512z m0-85.333333a128 128 0 0 0 0-256 128 128 0 0 0 0 256z m-384 384a256 256 0 0 1 256-256h256a256 256 0 0 1 256 256v108.330666c0 23.552-19.2 42.666667-42.666667 42.666667H85.333333c-23.466667 0-42.666667-19.114667-42.666666-42.666667V810.666667z m682.666666 0a170.666667 170.666667 0 0 0-170.666666-170.666667H298.666667a170.666667 170.666667 0 0 0-170.666667 170.666667v65.664h597.333333V810.666667z m21.333334-426.666667h213.333333a21.333333 21.333333 0 0 1 21.333333 21.333333v42.666667a21.333333 21.333333 0 0 1-21.333333 21.333333h-213.333333a21.333333 21.333333 0 0 1-21.333334-21.333333v-42.666667a21.333333 21.333333 0 0 1 21.333334-21.333333z m128 170.666667h85.333333a21.333333 21.333333 0 0 1 21.333333 21.333333v42.666667a21.333333 21.333333 0 0 1-21.333333 21.333333h-85.333333a21.333333 21.333333 0 0 1-21.333334-21.333333v-42.666667a21.333333 21.333333 0 0 1 21.333334-21.333333z',
278+
fill: 'currentColor',
279+
}),
280+
],
281+
),
282+
])
283+
},
284+
},
264285
}

ui/src/router/modules/system.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ const systemRouter = {
192192
path: '/system/chat',
193193
name: 'SystemChat',
194194
meta: {
195-
icon: 'app-shared',
196-
iconActive: 'app-shared-active',
195+
icon: 'app-user-chat',
196+
iconActive: 'app-user-chat',
197197
title: 'views.chatUser.title',
198198
activeMenu: '/system',
199199
parentPath: '/system',
@@ -225,7 +225,7 @@ const systemRouter = {
225225
),
226226
],
227227
},
228-
component: () => import('@/views/system-chat-user/user-manage/index.vue'),
228+
component: () => import('@/views/system-chat-user/chat-user/index.vue'),
229229
},
230230
{
231231
path: '/system/chat/group',

ui/src/views/application-workflow/component/PublishHistory.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<script setup lang="ts">
7272
import { ref, onMounted, computed } from 'vue'
7373
import { useRoute } from 'vue-router'
74-
import workFlowVersionApi from '@/api/application/work-flow-version'
74+
import workFlowVersionApi from '@/api/application/workflow-version'
7575
import { datetimeFormat } from '@/utils/time'
7676
import { MsgSuccess, MsgError } from '@/utils/message'
7777
import { t } from '@/locales'

ui/src/views/system-chat-user/user-manage/component/SetUserGroupsDialog.vue renamed to ui/src/views/system-chat-user/chat-user/component/SetUserGroupsDialog.vue

File renamed without changes.

ui/src/views/system-chat-user/user-manage/component/SyncUsersDialog.vue renamed to ui/src/views/system-chat-user/chat-user/component/SyncUsersDialog.vue

File renamed without changes.

ui/src/views/system-chat-user/user-manage/component/UserDrawer.vue renamed to ui/src/views/system-chat-user/chat-user/component/UserDrawer.vue

File renamed without changes.

ui/src/views/system-chat-user/user-manage/component/UserPwdDialog.vue renamed to ui/src/views/system-chat-user/chat-user/component/UserPwdDialog.vue

File renamed without changes.

0 commit comments

Comments
 (0)