调整基础数据、车船务、项目、合同

This commit is contained in:
2026-09-03 22:40:11 +08:00
parent 024e77801e
commit c63c7c3e33
43 changed files with 821 additions and 239 deletions
+3 -3
View File
@@ -59,14 +59,14 @@ export const withdraw = id =>
params: { id },
});
export const startChange = (id, reason) =>
export const startChange = (id, changeContent, changeReason = changeContent) =>
request({
url: `${baseUrl}/start-change`,
method: 'post',
params: {
id,
changeContent: reason,
changeReason: reason,
changeContent: changeContent || '',
changeReason,
},
});