Commit d35478d7 authored by GuanHua's avatar GuanHua

feat: 渠道能力渠道信息添加app相关字段

parent a1e5e594
...@@ -82,7 +82,11 @@ const ChannelInfo: React.FC<ShopInfoPropsType> = (props) => { ...@@ -82,7 +82,11 @@ const ChannelInfo: React.FC<ShopInfoPropsType> = (props) => {
logo: data.logo, logo: data.logo,
memberChannelAreas: initMemberShopArea(data.memberChannelAreas), memberChannelAreas: initMemberShopArea(data.memberChannelAreas),
workshopPics: data.workshopPics || [], workshopPics: data.workshopPics || [],
honorPics: data.honorPics || [] honorPics: data.honorPics || [],
phone: data.phone || "",
address: data.address || "",
lng: data.lng || "",
lat: data.lat || "",
}) })
} }
}) })
...@@ -407,6 +411,34 @@ const ChannelInfo: React.FC<ShopInfoPropsType> = (props) => { ...@@ -407,6 +411,34 @@ const ChannelInfo: React.FC<ShopInfoPropsType> = (props) => {
> >
<Input allowClear autoComplete="off" className={styles.form_item} /> <Input allowClear autoComplete="off" className={styles.form_item} />
</Form.Item> </Form.Item>
<Form.Item
labelAlign="left"
name="phone"
label={<RequireItem label="联系电话" />}
>
<Input allowClear autoComplete="off" className={styles.form_item} />
</Form.Item>
<Form.Item
labelAlign="left"
name="address"
label={<RequireItem label="详细地址" />}
>
<Input allowClear autoComplete="off" className={styles.form_item} />
</Form.Item>
<Form.Item
labelAlign="left"
name="lng"
label={<RequireItem label="经度" />}
>
<Input allowClear autoComplete="off" className={styles.form_item} />
</Form.Item>
<Form.Item
labelAlign="left"
name="lat"
label={<RequireItem label="纬度" />}
>
<Input allowClear autoComplete="off" className={styles.form_item} />
</Form.Item>
<Form.Item <Form.Item
label={<RequireItem label="" />} label={<RequireItem label="" />}
> >
......
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