Commit d2a7c2de authored by 李腾's avatar 李腾

feat: 优化售后订单列表展示区域高度

parent cec0e548
......@@ -289,7 +289,7 @@ const AfterSale = props => {
columns,
params: tableParams,
bordered: true,
scroll: { x: '100%', y: 500 },
scroll: { x: '100%', y: 'calc(100vh - 580px)' },
rowKey: r => r.serviceNo,
request: async params => {
const [start, end] = params.afterTime || afterTime;
......
......@@ -224,7 +224,11 @@ const StoreModal = props => {
onCancel={() => handleCancel()}
>
<Form {...layout} name="formData">
<FormItem label="门店名称" name="name">
<FormItem
label="门店名称"
name="name"
extra="门店名称由商家名称+门店地址组成,示例:优衣库(三里屯店)"
>
{getFieldDecorator('name', {
rules: [{ required: true, message: '请输入门店名称!' }],
initialValue: formData.name,
......@@ -287,7 +291,7 @@ const StoreModal = props => {
{getFieldDecorator('address', {
rules: [{ required: true, message: '请输入详细地址!' }],
initialValue: formData.address,
})(<Input placeholder="请输入详细地址" allowClear maxLength={50} />)}
})(<Input placeholder="请输入详细地址,不包含省市区地址" allowClear maxLength={50} />)}
</FormItem>
<FormItem label="经纬度">
{getFieldDecorator('lnglat', {
......
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