Commit 436efa29 authored by 陈万宝's avatar 陈万宝

Merge branch 'feature/20230327_public_takeaway' of...

Merge branch 'feature/20230327_public_takeaway' of http://git.quantgroup.cn/ui/merchant-manage-ui into feature/20230327_public_takeaway
parents 879b10e6 75e0ef1f
...@@ -302,25 +302,25 @@ export function takeawayColumn(actions) { ...@@ -302,25 +302,25 @@ export function takeawayColumn(actions) {
{ {
title: '售卖价格(元)', title: '售卖价格(元)',
dataIndex: 'salePrice', dataIndex: 'salePrice',
width: 150, width: 120,
align: 'center', align: 'center',
}, },
{ {
title: '库存', title: '库存',
width: 120, width: 100,
dataIndex: 'stock', dataIndex: 'stock',
align: 'center', align: 'center',
}, },
{ {
title: '上下架状态', title: '上下架状态',
dataIndex: 'stateDesc', // 5:未上架 ,6 :上架,7:下架 dataIndex: 'stateDesc', // 5:未上架 ,6 :上架,7:下架
width: 200, width: 110,
align: 'center', align: 'center',
}, },
{ {
title: '操作', title: '操作',
dataIndex: 'action', dataIndex: 'action',
width: 400, width: 390,
align: 'center', align: 'center',
render: (_, row, index) => ( render: (_, row, index) => (
<div className={styles.actionBtn}> <div className={styles.actionBtn}>
......
...@@ -705,6 +705,7 @@ class BusinessInfo extends Component { ...@@ -705,6 +705,7 @@ class BusinessInfo extends Component {
<Col span={24}> <Col span={24}>
<FormItem label="授权品牌" labelCol={{ span: 4 }}> <FormItem label="授权品牌" labelCol={{ span: 4 }}>
{getFieldDecorator('brand', { {getFieldDecorator('brand', {
rules: [{ required: true, message: '请输入授权品牌!' }],
initialValue: businessInfo.brand, initialValue: businessInfo.brand,
})(<Input maxLength={32} disabled={disabled} />)} })(<Input maxLength={32} disabled={disabled} />)}
</FormItem> </FormItem>
...@@ -716,6 +717,7 @@ class BusinessInfo extends Component { ...@@ -716,6 +717,7 @@ class BusinessInfo extends Component {
wrapperCol={wrapperCol} wrapperCol={wrapperCol}
> >
{getFieldDecorator('brandCertificate', { {getFieldDecorator('brandCertificate', {
rules: [{ required: true, message: '请上传品牌经销商授权书!' }],
initialValue: businessInfo.brandCertificate, initialValue: businessInfo.brandCertificate,
})( })(
<Upload <Upload
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment