feat: 新增甲方客户管理模块及配套功能

1. 新增甲方客户CRUD接口、前端页面与权限控制
2. 新增发货单管理模块,包含订单状态流转
3. 修复系统菜单名称乱码问题
4. 新增项目启动脚本与数据库初始化脚本
5. 新增相关实体类、Mapper、Service实现
6. 补充项目设计文档与忽略配置
This commit is contained in:
2026-06-09 21:44:31 +08:00
parent ef9584cdb9
commit bbddcb494d
26 changed files with 2084 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import request from '@/utils/request'
const baseUrl = '/bid/client'
export const listClient = (params) => request({ url: baseUrl + '/list', method: 'get', params })
export const getClient = (id) => request({ url: baseUrl + '/' + id, method: 'get' })
export const addClient = (data) => request({ url: baseUrl, method: 'post', data })
export const updateClient = (data) => request({ url: baseUrl, method: 'put', data })
export const delClient = (ids) => request({ url: baseUrl + '/' + ids, method: 'delete' })
export const getClientOrders = (id) => request({ url: baseUrl + '/' + id + '/orders', method: 'get' })