diff --git a/src/views/home/components/material.vue b/src/views/home/components/material.vue index 3931be20c..efe37218d 100644 --- a/src/views/home/components/material.vue +++ b/src/views/home/components/material.vue @@ -32,7 +32,8 @@
-
+
+
{{ t('home.slack_stock_warning')}}
+
+
{{ t('home.overstock_warning') }}
+
+
{{ t('home.high_and_low_storage_warning') }}
+
+
{{ t('home.waiting_tasks') }}
@@ -251,8 +285,32 @@ const getJobCharts = async () => { lineIndex.value++ } onMounted(() => { - getMaterialData() + // getMaterialData() }) + +// 呆滞库存预警 +const currentPage_stagnantBalance = ref(1) +const pageSize_stagnantBalance = ref(10) +const total_stagnantBalance= ref(100) +const handleCurrentChange_stagnantBalance = (val)=>{ + console.log('呆滞库存预警',val) +} + +// 超期库存预警 +const currentPage_overdueBalance = ref(1) +const pageSize_overdueBalance = ref(10) +const total_overdueBalance= ref(100) +const handleCurrentChange_overdueBalance = (val)=>{ + console.log('超期库存预警',val) +} + +// 高低储预警 +const currentPage_warningBalance = ref(1) +const pageSize_warningBalance = ref(10) +const total_warningBalance= ref(100) +const handleCurrentChange_warningBalance = (val)=>{ + console.log('高低储预警',val) +}