feat:图标名称修改

This commit is contained in:
houjunxiang
2025-11-24 10:46:21 +08:00
parent 8a3e48d856
commit c3630e74ec
17 changed files with 153 additions and 13 deletions

View File

@@ -6,6 +6,8 @@ export {};
export interface GlobalDirectives { } export interface GlobalDirectives { }
} }
; declare global { ; declare global {
var __VLS_PROPS_FALLBACK: Record<string, unknown>;
const __VLS_directiveBindingRestFields: { instance: null, oldValue: null, modifiers: any, dir: any }; const __VLS_directiveBindingRestFields: { instance: null, oldValue: null, modifiers: any, dir: any };
const __VLS_unref: typeof import('vue').unref; const __VLS_unref: typeof import('vue').unref;
const __VLS_placeholder: any; const __VLS_placeholder: any;
@@ -39,7 +41,7 @@ export {};
attrs?: any; attrs?: any;
slots?: T extends { $slots: infer Slots } ? Slots : Record<string, any>; slots?: T extends { $slots: infer Slots } ? Slots : Record<string, any>;
emit?: T extends { $emit: infer Emit } ? Emit : {}; emit?: T extends { $emit: infer Emit } ? Emit : {};
props?: (T extends { $props: infer Props } ? Props : {}) & Record<string, unknown>; props?: typeof props;
expose?: (exposed: T) => void; expose?: (exposed: T) => void;
}; };
}; };

138
node_modules/.vue-global-types/vue_99_0.d.ts generated vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -33,17 +33,17 @@ const popupShow = ref(false)
const menuItemList = ref([ const menuItemList = ref([
{ {
url: '/pages/analysis/sample/sample-work-list', url: '/pages/analysis/sample/sample-work-list',
otherConf: { icon: '/static/images/menus/样品分析.png' }, otherConf: { icon: '/static/images/menus/ypfx.png' },
name: '样品分析' name: '样品分析'
}, },
{ {
url: '/pages/analysis/sample/sample-report-search', url: '/pages/analysis/sample/sample-report-search',
otherConf: { icon: '/static/images/menus/记录.png' }, otherConf: { icon: '/static/images/menus/records.png' },
name: '分析记录' name: '分析记录'
}, },
{ {
url: '/pages/analysis/auncel/auncel-status', url: '/pages/analysis/auncel/auncel-status',
otherConf: { icon: '/static/images/menus/天平查看.png' }, otherConf: { icon: '/static/images/menus/tpck.png' },
name: '天平查看' name: '天平查看'
} }
]) ])

View File

@@ -14,8 +14,8 @@ import nx from '@/nx'
import { useGridCol } from '@/nx/hooks/useGridCol' import { useGridCol } from '@/nx/hooks/useGridCol'
let list = reactive([ let list = reactive([
// { url: '/pages/lims/index/index', name: '设备管理', icon: '设备管理' }, // { url: '/pages/lims/index/index', name: '设备管理', icon: '设备管理' },
{ url: '/pages/analysis/index/index', name: '分析管理', icon: '分析管理' }, { url: '/pages/analysis/index/index', name: '分析管理', icon: 'fxgl' },
{ url: '/pages/sampleWarehouse/index/index', name: '样品库管理', icon: '样品库管理' } { url: '/pages/sampleWarehouse/index/index', name: '样品库管理', icon: 'ypkgl' }
]) ])
// const sysMenus = computed(() => nx.$store('user').sysMenus) // const sysMenus = computed(() => nx.$store('user').sysMenus)

View File

@@ -34,37 +34,37 @@ const popupShow = ref(false)
const menuItemList = ref([ const menuItemList = ref([
{ {
url: '/pages/sampleWarehouse/sampleSearch/index', url: '/pages/sampleWarehouse/sampleSearch/index',
otherConf: { icon: '/static/images/menus/记录.png' }, otherConf: { icon: '/static/images/menus/records.png' },
name: '样品查询' name: '样品查询'
}, },
{ {
url: '/pages/sampleWarehouse/returnToStock/index', url: '/pages/sampleWarehouse/returnToStock/index',
otherConf: { icon: '/static/images/menus/样品归库.png' }, otherConf: { icon: '/static/images/menus/ypgk.png' },
name: '样品归库' name: '样品归库'
}, },
{ {
url: '/pages/sampleWarehouse/execChangeLocation/index', url: '/pages/sampleWarehouse/execChangeLocation/index',
otherConf: { icon: '/static/images/menus/库位变更.png' }, otherConf: { icon: '/static/images/menus/kwbg.png' },
name: '库位变更' name: '库位变更'
}, },
{ {
url: '/pages/sampleWarehouse/sampleDispatchInternal/index', url: '/pages/sampleWarehouse/sampleDispatchInternal/index',
otherConf: { icon: '/static/images/menus/内部调拨.png' }, otherConf: { icon: '/static/images/menus/nbdb.png' },
name: '内部调拨' name: '内部调拨'
}, },
{ {
url: '/pages/sampleWarehouse/sampleDispatchExternal/index', url: '/pages/sampleWarehouse/sampleDispatchExternal/index',
otherConf: { icon: '/static/images/menus/外部调拨.png' }, otherConf: { icon: '/static/images/menus/wbdb.png' },
name: '外部调拨' name: '外部调拨'
}, },
{ {
url: '/pages/sampleWarehouse/dispatchGiveBack/index', url: '/pages/sampleWarehouse/dispatchGiveBack/index',
otherConf: { icon: '/static/images/menus/调拨归还.png' }, otherConf: { icon: '/static/images/menus/dbgh.png' },
name: '调拨归还' name: '调拨归还'
}, },
{ {
url: '/pages/sampleWarehouse/sampleTakeOff/index', url: '/pages/sampleWarehouse/sampleTakeOff/index',
otherConf: { icon: '/static/images/menus/样品下架.png' }, otherConf: { icon: '/static/images/menus/ypxj.png' },
name: '样品下架' name: '样品下架'
} }
]) ])

View File

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

Some files were not shown because too many files have changed in this diff Show More