1、调整配载、总单
2、新增收付款模块
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import request from '@/axios';
|
||||
|
||||
const baseUrl = '/blade-transport/receipt-claim-record';
|
||||
|
||||
export const getList = (current, size, params) =>
|
||||
request({ url: `${baseUrl}/list`, method: 'get', params: { current, size, ...params } });
|
||||
export const getDetail = id => request({ url: `${baseUrl}/detail`, method: 'get', params: { id } });
|
||||
export const updateAttachments = data =>
|
||||
request({ url: `${baseUrl}/attachments`, method: 'post', data });
|
||||
export const voidClaim = id => request({ url: `${baseUrl}/void`, method: 'post', params: { id } });
|
||||
|
||||
export const claimStatusOptions = [
|
||||
{ label: '已认领', value: 'claimed' },
|
||||
{ label: '已作废', value: 'voided' },
|
||||
];
|
||||
|
||||
export const kingdeeBillStatusOptions = [
|
||||
{ label: '未生成', value: 'none' },
|
||||
{ label: '审核通过', value: 'approved' },
|
||||
{ label: '处理失败', value: 'failed' },
|
||||
];
|
||||
Reference in New Issue
Block a user