|
|
@@ -1,5 +1,6 @@
|
|
|
-import {Popup} from '@antmjs/vantui';
|
|
|
+import {Button, Popup} from '@antmjs/vantui';
|
|
|
import Field from './field';
|
|
|
+import {View} from '@tarojs/components';
|
|
|
|
|
|
export default function Filter({visible, onClose}) {
|
|
|
return (
|
|
|
@@ -9,13 +10,22 @@ export default function Filter({visible, onClose}) {
|
|
|
closeable
|
|
|
position='bottom'
|
|
|
round
|
|
|
- className='pt-8 px-4 !pb-10'
|
|
|
+ className='pt-8 px-4 !pb-6'
|
|
|
>
|
|
|
<Field title='卡车号' />
|
|
|
<Field title='客户号' />
|
|
|
<Field title='发货时间' disabled date />
|
|
|
<Field title='收货时间' disabled date />
|
|
|
<Field title='异常订单' disabled anomaly />
|
|
|
+
|
|
|
+ <View className='flex justify-around mt-4'>
|
|
|
+ <Button round className='border border-solid border-gray-200 w-28'>
|
|
|
+ 重置
|
|
|
+ </Button>
|
|
|
+ <Button type='primary' round className='w-28' color='#58C6EA'>
|
|
|
+ 查询
|
|
|
+ </Button>
|
|
|
+ </View>
|
|
|
</Popup>
|
|
|
);
|
|
|
}
|