feat: 更新API模型和组件以支持备注功能

- 在api-models.ts中为订单模型添加备注字段
- 在PointOrderCard.vue中新增备注列并调整显示逻辑
- 在PointOrderManage.vue中导出数据时包含备注信息
- 在PointGoodsView.vue中添加备注输入框以供用户填写
This commit is contained in:
2025-05-06 08:50:21 +08:00
parent 4ebfeaec69
commit a5420e5914
4 changed files with 63 additions and 28 deletions

View File

@@ -777,7 +777,7 @@ export interface ResponsePointOrder2OwnerModel {
createAt: number
updateAt: number
status: PointOrderStatus
remark?: string
trackingNumber?: string
expressCompany?: string
}
@@ -791,6 +791,7 @@ export interface ResponsePointOrder2UserModel {
goods: ResponsePointGoodModel
status: PointOrderStatus
createAt: number
remark?: string
trackingNumber?: string
expressCompany?: string