fix:玻纤:route新增时添加输出物料的追踪方式
This commit is contained in:
parent
8ec44f1010
commit
a07781ad0f
|
@ -145,10 +145,11 @@
|
||||||
clearable
|
clearable
|
||||||
v-model="form.material_out_tracking"
|
v-model="form.material_out_tracking"
|
||||||
placeholder="输出物料追踪方式"
|
placeholder="输出物料追踪方式"
|
||||||
|
:value-on-clear="null"
|
||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
>
|
>
|
||||||
<el-option label="单个" value="10"></el-option>
|
<el-option label="单个" :value="10"></el-option>
|
||||||
<el-option label="批次" value="20"></el-option>
|
<el-option label="批次" :value="20"></el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
@ -247,7 +248,7 @@ const defaultForm = {
|
||||||
div_number:1,
|
div_number:1,
|
||||||
batch_bind: false,
|
batch_bind: false,
|
||||||
is_autotask: true,
|
is_autotask: true,
|
||||||
material_out_tracking:''
|
material_out_tracking:null
|
||||||
};
|
};
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
|
|
Loading…
Reference in New Issue