This commit is contained in:
zds
2022-07-06 16:14:06 +08:00
parent ecde2f60ec
commit ba122d2e4d
8 changed files with 155 additions and 21 deletions

View File

@@ -7,6 +7,13 @@ export function cancel(data) {
data
})
}
export function audit(data) {
return request({
url: 'api/formula/audit',
method: 'post',
data
})
}
export function submit(data) {
return request({
url: 'api/formula/submit',
@@ -49,4 +56,4 @@ export function print(data) {
data
})
}
export default { cancel, getform, submit, getView, pointCard, preview, print }
export default { audit, cancel, getform, submit, getView, pointCard, preview, print }