This commit is contained in:
zc
2026-04-13 11:02:00 +08:00
parent fce1099b38
commit 3c03907e69
3 changed files with 5 additions and 152 deletions

View File

@@ -126,7 +126,6 @@ const columns: ColumnItem[] = reactive([
type: 'image',
savePath: 'material/',
span: 24,
required: true,
},
])

View File

@@ -803,7 +803,7 @@ const handleNext = async () => {
workOrderResp.value.totalCount = res.data?.totalCount || ''
workOrderResp.value.materialName = formData.materialName || ''
workOrderResp.value.encoding = formData.encoding || ''
// 格式化生产日期为 yyyyMMddHHmm 格式
const now = new Date()
const formattedDate = now.getFullYear().toString() +
@@ -871,10 +871,10 @@ const handleNext = async () => {
}
// 调用后端接口获取比对结果 // todo
// const res = await vmSend(materialCode);
const res = {
data: 'success',
};
const res = await vmSend(materialCode);
// const res = {
// data: 'success',
// };
if (res.data) {
compareMatchResult.value = res.data
if (res.data === 'success') {