rebuild all
This commit is contained in:
@@ -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 }
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user