Commit 7b5e2727 by wusiyi

feat: 工厂订单增加查询客户交运单号 #1009553

parent 3e0881e1
...@@ -49,6 +49,7 @@ export interface SearchForm { ...@@ -49,6 +49,7 @@ export interface SearchForm {
prop?: string prop?: string
/** list_page 排序方向:asc 正序,desc 倒序 */ /** list_page 排序方向:asc 正序,desc 倒序 */
order?: 'asc' | 'desc' order?: 'asc' | 'desc'
customerNo?: string
} }
export interface FactoryOrderNewListData { export interface FactoryOrderNewListData {
......
...@@ -218,10 +218,10 @@ ...@@ -218,10 +218,10 @@
/> />
</div> </div>
</ElFormItem> </ElFormItem>
<ElFormItem label="订单号"> <ElFormItem label="订单号">
<ElInput <ElInput
v-model.trim="searchForm.factoryOrderNumber" v-model.trim="searchForm.factoryOrderNumber"
placeholder="订单号" placeholder="订单号"
clearable clearable
style="width: 150px" style="width: 150px"
/> />
...@@ -243,6 +243,14 @@ ...@@ -243,6 +243,14 @@
></el-option> ></el-option>
</el-select> </el-select>
</ElFormItem> </ElFormItem>
<ElFormItem v-if="status === 'ALL'" label="客户交运单号">
<ElInput
v-model.trim="searchForm.customerNo"
placeholder="客户交运单号"
clearable
style="width: 150px"
/>
</ElFormItem>
<ElFormItem label="Variant SKU"> <ElFormItem label="Variant SKU">
<ElInput <ElInput
v-model.trim="searchForm.sku" v-model.trim="searchForm.sku"
......
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