37 lines
745 B
JavaScript
37 lines
745 B
JavaScript
import { http } from '@/utils/http'
|
|
|
|
// 获取签名
|
|
export const getSign = (data) => {
|
|
return http({
|
|
method: 'GET',
|
|
url: '/material/archives/getSign',
|
|
data,
|
|
})
|
|
}
|
|
|
|
// 更新签名
|
|
export const updateSign = (data) => {
|
|
return http({
|
|
method: 'POST',
|
|
url: '/material/archives/updateSign',
|
|
data,
|
|
})
|
|
}
|
|
|
|
// 签名-领料
|
|
export const updateLeaseApplyInfoSign = (data) => {
|
|
return http({
|
|
method: 'POST',
|
|
url: '/material/lease_apply_info/updateLeaseApplyInfoSign',
|
|
data,
|
|
})
|
|
}
|
|
|
|
// 签名-退料
|
|
export const updateSignById = (data) => {
|
|
return http({
|
|
method: 'POST',
|
|
url: '/material/back_apply_info/updateSignById',
|
|
data,
|
|
})
|
|
} |