1、新增结算模块

2、调整业务模块
3、调整客商模块
This commit is contained in:
2026-08-20 06:33:01 +08:00
parent 4199255186
commit fd5b1484e6
59 changed files with 11745 additions and 1104 deletions
+37
View File
@@ -0,0 +1,37 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/blade-transport/insurance-ocr-template/list',
method: 'get',
params: {
...params,
current,
size,
},
});
};
export const getDetail = id => {
return request({
url: '/blade-transport/insurance-ocr-template/detail',
method: 'get',
params: { id },
});
};
export const submit = row => {
return request({
url: '/blade-transport/insurance-ocr-template/submit',
method: 'post',
data: row,
});
};
export const remove = ids => {
return request({
url: '/blade-transport/insurance-ocr-template/remove',
method: 'post',
params: { ids },
});
};