From 9a13858510fd54d72826dd3b382381fe994145d5 Mon Sep 17 00:00:00 2001
From: xuhuajiao <13476289682@163.com>
Date: Tue, 9 Jun 2026 16:22:46 +0800
Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E6=96=B0=E5=A2=9E=E5=AD=97?=
=?UTF-8?q?=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/assets/styles/yxk-admin.scss | 2 +-
.../usageCountStatistics/index.vue | 4 +-
.../prearchiveLibrary/advancedSearchModal.vue | 31 +++++++++------
src/views/system/user/index.vue | 38 ++++++++++++++++++-
4 files changed, 58 insertions(+), 17 deletions(-)
diff --git a/src/assets/styles/yxk-admin.scss b/src/assets/styles/yxk-admin.scss
index 798a088..a77c0e9 100644
--- a/src/assets/styles/yxk-admin.scss
+++ b/src/assets/styles/yxk-admin.scss
@@ -330,7 +330,7 @@
@include tree_font_color;
}
.el-tree-node__children{
- padding: 0 0 0 18px;
+ padding: 0 0 0 16px;
.el-tree-node__content{
@include tree_children_padding;
height: 30px;
diff --git a/src/views/archivesStatistics/usageCountStatistics/index.vue b/src/views/archivesStatistics/usageCountStatistics/index.vue
index bd56751..18e300d 100644
--- a/src/views/archivesStatistics/usageCountStatistics/index.vue
+++ b/src/views/archivesStatistics/usageCountStatistics/index.vue
@@ -47,8 +47,8 @@
{{ scope.row.isSummary ? '-' : scope.$index + 1 }}
-
-
+
+
diff --git a/src/views/prearchiveLibrary/advancedSearchModal.vue b/src/views/prearchiveLibrary/advancedSearchModal.vue
index e5c5f08..85eff82 100644
--- a/src/views/prearchiveLibrary/advancedSearchModal.vue
+++ b/src/views/prearchiveLibrary/advancedSearchModal.vue
@@ -185,7 +185,7 @@ export default {
}
},
mounted() {
- this.getFieldCommon()
+ // this.getFieldCommon()
},
methods: {
resetQuery() {
@@ -265,22 +265,29 @@ export default {
},
getFieldCommon() {
console.log('selectedDocument', this.selectedDocument)
+ const currentDocumentKey = JSON.parse(localStorage.getItem('currentDocumentKey'))
+ console.log('currentDocumentKey', currentDocumentKey)
const params = {
- documentId: this.selectedDocument.id,
+ documentId: this.selectedDocument.id ? this.selectedDocument.id : currentDocumentKey.id,
archivesId: null
}
console.log('params', params)
FetchDoeditDocument(params).then((data) => {
- const showFiledAll = data.showFiled.filter(item => item.isSequence).sort((a, b) => a.isSequence - b.isSequence)
- this.fieldOptions = showFiledAll
- .filter(item => item.fieldName !== 'fonds_no' && item.fieldName !== 'fonds_name')
- .map(item => {
- return {
- id: item.id,
- label: item.fieldCnName,
- value: item.fieldName
- }
- })
+ if (data.code !== 500) {
+ const showFiledAll = data.showFiled.filter(item => item.isSequence).sort((a, b) => a.isSequence - b.isSequence)
+ this.fieldOptions = showFiledAll
+ .filter(item => item.fieldName !== 'fonds_no' && item.fieldName !== 'fonds_name')
+ .map(item => {
+ return {
+ id: item.id,
+ label: item.fieldCnName,
+ value: item.fieldName
+ }
+ })
+ } else {
+ this.fieldOptions = []
+ this.$message({ message: '获取字段失败', type: 'error', offset: 8 })
+ }
})
},
checkConditions(conditionData) {
diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue
index 8722654..a59b556 100644
--- a/src/views/system/user/index.vue
+++ b/src/views/system/user/index.vue
@@ -123,17 +123,28 @@
禁用
+
-
+
+
+
+
+
+
+
+
+
+
+