|
@@ -143,12 +143,6 @@ const enterBox = () => {
|
|
|
const clickBox = (box: any, index: number) => {
|
|
|
currentBox.value = box;
|
|
|
currentBoxIndex.value = index;
|
|
|
- box.vehicleName = "改变了";
|
|
|
-
|
|
|
- let testObj: any = reactive(currentBox.value);
|
|
|
-
|
|
|
- console.log(testObj);
|
|
|
- testObj.vehicleName = "ddddd";
|
|
|
};
|
|
|
const sureToOut = async () => {
|
|
|
await toOutBox({
|
|
@@ -190,7 +184,7 @@ const backToStorage = async () => {
|
|
|
|
|
|
// 物料
|
|
|
const scanCodeInput = ref("");
|
|
|
-const materialList = ref<any>([]);
|
|
|
+const materialList = ref<any[]>([]);
|
|
|
|
|
|
const handleScanCodeInput = () => {
|
|
|
getMaterialInfoByLabel(scanCodeInput.value).then((res) => {
|