|
@@ -14,7 +14,7 @@ export async function batchSave(data) {
|
|
|
|
|
|
|
|
// pda投料保存缓存
|
|
// pda投料保存缓存
|
|
|
export async function feedSaveCache(data) {
|
|
export async function feedSaveCache(data) {
|
|
|
- const res = await request.post(`/pda/mes/feed/saveCache`, data);
|
|
|
|
|
|
|
+ const res = await request.post(`/mes/feed/saveCache`, data);
|
|
|
if (res.data.code == 0) {
|
|
if (res.data.code == 0) {
|
|
|
return res.data.data;
|
|
return res.data.data;
|
|
|
}
|
|
}
|
|
@@ -24,7 +24,7 @@ export async function batchSave(data) {
|
|
|
|
|
|
|
|
// pda投料查缓存
|
|
// pda投料查缓存
|
|
|
export async function feedGetCache(data) {
|
|
export async function feedGetCache(data) {
|
|
|
- const res = await request.post(`/pda/mes/feed/getCache`, data);
|
|
|
|
|
|
|
+ const res = await request.post(`/mes/feed/getCache`, data);
|
|
|
if (res.data.code == 0) {
|
|
if (res.data.code == 0) {
|
|
|
return res.data.data;
|
|
return res.data.data;
|
|
|
}
|
|
}
|
|
@@ -33,7 +33,7 @@ export async function batchSave(data) {
|
|
|
|
|
|
|
|
// 清空缓存
|
|
// 清空缓存
|
|
|
export async function removeCache(data) {
|
|
export async function removeCache(data) {
|
|
|
- const res = await request.post(`/pda/mes/workreport/removeCache`, data);
|
|
|
|
|
|
|
+ const res = await request.post(`/mes/workreport/removeCache`, data);
|
|
|
if (res.data.code == 0) {
|
|
if (res.data.code == 0) {
|
|
|
return res.data.data;
|
|
return res.data.data;
|
|
|
}
|
|
}
|