1、新增应付明细

2、新增应收明细
3、新增异常处置
4、新增风险处置
5、新增在途追踪
6、修复业务模块bug
This commit is contained in:
2026-08-13 00:01:23 +08:00
parent 748dd80d4a
commit 6554ad80dd
33 changed files with 7868 additions and 1657 deletions
+15 -1
View File
@@ -36,7 +36,6 @@ export const planStatusOptions = [
{ label: '待调度', value: 'waiting_dispatch' },
{ label: '调度中', value: 'dispatching' },
{ label: '已完成', value: 'completed' },
{ label: '已取消', value: 'cancelled' },
];
export const waybillStatusOptions = [
@@ -209,6 +208,21 @@ export const createCrudOption = columns => ({
column: columns,
});
export const withSearchPlaceholders = columns =>
columns.map(column => {
if (!column.search || column.searchPlaceholder) return column;
if (column.type === 'date' || column.type === 'datetime' || column.searchRange) return column;
const isSelectSearch =
column.type === 'select' ||
column.searchType === 'select' ||
Boolean(column.dicData) ||
Boolean(column.dicUrl);
return {
...column,
searchPlaceholder: isSelectSearch ? '请选择' : '请输入',
};
});
export const auditColumns = [
{
label: '创建人',