Commit 8c147350 by qinjianhui

fix: 问题修改

parent 489f08f1
...@@ -3,7 +3,7 @@ import type { TableColumnCtx } from 'element-plus' ...@@ -3,7 +3,7 @@ import type { TableColumnCtx } from 'element-plus'
export interface SearchForm { export interface SearchForm {
mainSku: string mainSku: string
endProductId: string endProductId: string
OrderNumber: string orderNumber: string
shopNumber: string shopNumber: string
internalMemo: string internalMemo: string
status?: number status?: number
......
...@@ -34,11 +34,11 @@ ...@@ -34,11 +34,11 @@
</ElFormItem> </ElFormItem>
<ElFormItem label="订单号"> <ElFormItem label="订单号">
<ElInput <ElInput
v-model="searchForm.OrderNumber" v-model="searchForm.orderNumber"
placeholder="订单号" placeholder="订单号"
clearable clearable
style="width: 160px" style="width: 160px"
@blur="searchForm.OrderNumber = searchForm.OrderNumber.trim()" @blur="searchForm.orderNumber = searchForm.orderNumber.trim()"
></ElInput> ></ElInput>
</ElFormItem> </ElFormItem>
<ElFormItem label="店铺单号"> <ElFormItem label="店铺单号">
...@@ -577,7 +577,7 @@ const [searchForm, resetSearchForm] = useValue<SearchForm>({ ...@@ -577,7 +577,7 @@ const [searchForm, resetSearchForm] = useValue<SearchForm>({
mainSku: '', mainSku: '',
endProductId: '', endProductId: '',
shopNumber: '', shopNumber: '',
OrderNumber: '', orderNumber: '',
internalMemo: '', internalMemo: '',
subOrderNumber: '', subOrderNumber: '',
}) })
......
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