diff --git a/src/api/qms/samplingProcess/index.ts b/src/api/qms/samplingProcess/index.ts
new file mode 100644
index 000000000..68a42f63a
--- /dev/null
+++ b/src/api/qms/samplingProcess/index.ts
@@ -0,0 +1,53 @@
+import request from '@/config/axios'
+
+export interface SamplingProcessVO {
+ id: number
+ code: string
+ describe: string
+ sampleType: string
+ evaluationMode: string
+ sampleSize: number
+ sampleProgCode: number
+ available: string
+}
+
+// 查询采样过程列表
+export const getSamplingProcessPage = async (params) => {
+ if (params.isSearch) {
+ delete params.isSearch
+ const data = {...params}
+ return await request.post({ url: '/qms/sampling-process/senior', data })
+ } else {
+ return await request.get({ url: `/qms/sampling-process/page`, params })
+ }
+}
+
+// 查询采样过程详情
+export const getSamplingProcess = async (id: number) => {
+ return await request.get({ url: `/qms/sampling-process/get?id=` + id })
+}
+
+// 新增采样过程
+export const createSamplingProcess = async (data: SamplingProcessVO) => {
+ return await request.post({ url: `/qms/sampling-process/create`, data })
+}
+
+// 修改采样过程
+export const updateSamplingProcess = async (data: SamplingProcessVO) => {
+ return await request.put({ url: `/qms/sampling-process/update`, data })
+}
+
+// 删除采样过程
+export const deleteSamplingProcess = async (id: number) => {
+ return await request.delete({ url: `/qms/sampling-process/delete?id=` + id })
+}
+
+// 导出采样过程 Excel
+export const exportSamplingProcess = async (params) => {
+ return await request.download({ url: `/qms/sampling-process/export-excel`, params })
+}
+
+// 下载用户导入模板
+export const importTemplate = () => {
+ return request.download({ url: '/qms/sampling-process/get-import-template' })
+}
\ No newline at end of file
diff --git a/src/utils/dict.ts b/src/utils/dict.ts
index e40305070..5490e63a4 100644
--- a/src/utils/dict.ts
+++ b/src/utils/dict.ts
@@ -279,4 +279,8 @@ export enum DICT_TYPE {
PLAN_PRODUCTION_TYPE = "plan_production_type", // 生产计划类型
DELIVER_TYPE="deliver_type",//发货类型
BILL_TYPE="bill_type", // 发票类型
+
+ //========== QMS ==========
+ SAMPLING_TYPE = "sampling_type", // 取样类型
+ EVALUATION_MODE = "evaluation_mode", // 评估模式
}
diff --git a/src/views/qms/samplingProcess/index.vue b/src/views/qms/samplingProcess/index.vue
new file mode 100644
index 000000000..0ac3084b8
--- /dev/null
+++ b/src/views/qms/samplingProcess/index.vue
@@ -0,0 +1,244 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.code }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/qms/samplingProcess/samplingProcess.data.ts b/src/views/qms/samplingProcess/samplingProcess.data.ts
new file mode 100644
index 000000000..a805e2a01
--- /dev/null
+++ b/src/views/qms/samplingProcess/samplingProcess.data.ts
@@ -0,0 +1,84 @@
+import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
+import { dateFormatter } from '@/utils/formatTime'
+
+// 表单校验
+export const SamplingProcessRules = reactive({
+ code: [required],
+ sampleType: [required],
+ evaluationMode: [required],
+ available: [required],
+})
+
+export const SamplingProcess = useCrudSchemas(reactive([
+ {
+ label: 'id',
+ field: 'id',
+ sort: 'custom',
+ isTable: false,
+ isForm: false,
+ },
+ {
+ label: '编码',
+ field: 'code',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '描述',
+ field: 'describe',
+ sort: 'custom',
+ isSearch: true,
+ },
+ {
+ label: '取样类型',
+ field: 'sampleType',
+ sort: 'custom',
+ dictType: DICT_TYPE.SAMPLING_TYPE,
+ dictClass: 'string', // 默认都是字符串类型其他暂不考虑
+ isSearch: true,
+ form: {
+ component: 'SelectV2'
+ },
+ },
+ {
+ label: '评估模式',
+ field: 'evaluationMode',
+ sort: 'custom',
+ dictType: DICT_TYPE.EVALUATION_MODE,
+ dictClass: 'string', // 默认都是字符串类型其他暂不考虑
+ form: {
+ component: 'SelectV2'
+ },
+ },
+ {
+ label: '样品量',
+ field: 'sampleSize',
+ sort: 'custom',
+ },
+ {
+ label: '采样方案编码',
+ field: 'sampleProgCode',
+ sort: 'custom',
+ },
+ {
+ label: '是否可用',
+ field: 'available',
+ sort: 'custom',
+ },
+ {
+ label: '创建时间',
+ field: 'createTime',
+ sort: 'custom',
+ formatter: dateFormatter,
+ isForm: false,
+ },
+ {
+ label: '操作',
+ field: 'action',
+ isForm: false,
+ table: {
+ width: 150,
+ fixed: 'right'
+ }
+ }
+]))