diff --git a/src/api/detection/records/index.ts b/src/api/detection/records/index.ts
new file mode 100644
index 0000000..1d73937
--- /dev/null
+++ b/src/api/detection/records/index.ts
@@ -0,0 +1,51 @@
+import request from '@/config/axios'
+
+export interface RecordsVO {
+ id: number
+ templateId: number
+ result: string
+ remark: string
+ version: string
+ saveStatus: string
+}
+
+// 查询检测记录数据主列表
+export const getRecordsPage = async (params) => {
+ if (params.isSearch) {
+ delete params.isSearch
+ const data = {...params}
+ return await request.post({ url: '/detection/records/senior', data })
+ } else {
+ return await request.get({ url: `/detection/records/page`, params })
+ }
+}
+
+// 查询检测记录数据主详情
+export const getRecords = async (id: number) => {
+ return await request.get({ url: `/detection/records/get?id=` + id })
+}
+
+// 新增检测记录数据主
+export const createRecords = async (data: RecordsVO) => {
+ return await request.post({ url: `/detection/records/create`, data })
+}
+
+// 修改检测记录数据主
+export const updateRecords = async (data: RecordsVO) => {
+ return await request.put({ url: `/detection/records/update`, data })
+}
+
+// 删除检测记录数据主
+export const deleteRecords = async (id: number) => {
+ return await request.delete({ url: `/detection/records/delete?id=` + id })
+}
+
+// 导出检测记录数据主 Excel
+export const exportRecords = async (params) => {
+ return await request.download({ url: `/detection/records/export-excel`, params })
+}
+
+// 下载导入模板
+export const importTemplate = () => {
+ return request.download({ url: '/detection/records/get-import-template' })
+}
\ No newline at end of file
diff --git a/src/views/detection/records/index.vue b/src/views/detection/records/index.vue
new file mode 100644
index 0000000..c4774d5
--- /dev/null
+++ b/src/views/detection/records/index.vue
@@ -0,0 +1,225 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.code }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/detection/records/records.data.ts b/src/views/detection/records/records.data.ts
new file mode 100644
index 0000000..fb441de
--- /dev/null
+++ b/src/views/detection/records/records.data.ts
@@ -0,0 +1,79 @@
+import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
+import { dateFormatter } from '@/utils/formatTime'
+import { stubFalse } from 'lodash-es'
+
+// 表单校验
+export const RecordsRules = reactive({
+ result: [required],
+})
+
+export const Records = useCrudSchemas(reactive([
+ // {
+ // label: 'id',
+ // field: 'id',
+ // sort: 'custom',
+ // isForm: false,
+ // },
+ {
+ label: '模版id',
+ field: 'templateId',
+ sort: 'custom',
+ isSearch: false,
+ form: {
+ component: 'InputNumber',
+ value: 0
+ },
+ },
+ {
+ label: '检测结果',
+ field: 'result',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '备注',
+ field: 'remark',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '版本号',
+ field: 'version',
+ sort: 'custom',
+ isSearch: false,
+ },
+ {
+ label: '保存状态',
+ field: 'saveStatus',
+ sort: 'custom',
+ isSearch: true,
+ form: {
+ component: 'Radio'
+ },
+ },
+ {
+ label: '创建时间',
+ field: 'createTime',
+ sort: 'custom',
+ formatter: dateFormatter,
+ isSearch: true,
+ search: {
+ component: 'DatePicker',
+ componentProps: {
+ valueFormat: 'YYYY-MM-DD HH:mm:ss',
+ type: 'daterange',
+ defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')]
+ }
+ },
+ isForm: false,
+ },
+ {
+ label: '操作',
+ field: 'action',
+ isForm: false,
+ table: {
+ width: 150,
+ fixed: 'right'
+ }
+ }
+]))