Commit 13ee802e by linjinhong

fix:podcn添加排序类型

parent 11f3962b
......@@ -23,6 +23,7 @@ export interface SearchForm {
baseSku?: string
factoryOrderNumber?: string
sku?: string
order?: string
factorySubOrderNumber?: string
status?: string
customizedQuantity?: string
......
......@@ -116,6 +116,17 @@
></el-option>
</ElSelect>
</ElFormItem>
<ElFormItem label="排序">
<el-select
v-model="searchForm.order"
clearable
style="width: 100px"
placeholder="排序类型"
>
<el-option value="asc" label="正序"></el-option>
<el-option value="desc" label="倒序"></el-option>
</el-select>
</ElFormItem>
<ElFormItem label="类型">
<el-radio-group v-model="searchForm.customizedQuantity">
<el-radio-button label="single">单面</el-radio-button>
......
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