|
@@ -55,6 +55,12 @@ const props = defineProps({
|
|
|
return null;
|
|
|
},
|
|
|
},
|
|
|
+ semiFinishedStock: {
|
|
|
+ type: String,
|
|
|
+ default: () => {
|
|
|
+ return null;
|
|
|
+ },
|
|
|
+ },
|
|
|
workOrderState: {
|
|
|
type: String,
|
|
|
default: () => {
|
|
@@ -274,6 +280,9 @@ option.value = Object.assign(option.value, {
|
|
|
|
|
|
onMounted(() => {
|
|
|
multipleKeyVal.value = props.multipleKey;
|
|
|
+ if (props.semiFinishedStock != null) {
|
|
|
+ search.value.semiFinishedStock = String(props.semiFinishedStock);
|
|
|
+ }
|
|
|
if (props.queryComplete != null) {
|
|
|
search.value.queryComplete = String(props.queryComplete);
|
|
|
}
|