rebuild all

This commit is contained in:
吴红兵
2026-03-02 10:06:48 +08:00
parent c8aaeee298
commit 4167a2a94d
12 changed files with 836 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ export function getPage(params?: any) {
* 通过id查询
* @param id ID
*/
export function getObj(id: number) {
export function getObj(id: string | number) {
return request({
url: '/purchase/purchasingapply/' + id,
method: 'get'
@@ -123,7 +123,7 @@ export function saveImplementType(id: number | string, implementType: string) {
return request({
url: '/purchase/purchasingapply/save-implement-type',
method: 'post',
data: { id: Number(id), implementType }
data: { id: id, implementType }
});
}