|
@@ -180,7 +180,6 @@ const search = ref({
|
|
|
});
|
|
|
const downLoad = async (url) => {
|
|
|
let resUrl = url;
|
|
|
- console.log(import.meta.env.VITE_APP_API_URL, "res");
|
|
|
await downloadFile(resUrl, "附件");
|
|
|
};
|
|
|
const addCheck = () => {
|
|
@@ -215,6 +214,7 @@ const addCheckAsync = async () => {
|
|
|
operator: checkName.value,
|
|
|
processId: processStore.scanInfo.id,
|
|
|
fileName: fileName.value,
|
|
|
+ operationName: processStore.scanInfo.operationName,
|
|
|
});
|
|
|
if (code == "200") {
|
|
|
ElMessage.success("操作成功!");
|
|
@@ -241,6 +241,7 @@ const editCheckAsync = async () => {
|
|
|
operator: checkName.value,
|
|
|
processId: processStore.scanInfo.id,
|
|
|
fileName: fileName.value,
|
|
|
+ operationName: processStore.scanInfo.operationName,
|
|
|
});
|
|
|
if (code == "200") {
|
|
|
ElMessage.success("操作成功!");
|
|
@@ -276,6 +277,7 @@ const getPagination = async () => {
|
|
|
operationId: processStore.odersData.operationId,
|
|
|
workOrderCode: processStore.odersData.workOrderCode,
|
|
|
seqNo: processStore.useSeqNo,
|
|
|
+ operationName: processStore.scanInfo.operationName,
|
|
|
});
|
|
|
search.value.total = data.totalCount;
|
|
|
dataList.value = data.records;
|