diff --git a/sgzb-screen/src/api/dialog.js b/sgzb-screen/src/api/dialog.js
index a1ab1572..78898258 100644
--- a/sgzb-screen/src/api/dialog.js
+++ b/sgzb-screen/src/api/dialog.js
@@ -5,6 +5,7 @@ const URL_DETAILS = '/screen/base/largeScreen/home/getMaterialReqData/details'
const URL_RETURN_DETAILS = '/screen/base/largeScreen/home/getMaterialReturnData/details'
const URL_UNIT_LIST = '/screen/material/agreementInfo/getUnitList'
const URL_PROJECT_LIST = '/screen/material/agreementInfo/getProjectList'
+const URL_SCRAP_ANALYSIS = '/screen/base/largeScreen/home/getScrapAnalysisByMonth/details'
// 设备类型
export const getTypeList = params => GET(URL_TYPE_LIST, params)
@@ -19,4 +20,7 @@ export const getReturnDetails = data => POST(URL_RETURN_DETAILS, data)
export const getUnitList = params => GET(URL_UNIT_LIST, params)
// 工程名称-下拉
-export const getProjectList = params => GET(URL_PROJECT_LIST, params)
\ No newline at end of file
+export const getProjectList = params => GET(URL_PROJECT_LIST, params)
+
+// 废料分析
+export const getScrapAnalysis = data => POST(URL_SCRAP_ANALYSIS, data)
\ No newline at end of file
diff --git a/sgzb-screen/src/components/Pagination/index.vue b/sgzb-screen/src/components/Pagination/index.vue
index 57326f8e..1f991f9d 100644
--- a/sgzb-screen/src/components/Pagination/index.vue
+++ b/sgzb-screen/src/components/Pagination/index.vue
@@ -107,7 +107,7 @@ export default {
.pagination-container {
margin-top: 20px;
background: #fff;
- padding: 32px 16px;
+ /* padding: 32px 16px; */
display: flex;
justify-content: end;
align-items: center;
diff --git a/sgzb-screen/src/components/home/getMaterialsDialog.vue b/sgzb-screen/src/components/home/getMaterialsDialog.vue
index dab32c69..e8e7131a 100644
--- a/sgzb-screen/src/components/home/getMaterialsDialog.vue
+++ b/sgzb-screen/src/components/home/getMaterialsDialog.vue
@@ -65,8 +65,8 @@