提交 ce6e2e1c 作者: ZhangLingKun

Merge branch 'develop'

流水线 #8688 已通过 于阶段
in 1 分 2 秒
...@@ -14,4 +14,4 @@ patches: ...@@ -14,4 +14,4 @@ patches:
images: images:
- name: REGISTRY/NAMESPACE/IMAGE:TAG - name: REGISTRY/NAMESPACE/IMAGE:TAG
newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/admin newName: mmc-registry.cn-shenzhen.cr.aliyuncs.com/sharefly-dev/admin
newTag: b2587d668e66494bfe96217234b7f1eb778644c2 newTag: decad6fce247d0f67aaebb7e5e3b26326ce4bda1
...@@ -258,6 +258,7 @@ export type mallOrderListType = InterListFunction< ...@@ -258,6 +258,7 @@ export type mallOrderListType = InterListFunction<
goodsUrl: string; goodsUrl: string;
needPoints: number; needPoints: number;
createTime: string; createTime: string;
sendUserName: string;
} }
>; >;
// 修改商品订单 // 修改商品订单
...@@ -272,6 +273,7 @@ export type updateGoodsOrderType = InterFunction< ...@@ -272,6 +273,7 @@ export type updateGoodsOrderType = InterFunction<
userId?: number; userId?: number;
userName?: string; userName?: string;
userPhone?: string; userPhone?: string;
sendUserName?: string;
}, },
NonNullable<unknown> NonNullable<unknown>
>; >;
......
...@@ -147,6 +147,13 @@ const AddEditModalView: React.FC<ModalProps & { onCancel: () => void; data?: Det ...@@ -147,6 +147,13 @@ const AddEditModalView: React.FC<ModalProps & { onCancel: () => void; data?: Det
> >
<Input placeholder={'请输入快递单号'} maxLength={25} allowClear /> <Input placeholder={'请输入快递单号'} maxLength={25} allowClear />
</Form.Item> </Form.Item>
<Form.Item
label='发货运营'
name='sendUserName'
rules={[{ required: true, message: '请输入发货运营姓名' }]}
>
<Input placeholder={'请输入发货运营姓名'} maxLength={25} allowClear />
</Form.Item>
</Form> </Form>
</Modal> </Modal>
); );
......
...@@ -110,6 +110,11 @@ const PointExchangeListPage: React.FC = () => { ...@@ -110,6 +110,11 @@ const PointExchangeListPage: React.FC = () => {
align: 'center', align: 'center',
}, },
{ {
title: '发货运营',
dataIndex: 'sendUserName',
align: 'center',
},
{
title: '操作', title: '操作',
dataIndex: 'id', dataIndex: 'id',
align: 'center', align: 'center',
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论