|
|
@ -445,6 +445,26 @@ |
|
|
|
</el-select> --> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<!-- 溢出库位 --> |
|
|
|
<!-- <el-col key="溢出库位col" :span="24"> |
|
|
|
<el-form-item key="溢出库位formItem" label="溢出库位" prop="warehouse" > |
|
|
|
<el-select key="溢出库位Value" |
|
|
|
v-model="formData.configuration.OverFlowLocation" |
|
|
|
placeholder="请选择溢出库位" |
|
|
|
style="flex: 1;margin-left: 10px;" |
|
|
|
clearable |
|
|
|
multiple |
|
|
|
collapse-tags |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="cur in getStrDictOptions(DICT_TYPE.INVENTORY_STATUS)" |
|
|
|
:key="'溢出库位Value'+cur.value" |
|
|
|
:label="cur.label" |
|
|
|
:value="cur.value" |
|
|
|
/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> --> |
|
|
|
<!-- 优先空位库 --> |
|
|
|
<el-col key="优先空位库col" :span="24"> |
|
|
|
<el-form-item key="优先空位库formItem" label="优先空位库"> |
|
|
@ -657,7 +677,9 @@ const formData = ref({ |
|
|
|
// 行排序方向 |
|
|
|
RowOrder: 'ASC', |
|
|
|
// 列排序方向 |
|
|
|
ColumOrder: 'ASC' |
|
|
|
ColumOrder: 'ASC', |
|
|
|
//溢出库位 |
|
|
|
OverFlowLocation:'' |
|
|
|
} |
|
|
|
}) |
|
|
|
// 验证规则 |
|
|
@ -1252,7 +1274,9 @@ const resetForm = () => { |
|
|
|
// 行排序方向 |
|
|
|
RowOrder: 'ASC', |
|
|
|
// 列排序方向 |
|
|
|
ColumOrder: 'ASC' |
|
|
|
ColumOrder: 'ASC', |
|
|
|
//溢出库位 |
|
|
|
OverFlowLocation:'' |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|