diff --git a/yudao-ui/yudao-ui-admin-vue3-master/src/api/erp/devicecategory/index.ts b/yudao-ui/yudao-ui-admin-vue3-master/src/api/erp/devicecategory/index.ts
new file mode 100644
index 0000000..511f5d9
--- /dev/null
+++ b/yudao-ui/yudao-ui-admin-vue3-master/src/api/erp/devicecategory/index.ts
@@ -0,0 +1,52 @@
+import request from '@/config/axios'
+import type { Dayjs } from 'dayjs';
+
+/** 进销存系统 - 器械分类信息 */
+export interface DeviceCategory {
+ id: number; // 记录唯一标识,系统自动生成,用于数据关联和查询
+ categoryName?: string; // 分类名称(如 "01 有源手术器械"),业务核心字段,必填
+ categoryCode?: string; // 分类编号(如 "1-8-8.2""1-10-10.4"),业务唯一标识(页面标*必填)
+ deviceType?: string; // 类别(如 "一类""二类""三类"),通过下拉选择,必填
+ exampleNames: string; // 品名举例(如 "移动式 LED 手术照明灯、LED 手术照明灯..."),可选填
+ createUser?: string; // 记录创建人(如 "admin"),用于追溯操作人
+ updateUser: string; // 记录最后更新人,数据首次创建时可为空,修改后自动填充
+ status?: number; // 状态
+ }
+
+// 进销存系统 - 器械分类 API
+export const DeviceCategoryApi = {
+ // 查询进销存系统 - 器械分类分页
+ getDeviceCategoryPage: async (params: any) => {
+ return await request.get({ url: `/erp/device-category/page`, params })
+ },
+
+ // 查询进销存系统 - 器械分类详情
+ getDeviceCategory: async (id: number) => {
+ return await request.get({ url: `/erp/device-category/get?id=` + id })
+ },
+
+ // 新增进销存系统 - 器械分类
+ createDeviceCategory: async (data: DeviceCategory) => {
+ return await request.post({ url: `/erp/device-category/create`, data })
+ },
+
+ // 修改进销存系统 - 器械分类
+ updateDeviceCategory: async (data: DeviceCategory) => {
+ return await request.put({ url: `/erp/device-category/update`, data })
+ },
+
+ // 删除进销存系统 - 器械分类
+ deleteDeviceCategory: async (id: number) => {
+ return await request.delete({ url: `/erp/device-category/delete?id=` + id })
+ },
+
+ /** 批量删除进销存系统 - 器械分类 */
+ deleteDeviceCategoryList: async (ids: number[]) => {
+ return await request.delete({ url: `/erp/device-category/delete-list?ids=${ids.join(',')}` })
+ },
+
+ // 导出进销存系统 - 器械分类 Excel
+ exportDeviceCategory: async (params) => {
+ return await request.download({ url: `/erp/device-category/export-excel`, params })
+ }
+}
\ No newline at end of file
diff --git a/yudao-ui/yudao-ui-admin-vue3-master/src/views/erp/devicecategory/DeviceCategoryForm.vue b/yudao-ui/yudao-ui-admin-vue3-master/src/views/erp/devicecategory/DeviceCategoryForm.vue
new file mode 100644
index 0000000..81cdf2d
--- /dev/null
+++ b/yudao-ui/yudao-ui-admin-vue3-master/src/views/erp/devicecategory/DeviceCategoryForm.vue
@@ -0,0 +1,129 @@
+
+
+
+
\ No newline at end of file
diff --git a/yudao-ui/yudao-ui-admin-vue3-master/src/views/erp/devicecategory/index.vue b/yudao-ui/yudao-ui-admin-vue3-master/src/views/erp/devicecategory/index.vue
new file mode 100644
index 0000000..133f0e6
--- /dev/null
+++ b/yudao-ui/yudao-ui-admin-vue3-master/src/views/erp/devicecategory/index.vue
@@ -0,0 +1,295 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+ 新增
+
+
+ 导出
+
+
+ 批量删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 编辑
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file