diff --git a/PC/UI.WinIn.FasterZ.AgGridReport/src/components/reportPageHeader/index.vue b/PC/UI.WinIn.FasterZ.AgGridReport/src/components/reportPageHeader/index.vue
index 9270f0c..a1b3334 100644
--- a/PC/UI.WinIn.FasterZ.AgGridReport/src/components/reportPageHeader/index.vue
+++ b/PC/UI.WinIn.FasterZ.AgGridReport/src/components/reportPageHeader/index.vue
@@ -247,6 +247,16 @@ export default {
item.opL='label'
item.opV="value"
}
+ //存储时效控制报表-是否超过时效
+ if(item.optionsProc == 'IsExceedThreshold'){
+ item.options = [
+ {label:'是',value:'是'},
+ {label:'否',value:'否'},
+ {label:'全部',value:'全部'},
+ ]
+ item.opL='label'
+ item.opV="value"
+ }
}
})
},
diff --git a/PC/UI.WinIn.FasterZ.AgGridReport/src/router/index.js b/PC/UI.WinIn.FasterZ.AgGridReport/src/router/index.js
index 9927ee1..021868b 100644
--- a/PC/UI.WinIn.FasterZ.AgGridReport/src/router/index.js
+++ b/PC/UI.WinIn.FasterZ.AgGridReport/src/router/index.js
@@ -32,6 +32,7 @@ import EQLevelReport from '../views/report/EQLevelReport.vue'
import outsourcingOutReport from '../views/report/outsourcingOutReport.vue'
import outsourcingReturnReport from '../views/report/outsourcingReturnReport.vue'
import stockPreparationReport from '../views/report/stockPreparationReport.vue'
+import storageAgingReport from '../views/report/storageAgingReport.vue'
Vue.use(VueRouter)
@@ -292,6 +293,14 @@ const routes = [
title:"备料报表",
}
},
+ {
+ path: '/storageAgingReport',
+ name: 'storageAgingReport',
+ component: storageAgingReport,
+ meta:{
+ title:"存储时效控制报表",
+ }
+ },
]
const router = new VueRouter({
diff --git a/PC/UI.WinIn.FasterZ.AgGridReport/src/views/report/storageAgingReport.vue b/PC/UI.WinIn.FasterZ.AgGridReport/src/views/report/storageAgingReport.vue
new file mode 100644
index 0000000..503a181
--- /dev/null
+++ b/PC/UI.WinIn.FasterZ.AgGridReport/src/views/report/storageAgingReport.vue
@@ -0,0 +1,51 @@
+
+
+
+
+
\ No newline at end of file