diff --git a/fe/UI.DY.AgGridReport/public/config.js b/fe/UI.DY.AgGridReport/public/config.js
index 98a5fcb7d..d2bd96c97 100644
--- a/fe/UI.DY.AgGridReport/public/config.js
+++ b/fe/UI.DY.AgGridReport/public/config.js
@@ -1 +1,2 @@
-window.SITE_CONFIG['apiURL'] = 'http://dev.ccwin-in.com:60078'
\ No newline at end of file
+window.SITE_CONFIG['apiURL'] = 'http://192.168.1.75:60029'
+// window.SITE_CONFIG['apiURL'] = 'http://dev.ccwin-in.com:60078'
\ No newline at end of file
diff --git a/fe/UI.DY.AgGridReport/src/components/AgTable/index.vue b/fe/UI.DY.AgGridReport/src/components/AgTable/index.vue
index 202480401..868bb6872 100644
--- a/fe/UI.DY.AgGridReport/src/components/AgTable/index.vue
+++ b/fe/UI.DY.AgGridReport/src/components/AgTable/index.vue
@@ -156,6 +156,7 @@ export default {
this.gridApi.setRowData(data)
this.setTableTotal(this.gridApi)
this.gridApi.resetRowHeights();
+ this.$emit('getPageCallBack',data)
},
// 加载agGrid
onGridReady(params) {
diff --git a/fe/UI.DY.AgGridReport/src/components/reportPage/index.vue b/fe/UI.DY.AgGridReport/src/components/reportPage/index.vue
index 085162d16..954496f66 100644
--- a/fe/UI.DY.AgGridReport/src/components/reportPage/index.vue
+++ b/fe/UI.DY.AgGridReport/src/components/reportPage/index.vue
@@ -16,6 +16,7 @@
:columnDefs="columnList"
:BottomFixedItem="BottomFixedItem"
:averageFixedItem="averageFixedItem"
+ @getPageCallBack="getPageCallBack"
>
@@ -133,7 +134,11 @@ export default {
// 更新导出数据
updateDownloadData(data){
this.tableData = data
- }
+ },
+ // 获取数据后回调
+ getPageCallBack(data){
+ this.$emit('getPageCallBack',data)
+ },
},
};
\ No newline at end of file
diff --git a/fe/UI.DY.AgGridReport/src/router/index.js b/fe/UI.DY.AgGridReport/src/router/index.js
index f2ba52c7e..e16dc38e8 100644
--- a/fe/UI.DY.AgGridReport/src/router/index.js
+++ b/fe/UI.DY.AgGridReport/src/router/index.js
@@ -25,6 +25,8 @@ import ProductionReturnSummary from '../views/report/ProductionReturnSummary.vue
import ProductReceiptSummary from '../views/report/ProductReceiptSummary.vue'
import SupplierAndOrderSummary from '../views/report/SupplierAndOrderSummary.vue'
import rawScrapList from '../views/report/rawScrapList.vue'
+import openingBalance from '../views/report/openingBalance.vue'
+
import InventoryBookDetail from '../views/report/InventoryBookDetail.vue'
Vue.use(VueRouter)
@@ -229,6 +231,15 @@ const routes = [
title:"原物料过期报表",
}
},
+ {
+ path: '/openingBalance',
+ name: 'openingBalance',
+ component: openingBalance,
+ meta:{
+ title:"开账信息查询报表",
+ }
+ },
+
// {
// path: '/InventoryBookDetail',
// name: 'InventoryBookDetail',
diff --git a/fe/UI.DY.AgGridReport/src/views/report/openingBalance.vue b/fe/UI.DY.AgGridReport/src/views/report/openingBalance.vue
new file mode 100644
index 000000000..2717ae1fd
--- /dev/null
+++ b/fe/UI.DY.AgGridReport/src/views/report/openingBalance.vue
@@ -0,0 +1,63 @@
+
+
+
+
+
+
\ No newline at end of file