Commit b93fb445 authored by rainbowmorel@163.com's avatar rainbowmorel@163.com

配送方式

去掉Input 框
parent 565f3350
...@@ -74,7 +74,6 @@ function DeliveryNoteAddForm() { ...@@ -74,7 +74,6 @@ function DeliveryNoteAddForm() {
function RenaderDeliveryType({ value }: { value?: any }) { function RenaderDeliveryType({ value }: { value?: any }) {
return ( return (
<> <>
<Input />
{value === 0 ? '自提' : '物流'} {value === 0 ? '自提' : '物流'}
</> </>
) )
......
...@@ -75,7 +75,6 @@ function DeliveryNoteAddForm() { ...@@ -75,7 +75,6 @@ function DeliveryNoteAddForm() {
function RenaderDeliveryType({ value }: { value?: any }) { function RenaderDeliveryType({ value }: { value?: any }) {
return ( return (
<> <>
<Input />
{value === 0 ? '自提' : '物流'} {value === 0 ? '自提' : '物流'}
</> </>
) )
...@@ -193,8 +192,8 @@ function DeliveryNoteAddForm() { ...@@ -193,8 +192,8 @@ function DeliveryNoteAddForm() {
<ContentBox title={LogisticsInfo.name} id={LogisticsInfo.key}> <ContentBox title={LogisticsInfo.name} id={LogisticsInfo.key}>
<FormItem hidden name="deliveryType"> <FormItem hidden={true} name="deliveryType">
<Input /> <Input hidden={true}/>
</FormItem> </FormItem>
<FormItem <FormItem
......
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