diff --git a/src/api/archivesManage/statistics.js b/src/api/archivesManage/statistics.js index 3799763..75f40b4 100644 --- a/src/api/archivesManage/statistics.js +++ b/src/api/archivesManage/statistics.js @@ -17,3 +17,50 @@ export function FetchGetCaseNum(parameter) { params: parameter }) } + +// 档案借阅数量统计 +export function FetchInitBorrowerNumStatistics(parameter) { + return request({ + url: 'api/borrow/initBorrowerNumStatistics', + method: 'get', + params: parameter + }) +} + +// 档案类别数量统计 +export function FetchInitArchivesTypeNum(parameter) { + return request({ + url: 'api/archives/initArchivesTypeNum', + method: 'get', + params: parameter + }) +} + +// 档案类型统计 +export function FetchInitArchivesTypeStatistics(parameter) { + return request({ + url: 'api/archives/initArchivesTypeStatistics', + method: 'get', + params: parameter + }) +} + +// 出入库月份统计 +export function FetchStorageStatistics(parameter) { + return request({ + url: 'api/storage/storageStatistics', + method: 'get', + params: parameter + }) +} + +// 档案检索排名 + +// 档案实际情况 +export function FetchInitAddArchivesStatistics(parameter) { + return request({ + url: 'api/archives/initAddArchivesStatistics', + method: 'get', + params: parameter + }) +} diff --git a/src/views/components/category/PreviewForm.vue b/src/views/components/category/PreviewForm.vue index ddff17b..f02f9a5 100644 --- a/src/views/components/category/PreviewForm.vue +++ b/src/views/components/category/PreviewForm.vue @@ -131,7 +131,6 @@ export default { result: null, autoMatic: null, isType: 'category', - autoEditString: [], normalizer(node) { if (node.childMenus == null || node.childMenus === 'null') { delete node.childMenus diff --git a/src/views/system/archiveStatistics/index.vue b/src/views/system/archiveStatistics/index.vue index 5213db1..e7ef5e4 100644 --- a/src/views/system/archiveStatistics/index.vue +++ b/src/views/system/archiveStatistics/index.vue @@ -22,6 +22,11 @@

档案类别

+
@@ -97,6 +102,7 @@ export default { components: { lendAcross, catePie, typePie, BarEcharts, AcrossBar, LineEchart }, data() { return { + value1: '', lendData: [100, 18203, 23489, 29034, 104970], cateData: [1000, 700], typeData: [1110, 2000, 800, 600, 900] @@ -110,7 +116,25 @@ export default { .container-wrap{ min-height:calc(100vh - 636px) ; } +.chart-wrapper{ + position: relative; +} +::v-deep .el-date-editor{ + position: absolute; + right: 20px; + top: -30px; + width: 116px; + z-index: 9999; + .el-input__inner{ + width: 116px; + height: 30px; + border: 1px solid #339cff; + background-color: #021941; + line-height: 30px; + color: #fff; + } +} .center-box{ // width:100%; margin:20px 0;