变更预识别接口完成

This commit is contained in:
2026-09-02 15:03:50 +08:00
parent 09dbd8ba2d
commit 4f47ac0318
6 changed files with 813 additions and 620 deletions
+11 -1
View File
@@ -1,5 +1,15 @@
import { request } from '../request';
/** 查询变更未保存数据
*
*/
export function queryUnsavedApi() {
return request({
url: `/api/changes/unsaved`,
method: 'get',
});
}
/** 变更预识别查询
*
*/
@@ -24,7 +34,7 @@ export function precheckSaveApi(params: {
}) {
return request({
url: '/api/changes/precheck',
method: 'post',
method: 'put',
data: params
});
}