xinelu-applet-ui/api/pagesB/mysigning/index.js

12 lines
246 B
JavaScript
Raw Normal View History

2023-10-12 15:54:10 +08:00
import request from "@/api/request.js"
//解约
export function rescindapplysave(data, region) {
return request({
url: `/applet/rescind/apply/save`,
method: 'post',
data: data,
header: {
2023-10-16 10:08:17 +08:00
region: uni.getStorageSync('region'),
2023-10-12 15:54:10 +08:00
}
})
}