diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/views/business/schedule/interchange/interchangeEdit.vue b/src/views/business/schedule/interchange/interchangeEdit.vue index be7f8bd..7aea767 100644 --- a/src/views/business/schedule/interchange/interchangeEdit.vue +++ b/src/views/business/schedule/interchange/interchangeEdit.vue @@ -2,18 +2,17 @@ + + + + + + + + 关闭 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 无 + + + {{ dataForm.minioFileName === '' ? '上传' : '更换附件' }} + + + + + + + + + + + + 从样品库中添加 + + + 增加行 + + + 删除行 + + + + + + + + + {{ scope.row[item.value] }} + + + + + + + + + + + + + + diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/views/business/schedule/interchange/interchangeEdit.vue b/src/views/business/schedule/interchange/interchangeEdit.vue index be7f8bd..7aea767 100644 --- a/src/views/business/schedule/interchange/interchangeEdit.vue +++ b/src/views/business/schedule/interchange/interchangeEdit.vue @@ -2,18 +2,17 @@ + + + + + + + + 关闭 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 无 + + + {{ dataForm.minioFileName === '' ? '上传' : '更换附件' }} + + + + + + + + + + + + 从样品库中添加 + + + 增加行 + + + 删除行 + + + + + + + + + {{ scope.row[item.value] }} + + + + + + + + + + + + + + diff --git a/src/views/business/schedule/order/orderList_interface.ts b/src/views/business/schedule/order/orderList_interface.ts index 1d2c1bd..8749da7 100644 --- a/src/views/business/schedule/order/orderList_interface.ts +++ b/src/views/business/schedule/order/orderList_interface.ts @@ -25,3 +25,35 @@ createTime: string // 创建时间 remark: string // 备注 } + +// 详情表单 +export interface IOrderDetail { + id?: string + orderCode: string // 委托书编号 + deliverer: string // 送检人 + delivererTel: string // 送样人联系方式 + orderTime: string // 委托日期 + planDeliverTime: string // 预计送达时间 + requireOverTime: string // 要求检完时间 + customerNo: string // 委托方代码 + customerName: string // 委托方名称 + phone: string // 委托方电话 + companyAddress: string // 委托方地址 + remark: string // 备注 + minioFileName: string // 附件 +} + +// 样品清单 +export interface ISampleList { + id?: string + sampleNo: string // 样品编号 + sampleName: string // 样品名称 + sampleModel: string // 样品型号 + manufacturingNo: string // 出厂编号 + powerVoltage: string // 电源电压 + appendixState: string // 附件说明 + mesureContent: string // 检定项目 + remark: string // 备注 + isEdit?: boolean // 是否可编辑 +} + diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/views/business/schedule/interchange/interchangeEdit.vue b/src/views/business/schedule/interchange/interchangeEdit.vue index be7f8bd..7aea767 100644 --- a/src/views/business/schedule/interchange/interchangeEdit.vue +++ b/src/views/business/schedule/interchange/interchangeEdit.vue @@ -2,18 +2,17 @@ + + + + + + + + 关闭 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 无 + + + {{ dataForm.minioFileName === '' ? '上传' : '更换附件' }} + + + + + + + + + + + + 从样品库中添加 + + + 增加行 + + + 删除行 + + + + + + + + + {{ scope.row[item.value] }} + + + + + + + + + + + + + + diff --git a/src/views/business/schedule/order/orderList_interface.ts b/src/views/business/schedule/order/orderList_interface.ts index 1d2c1bd..8749da7 100644 --- a/src/views/business/schedule/order/orderList_interface.ts +++ b/src/views/business/schedule/order/orderList_interface.ts @@ -25,3 +25,35 @@ createTime: string // 创建时间 remark: string // 备注 } + +// 详情表单 +export interface IOrderDetail { + id?: string + orderCode: string // 委托书编号 + deliverer: string // 送检人 + delivererTel: string // 送样人联系方式 + orderTime: string // 委托日期 + planDeliverTime: string // 预计送达时间 + requireOverTime: string // 要求检完时间 + customerNo: string // 委托方代码 + customerName: string // 委托方名称 + phone: string // 委托方电话 + companyAddress: string // 委托方地址 + remark: string // 备注 + minioFileName: string // 附件 +} + +// 样品清单 +export interface ISampleList { + id?: string + sampleNo: string // 样品编号 + sampleName: string // 样品名称 + sampleModel: string // 样品型号 + manufacturingNo: string // 出厂编号 + powerVoltage: string // 电源电压 + appendixState: string // 附件说明 + mesureContent: string // 检定项目 + remark: string // 备注 + isEdit?: boolean // 是否可编辑 +} + diff --git a/src/views/business/schedule/order/selectSample.vue b/src/views/business/schedule/order/selectSample.vue new file mode 100644 index 0000000..d9e39fc --- /dev/null +++ b/src/views/business/schedule/order/selectSample.vue @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + 确定 + + + 取消 + + + + + diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/views/business/schedule/interchange/interchangeEdit.vue b/src/views/business/schedule/interchange/interchangeEdit.vue index be7f8bd..7aea767 100644 --- a/src/views/business/schedule/interchange/interchangeEdit.vue +++ b/src/views/business/schedule/interchange/interchangeEdit.vue @@ -2,18 +2,17 @@ + + + + + + + + 关闭 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 无 + + + {{ dataForm.minioFileName === '' ? '上传' : '更换附件' }} + + + + + + + + + + + + 从样品库中添加 + + + 增加行 + + + 删除行 + + + + + + + + + {{ scope.row[item.value] }} + + + + + + + + + + + + + + diff --git a/src/views/business/schedule/order/orderList_interface.ts b/src/views/business/schedule/order/orderList_interface.ts index 1d2c1bd..8749da7 100644 --- a/src/views/business/schedule/order/orderList_interface.ts +++ b/src/views/business/schedule/order/orderList_interface.ts @@ -25,3 +25,35 @@ createTime: string // 创建时间 remark: string // 备注 } + +// 详情表单 +export interface IOrderDetail { + id?: string + orderCode: string // 委托书编号 + deliverer: string // 送检人 + delivererTel: string // 送样人联系方式 + orderTime: string // 委托日期 + planDeliverTime: string // 预计送达时间 + requireOverTime: string // 要求检完时间 + customerNo: string // 委托方代码 + customerName: string // 委托方名称 + phone: string // 委托方电话 + companyAddress: string // 委托方地址 + remark: string // 备注 + minioFileName: string // 附件 +} + +// 样品清单 +export interface ISampleList { + id?: string + sampleNo: string // 样品编号 + sampleName: string // 样品名称 + sampleModel: string // 样品型号 + manufacturingNo: string // 出厂编号 + powerVoltage: string // 电源电压 + appendixState: string // 附件说明 + mesureContent: string // 检定项目 + remark: string // 备注 + isEdit?: boolean // 是否可编辑 +} + diff --git a/src/views/business/schedule/order/selectSample.vue b/src/views/business/schedule/order/selectSample.vue new file mode 100644 index 0000000..d9e39fc --- /dev/null +++ b/src/views/business/schedule/order/selectSample.vue @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + 确定 + + + 取消 + + + + + diff --git a/src/views/customer/sample/list/edit.vue b/src/views/customer/sample/list/edit.vue index 153b66e..8e58690 100644 --- a/src/views/customer/sample/list/edit.vue +++ b/src/views/customer/sample/list/edit.vue @@ -6,7 +6,7 @@ import { ref } from 'vue' import { Calendar, Search } from '@element-plus/icons-vue' import type { ISampleEdit, Menu, SimpleCertification, SimpleMeasureRecord } from './sample_list_interface' -import sampleDialog from './sampleDialog.vue' +import selectCustomer from './selectCustomer.vue' import showPhoto from '@/views/system/tool/showPhoto.vue' import { SCHEDULE } from '@/utils/scheduleDict' import TemplateTable from '@/views/customer/customerInfo/templateTable.vue' @@ -702,7 +702,7 @@ - + diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/views/business/schedule/interchange/interchangeEdit.vue b/src/views/business/schedule/interchange/interchangeEdit.vue index be7f8bd..7aea767 100644 --- a/src/views/business/schedule/interchange/interchangeEdit.vue +++ b/src/views/business/schedule/interchange/interchangeEdit.vue @@ -2,18 +2,17 @@ + + + + + + + + 关闭 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 无 + + + {{ dataForm.minioFileName === '' ? '上传' : '更换附件' }} + + + + + + + + + + + + 从样品库中添加 + + + 增加行 + + + 删除行 + + + + + + + + + {{ scope.row[item.value] }} + + + + + + + + + + + + + + diff --git a/src/views/business/schedule/order/orderList_interface.ts b/src/views/business/schedule/order/orderList_interface.ts index 1d2c1bd..8749da7 100644 --- a/src/views/business/schedule/order/orderList_interface.ts +++ b/src/views/business/schedule/order/orderList_interface.ts @@ -25,3 +25,35 @@ createTime: string // 创建时间 remark: string // 备注 } + +// 详情表单 +export interface IOrderDetail { + id?: string + orderCode: string // 委托书编号 + deliverer: string // 送检人 + delivererTel: string // 送样人联系方式 + orderTime: string // 委托日期 + planDeliverTime: string // 预计送达时间 + requireOverTime: string // 要求检完时间 + customerNo: string // 委托方代码 + customerName: string // 委托方名称 + phone: string // 委托方电话 + companyAddress: string // 委托方地址 + remark: string // 备注 + minioFileName: string // 附件 +} + +// 样品清单 +export interface ISampleList { + id?: string + sampleNo: string // 样品编号 + sampleName: string // 样品名称 + sampleModel: string // 样品型号 + manufacturingNo: string // 出厂编号 + powerVoltage: string // 电源电压 + appendixState: string // 附件说明 + mesureContent: string // 检定项目 + remark: string // 备注 + isEdit?: boolean // 是否可编辑 +} + diff --git a/src/views/business/schedule/order/selectSample.vue b/src/views/business/schedule/order/selectSample.vue new file mode 100644 index 0000000..d9e39fc --- /dev/null +++ b/src/views/business/schedule/order/selectSample.vue @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + 确定 + + + 取消 + + + + + diff --git a/src/views/customer/sample/list/edit.vue b/src/views/customer/sample/list/edit.vue index 153b66e..8e58690 100644 --- a/src/views/customer/sample/list/edit.vue +++ b/src/views/customer/sample/list/edit.vue @@ -6,7 +6,7 @@ import { ref } from 'vue' import { Calendar, Search } from '@element-plus/icons-vue' import type { ISampleEdit, Menu, SimpleCertification, SimpleMeasureRecord } from './sample_list_interface' -import sampleDialog from './sampleDialog.vue' +import selectCustomer from './selectCustomer.vue' import showPhoto from '@/views/system/tool/showPhoto.vue' import { SCHEDULE } from '@/utils/scheduleDict' import TemplateTable from '@/views/customer/customerInfo/templateTable.vue' @@ -702,7 +702,7 @@ - + diff --git a/src/views/customer/sample/list/list.vue b/src/views/customer/sample/list/list.vue index d4a4c0f..89a05a6 100644 --- a/src/views/customer/sample/list/list.vue +++ b/src/views/customer/sample/list/list.vue @@ -17,8 +17,8 @@ sampleModel: '', // 型号 customerNo: '', // 委托方代码 customerName: '', // 委托方名称 - startTime: '1', // 检定开始时间 - endTime: '1', // 检定结束时间 + startTime: '', // 检定开始时间 + endTime: '', // 检定结束时间 offset: 1, limit: 20, }) diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/views/business/schedule/interchange/interchangeEdit.vue b/src/views/business/schedule/interchange/interchangeEdit.vue index be7f8bd..7aea767 100644 --- a/src/views/business/schedule/interchange/interchangeEdit.vue +++ b/src/views/business/schedule/interchange/interchangeEdit.vue @@ -2,18 +2,17 @@ + + + + + + + + 关闭 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 无 + + + {{ dataForm.minioFileName === '' ? '上传' : '更换附件' }} + + + + + + + + + + + + 从样品库中添加 + + + 增加行 + + + 删除行 + + + + + + + + + {{ scope.row[item.value] }} + + + + + + + + + + + + + + diff --git a/src/views/business/schedule/order/orderList_interface.ts b/src/views/business/schedule/order/orderList_interface.ts index 1d2c1bd..8749da7 100644 --- a/src/views/business/schedule/order/orderList_interface.ts +++ b/src/views/business/schedule/order/orderList_interface.ts @@ -25,3 +25,35 @@ createTime: string // 创建时间 remark: string // 备注 } + +// 详情表单 +export interface IOrderDetail { + id?: string + orderCode: string // 委托书编号 + deliverer: string // 送检人 + delivererTel: string // 送样人联系方式 + orderTime: string // 委托日期 + planDeliverTime: string // 预计送达时间 + requireOverTime: string // 要求检完时间 + customerNo: string // 委托方代码 + customerName: string // 委托方名称 + phone: string // 委托方电话 + companyAddress: string // 委托方地址 + remark: string // 备注 + minioFileName: string // 附件 +} + +// 样品清单 +export interface ISampleList { + id?: string + sampleNo: string // 样品编号 + sampleName: string // 样品名称 + sampleModel: string // 样品型号 + manufacturingNo: string // 出厂编号 + powerVoltage: string // 电源电压 + appendixState: string // 附件说明 + mesureContent: string // 检定项目 + remark: string // 备注 + isEdit?: boolean // 是否可编辑 +} + diff --git a/src/views/business/schedule/order/selectSample.vue b/src/views/business/schedule/order/selectSample.vue new file mode 100644 index 0000000..d9e39fc --- /dev/null +++ b/src/views/business/schedule/order/selectSample.vue @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + 确定 + + + 取消 + + + + + diff --git a/src/views/customer/sample/list/edit.vue b/src/views/customer/sample/list/edit.vue index 153b66e..8e58690 100644 --- a/src/views/customer/sample/list/edit.vue +++ b/src/views/customer/sample/list/edit.vue @@ -6,7 +6,7 @@ import { ref } from 'vue' import { Calendar, Search } from '@element-plus/icons-vue' import type { ISampleEdit, Menu, SimpleCertification, SimpleMeasureRecord } from './sample_list_interface' -import sampleDialog from './sampleDialog.vue' +import selectCustomer from './selectCustomer.vue' import showPhoto from '@/views/system/tool/showPhoto.vue' import { SCHEDULE } from '@/utils/scheduleDict' import TemplateTable from '@/views/customer/customerInfo/templateTable.vue' @@ -702,7 +702,7 @@ - + diff --git a/src/views/customer/sample/list/list.vue b/src/views/customer/sample/list/list.vue index d4a4c0f..89a05a6 100644 --- a/src/views/customer/sample/list/list.vue +++ b/src/views/customer/sample/list/list.vue @@ -17,8 +17,8 @@ sampleModel: '', // 型号 customerNo: '', // 委托方代码 customerName: '', // 委托方名称 - startTime: '1', // 检定开始时间 - endTime: '1', // 检定结束时间 + startTime: '', // 检定开始时间 + endTime: '', // 检定结束时间 offset: 1, limit: 20, }) diff --git a/src/views/customer/sample/list/sampleDialog.vue b/src/views/customer/sample/list/sampleDialog.vue deleted file mode 100644 index a5a371b..0000000 --- a/src/views/customer/sample/list/sampleDialog.vue +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - 确定 - - - 取消 - - - - - diff --git a/src/components/NormalTable/index.vue b/src/components/NormalTable/index.vue index ead208d..cb0fbc2 100644 --- a/src/components/NormalTable/index.vue +++ b/src/components/NormalTable/index.vue @@ -187,7 +187,7 @@ > - + {{ scope.row[column.value] }} {{ column.filter(scope.row) }} diff --git a/src/components/NormalTable/table_interface.ts b/src/components/NormalTable/table_interface.ts index 1031936..e080e57 100644 --- a/src/components/NormalTable/table_interface.ts +++ b/src/components/NormalTable/table_interface.ts @@ -7,4 +7,5 @@ showOverflow?: boolean // 是否溢出为省略号 filter?: Function // 字段过滤器 styleFilter?: Function // 文字过滤器 + fixed?: boolean // 固定列 } diff --git a/src/views/business/schedule/interchange/interchangeEdit.vue b/src/views/business/schedule/interchange/interchangeEdit.vue index be7f8bd..7aea767 100644 --- a/src/views/business/schedule/interchange/interchangeEdit.vue +++ b/src/views/business/schedule/interchange/interchangeEdit.vue @@ -2,18 +2,17 @@ + + + + + + + + 关闭 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 无 + + + {{ dataForm.minioFileName === '' ? '上传' : '更换附件' }} + + + + + + + + + + + + 从样品库中添加 + + + 增加行 + + + 删除行 + + + + + + + + + {{ scope.row[item.value] }} + + + + + + + + + + + + + + diff --git a/src/views/business/schedule/order/orderList_interface.ts b/src/views/business/schedule/order/orderList_interface.ts index 1d2c1bd..8749da7 100644 --- a/src/views/business/schedule/order/orderList_interface.ts +++ b/src/views/business/schedule/order/orderList_interface.ts @@ -25,3 +25,35 @@ createTime: string // 创建时间 remark: string // 备注 } + +// 详情表单 +export interface IOrderDetail { + id?: string + orderCode: string // 委托书编号 + deliverer: string // 送检人 + delivererTel: string // 送样人联系方式 + orderTime: string // 委托日期 + planDeliverTime: string // 预计送达时间 + requireOverTime: string // 要求检完时间 + customerNo: string // 委托方代码 + customerName: string // 委托方名称 + phone: string // 委托方电话 + companyAddress: string // 委托方地址 + remark: string // 备注 + minioFileName: string // 附件 +} + +// 样品清单 +export interface ISampleList { + id?: string + sampleNo: string // 样品编号 + sampleName: string // 样品名称 + sampleModel: string // 样品型号 + manufacturingNo: string // 出厂编号 + powerVoltage: string // 电源电压 + appendixState: string // 附件说明 + mesureContent: string // 检定项目 + remark: string // 备注 + isEdit?: boolean // 是否可编辑 +} + diff --git a/src/views/business/schedule/order/selectSample.vue b/src/views/business/schedule/order/selectSample.vue new file mode 100644 index 0000000..d9e39fc --- /dev/null +++ b/src/views/business/schedule/order/selectSample.vue @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + 确定 + + + 取消 + + + + + diff --git a/src/views/customer/sample/list/edit.vue b/src/views/customer/sample/list/edit.vue index 153b66e..8e58690 100644 --- a/src/views/customer/sample/list/edit.vue +++ b/src/views/customer/sample/list/edit.vue @@ -6,7 +6,7 @@ import { ref } from 'vue' import { Calendar, Search } from '@element-plus/icons-vue' import type { ISampleEdit, Menu, SimpleCertification, SimpleMeasureRecord } from './sample_list_interface' -import sampleDialog from './sampleDialog.vue' +import selectCustomer from './selectCustomer.vue' import showPhoto from '@/views/system/tool/showPhoto.vue' import { SCHEDULE } from '@/utils/scheduleDict' import TemplateTable from '@/views/customer/customerInfo/templateTable.vue' @@ -702,7 +702,7 @@ - + diff --git a/src/views/customer/sample/list/list.vue b/src/views/customer/sample/list/list.vue index d4a4c0f..89a05a6 100644 --- a/src/views/customer/sample/list/list.vue +++ b/src/views/customer/sample/list/list.vue @@ -17,8 +17,8 @@ sampleModel: '', // 型号 customerNo: '', // 委托方代码 customerName: '', // 委托方名称 - startTime: '1', // 检定开始时间 - endTime: '1', // 检定结束时间 + startTime: '', // 检定开始时间 + endTime: '', // 检定结束时间 offset: 1, limit: 20, }) diff --git a/src/views/customer/sample/list/sampleDialog.vue b/src/views/customer/sample/list/sampleDialog.vue deleted file mode 100644 index a5a371b..0000000 --- a/src/views/customer/sample/list/sampleDialog.vue +++ /dev/null @@ -1,227 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - 确定 - - - 取消 - - - - - diff --git a/src/views/customer/sample/list/selectCustomer.vue b/src/views/customer/sample/list/selectCustomer.vue new file mode 100644 index 0000000..570b263 --- /dev/null +++ b/src/views/customer/sample/list/selectCustomer.vue @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + 确定 + + + 取消 + + + + +