fix:出入库记录表单中选择添加筛选
This commit is contained in:
parent
1a323e7326
commit
ea8b468da2
|
|
@ -29,6 +29,7 @@
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.pu_order"
|
v-model="form.pu_order"
|
||||||
clearable
|
clearable
|
||||||
|
filterable
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
|
|
@ -46,6 +47,7 @@
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.supplier"
|
v-model="form.supplier"
|
||||||
clearable
|
clearable
|
||||||
|
filterable
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
|
|
@ -57,7 +59,7 @@
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="销售订单" v-if="form.type == 'sale_out'">
|
<el-form-item label="销售订单" v-if="form.type == 'sale_out'">
|
||||||
<el-select v-model="form.order" clearable style="width: 100%">
|
<el-select v-model="form.order" clearable filterable style="width: 100%">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in orderOptions"
|
v-for="item in orderOptions"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
|
|
@ -84,6 +86,7 @@
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.customer"
|
v-model="form.customer"
|
||||||
clearable
|
clearable
|
||||||
|
filterable
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
|
|
@ -101,6 +104,7 @@
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.mgroup"
|
v-model="form.mgroup"
|
||||||
clearable
|
clearable
|
||||||
|
filterable
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
placeholder="为空时代表领料/入库到车间"
|
placeholder="为空时代表领料/入库到车间"
|
||||||
@change="mgroupChange"
|
@change="mgroupChange"
|
||||||
|
|
@ -120,6 +124,7 @@
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.belong_dept"
|
v-model="form.belong_dept"
|
||||||
clearable
|
clearable
|
||||||
|
filterable
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
@change="getgetDeptUsers"
|
@change="getgetDeptUsers"
|
||||||
>
|
>
|
||||||
|
|
@ -135,7 +140,7 @@
|
||||||
label="部门执行人" prop="do_user"
|
label="部门执行人" prop="do_user"
|
||||||
v-if="(form.type == 'do_in' || form.type == 'do_out'|| form.type == 'borrow_out' || form.type == 'return_in')&& htype!='baofei'"
|
v-if="(form.type == 'do_in' || form.type == 'do_out'|| form.type == 'borrow_out' || form.type == 'return_in')&& htype!='baofei'"
|
||||||
>
|
>
|
||||||
<el-select v-model="form.do_user" clearable style="width: 100%">
|
<el-select v-model="form.do_user" filterable clearable style="width: 100%">
|
||||||
<el-option
|
<el-option
|
||||||
v-for="item in userOptions"
|
v-for="item in userOptions"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
|
|
@ -148,6 +153,7 @@
|
||||||
<el-select
|
<el-select
|
||||||
v-model="form.mio_user"
|
v-model="form.mio_user"
|
||||||
clearable
|
clearable
|
||||||
|
filterable
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue