123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- import http from '@/http/api.js'
- //查询明细
- export function typeSave(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/detail',
- method: 'GET',
- data
- })
- }
- // 删除附件
- export function removeFile(data) {
- return http.request({
- url: '/blade-purchase-sales/orderfiles/remove',
- method: 'POST',
- params:data
- })
- }
- // 删除明细
- export function removeItem(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/removeItem',
- method: 'POST',
- params:data
- })
- }
- // 删除单据
- export function removeId(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/remove',
- method: 'POST',
- params:data
- })
- }
- // 保存接口
- export function submitApp(data) {
- return http.request({
- url: '/blade-purchase-sales/dealerOrder/submitApp',
- method: 'POST',
- data
- })
- }
- // 确认收款
- export function collectPayment(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/collectPayment',
- method: 'POST',
- data
- })
- }
- // 复制新增
- export function copyOrder(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/copyOrder',
- method: 'POST',
- data
- })
- }
- // 提交提醒
- export function remind(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/remind',
- method: 'POST',
- data
- })
- }
- // 确认提交
- export function confirm(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/confirm',
- method: 'POST',
- data
- })
- }
- // 撤销提交
- export function revoke(data) {
- return http.request({
- url: '/blade-purchase-sales/appParts/revoke',
- method: 'POST',
- data
- })
- }
|