用印申请,确认用印接口联调

This commit is contained in:
gyj
2024-01-16 17:21:13 +08:00
parent 22cfffa3e8
commit f658034734
3 changed files with 45 additions and 9 deletions
+17 -1
View File
@@ -71,4 +71,20 @@ export function selectPaymentDetail(data) {
method: "post",
data: data,
});
}
}
//用印申请
export function sealApply(data) {
return request({
url: "/mssignSeal/sealApply",
method: "post",
data: data,
});
}
// 用印确认
export function selectSealUrl(data) {
return request({
url: "/mssignSeal/selectSealUrl",
method: "post",
data: data,
});
}