Commit e4923498 by linjinhong

fix:POD订单(US)查询条件新增尺码筛选

parent 580073d4
......@@ -41,6 +41,7 @@ export interface SearchForm {
trackRegisterSelect?: string | number
sizeType?: number | null
tagsId?: string
size?: string
tagsIdArr?: (number | null)[]
replaceShipment?: number | null
}
......
......@@ -352,6 +352,23 @@
></ElOption>
</ElSelect>
</ElFormItem>
<ElFormItem label="尺码筛选">
<ElSelect
v-model="searchForm.size"
placeholder="请选择"
clearable
filterable
:teleported="false"
style="width: 150px"
>
<ElOption
v-for="(item, index) in sizes"
:key="index"
:value="item"
:label="item"
></ElOption>
</ElSelect>
</ElFormItem>
</ElForm>
<template #reference>
<el-button type="warning" @click="searchVisible = !searchVisible">
......@@ -2988,6 +3005,7 @@ const sourceList = [
id: 'third-party',
},
]
const sizes = ['FS', 'XS', 'S', 'M', 'L', 'XL', 'XXL', '3XL', '4XL', '5XL']
const tabsNav = ref<Tab[]>()
const isAuto = ref(true)
const countryList = ref([])
......
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