diff --git a/src/views/wms/baseMaterialInfo/index.vue b/src/views/wms/baseMaterialInfo/index.vue
index 991c0d0..a8d9224 100644
--- a/src/views/wms/baseMaterialInfo/index.vue
+++ b/src/views/wms/baseMaterialInfo/index.vue
@@ -72,7 +72,7 @@
-
+
{{ formatDayHourMinutes(scope.row.minParkingTime) }}
@@ -88,7 +88,7 @@
-
+
@@ -155,6 +155,18 @@
+
+
+
+
+
+
+
@@ -197,13 +209,13 @@
:min="0"
/>
-
-
-
+
+
+
+
+
+
+
@@ -260,6 +272,7 @@ import { BaseMaterialInfoVO, BaseMaterialInfoQuery, BaseMaterialInfoForm } from
import { getBaseMaterialTypeList } from "@/api/wms/baseMaterialType";
import {getBaseMaterialCategoryListInWMS} from "@/api/wms/baseMaterialCategory";
import { formatDayHourMinutes } from '@/utils/ruoyi';
+import { getBaseMeasurementUnitInfoList } from '@/api/wms/baseMeasurementUnitInfo';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { apply_flag, inner_tube_flag,
@@ -752,7 +765,16 @@ const materialCategoryIdBymaterialTypeId = (materialTypeId: string | number) =>
}
}
+//获取计量单位
+let measurementUnitInfoList = ref([]);
+const getMeasurementUnitInfoList = async () => {
+ const res = await getBaseMeasurementUnitInfoList(null);
+ measurementUnitInfoList.value = res.data;
+}
+
+
onMounted(() => {
+ getMeasurementUnitInfoList();
getBaseMaterialCategorySelect();
getInfoOptions();
getList();