diff --git a/src/assets/images/4011.png b/src/assets/images/4011.png
new file mode 100644
index 0000000..94bffa3
Binary files /dev/null and b/src/assets/images/4011.png differ
diff --git a/src/utils/upload.js b/src/utils/upload.js
index dec7586..82f1619 100644
--- a/src/utils/upload.js
+++ b/src/utils/upload.js
@@ -44,6 +44,16 @@ export function archivesUpload(api, file, categoryId, archivesId, fileJsonString
}
return axios.post(api, data, config)
}
+// 收集库 - 目录上传
+export function catalogUpload(api, file, fondsId) {
+ var data = new FormData()
+ data.append('file', file)
+ data.append('fondsId', fondsId)
+ const config = {
+ headers: { 'Authorization': getToken() }
+ }
+ return axios.post(api, data, config)
+}
// 预归档档案上传附件
export function reDocumentUpload(api, file, documentId) {
@@ -78,6 +88,7 @@ export function batchMountUpload(api, file, params) {
data.append('checkRepeatType', params.checkRepeatType)
data.append('matchingMode', params.matchingMode)
data.append('fields', params.fields)
+ data.append('fondsId', params.fondsId)
const config = {
headers: {
'Authorization': getToken()
@@ -99,6 +110,7 @@ export function remoteConnectiontUpload(api, params) {
data.append('fields', params.fields)
data.append('protocol', params.protocol)
data.append('zipFilePath', params.zipFilePath)
+ data.append('fondsId', params.fondsId)
const config = {
headers: {
'Authorization': getToken()
diff --git a/src/views/AIAssistant/AICataloging/running/index.vue b/src/views/AIAssistant/AICataloging/running/index.vue
index db70f98..19df199 100644
--- a/src/views/AIAssistant/AICataloging/running/index.vue
+++ b/src/views/AIAssistant/AICataloging/running/index.vue
@@ -131,8 +131,8 @@
@@ -54,9 +56,10 @@ import { FetchIsAuthByLookType } from '@/api/archivesManage/library'
import UploadFile from '../uploadFile/index'
import FourTestInfo from '../fourTestInfo/index'
import HandleInfo from '../handleInfo/index'
+import MarkInfo from '../markInfo/index'
export default {
name: 'ArchivesInfo',
- components: { UploadFile, FourTestInfo, HandleInfo },
+ components: { UploadFile, FourTestInfo, HandleInfo, MarkInfo },
mixins: [
form({})
],
@@ -170,6 +173,10 @@ export default {
this.$refs.archivesListModuleRef.parentId = this.arcId
this.$refs.archivesListModuleRef.isDetail = true
this.$refs.archivesListModuleRef.getViewTable()
+ } else if (this.archivesTabIndex === 6) {
+ this.$refs.markInfoRefs.archivesDetailsData = this.archivesDetailsData
+ this.$refs.markInfoRefs.currentArcId = this.arcId
+ this.$refs.markInfoRefs.getFileMarkList(this.arcId)
}
this.$nextTick(() => {
if (this.$refs.uploadFile) {
diff --git a/src/views/archivesManage/managementLibrary/module/fourTestInfo/index.vue b/src/views/archivesManage/managementLibrary/module/fourTestInfo/index.vue
index da1934d..a483b9d 100644
--- a/src/views/archivesManage/managementLibrary/module/fourTestInfo/index.vue
+++ b/src/views/archivesManage/managementLibrary/module/fourTestInfo/index.vue
@@ -2,7 +2,7 @@
双击列表数据查看报告详情
-
+
@@ -42,7 +42,7 @@
{{ scope.row.update_time | parseTime }}
-
+
+
+
+
+
+
+ 【档案】{{ scope.row.file_name }}
+ 【原文】{{ scope.row.file_name }}
+
+
+
+
+
+
+
+ {{ tag.trim() }}
+
+
+
+ -
+
+
+
+
+
+
+
+
+
diff --git a/src/views/archivesStatistics/ureport/designer/index.vue b/src/views/archivesStatistics/ureport/designer/index.vue
index ec69564..b0aa2bf 100644
--- a/src/views/archivesStatistics/ureport/designer/index.vue
+++ b/src/views/archivesStatistics/ureport/designer/index.vue
@@ -1,6 +1,10 @@
-
+
+

+
页面正在维护中...
+
+
+
+
diff --git a/src/views/collectReorganizi/batchConnection/index.vue b/src/views/collectReorganizi/batchConnection/index.vue
index 9ef0461..1485b1c 100644
--- a/src/views/collectReorganizi/batchConnection/index.vue
+++ b/src/views/collectReorganizi/batchConnection/index.vue
@@ -156,6 +156,7 @@ export default {
this.currentCategory = data
if (data) {
this.crud.query.categoryId = data.id
+ this.crud.query.fondsId = data.fondsId
this.crud.refresh()
}
},
diff --git a/src/views/collectReorganizi/batchConnection/module/form.vue b/src/views/collectReorganizi/batchConnection/module/form.vue
index 8de8e56..84924d1 100644
--- a/src/views/collectReorganizi/batchConnection/module/form.vue
+++ b/src/views/collectReorganizi/batchConnection/module/form.vue
@@ -253,6 +253,7 @@ export default {
}
this.btnLoading = true
this.$refs['form'].validate((valid) => {
+ console.log('this.currentCategory', this.currentCategory)
if (valid) {
let newhitchRemark = this.hitchRemarkArray.map(item => item.replace(/^\$|\$$|\*$/g, ''))
newhitchRemark = newhitchRemark.filter(item => item !== '')
@@ -263,7 +264,8 @@ export default {
'mountType': 1, // 挂接方式 1.本地挂接 2.远程挂接 3.上传目录 (目前只有1)
'checkRepeatType': this.form.checkRepeatType,
'matchingMode': this.form.matchingMode,
- 'fields': newhitchRemark
+ 'fields': newhitchRemark,
+ 'fondsId': this.currentCategory.fondsId
}
console.log(params)
batchMountUpload(this.baseApi + '/api/collect/batchMount',
@@ -286,6 +288,7 @@ export default {
'cPassword': this.form.filePath.cpassword,
'cPort': this.form.filePath.cport,
'categoryId': this.currentCategory.id,
+ 'fondsId': this.currentCategory.fondsId,
'checkRepeatType': this.form.checkRepeatType,
'matchingMode': this.form.matchingMode,
'fields': newhitchRemark,
diff --git a/src/views/collectReorganizi/collectionLibrary/anjuan/index.vue b/src/views/collectReorganizi/collectionLibrary/anjuan/index.vue
index 43a819a..6f9b546 100644
--- a/src/views/collectReorganizi/collectionLibrary/anjuan/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/anjuan/index.vue
@@ -59,6 +59,8 @@ export default {
this.anjuanDrawer = false
this.$parent.parentsProjectId = null
this.$parent.parentsProjectRow = null
+ localStorage.removeItem('currentPageSize')
+ localStorage.removeItem('currentPage')
}
}
}
diff --git a/src/views/collectReorganizi/collectionLibrary/file/index.vue b/src/views/collectReorganizi/collectionLibrary/file/index.vue
index 9cfe867..40a7446 100644
--- a/src/views/collectReorganizi/collectionLibrary/file/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/file/index.vue
@@ -173,6 +173,7 @@ export default {
},
closeDrawer() {
localStorage.removeItem('currentPageSize')
+ localStorage.removeItem('currentPage')
this.fileDrawer = false
if (this.selectedCategory.arrangeType === 1) {
this.$parent.parentsAnjuanId = null
diff --git a/src/views/collectReorganizi/collectionLibrary/index.vue b/src/views/collectReorganizi/collectionLibrary/index.vue
index c883d68..44f86d6 100644
--- a/src/views/collectReorganizi/collectionLibrary/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/index.vue
@@ -625,6 +625,7 @@ export default {
this.$refs.anjuanEle.$refs.ajContent.activeIndex = 0
}
this.$nextTick(() => {
+ this.$refs.anjuanEle.$refs.ajContent.$refs.tableList.currentPage = 1
this.$refs.anjuanEle.$refs.ajContent.$refs.tableList.page.page = 0
this.$refs.anjuanEle.$refs.ajContent.$refs.tableList.getCommonData(2, this.parentsProjectId)
this.$refs.anjuanEle.$refs.ajContent.test = data
@@ -637,6 +638,7 @@ export default {
if (this.selectedCategory.arrangeType === 1 || (this.selectedCategory.arrangeType === 3 && this.$refs.anjuanEle.$refs.ajContent.activeIndex === 1) || (this.selectedCategory.arrangeType === 2 && this.$refs.anjuanEle.$refs.ajContent.activeIndex === 1)) {
this.$refs.fileEle.fileDrawer = true
this.$nextTick(() => {
+ this.$refs.fileEle.currentPage = 1
this.$refs.fileEle.page.page = 0
this.$refs.fileEle.getCommonData(4, this.parentsAnjuanId)
this.$refs.fileEle.test = data
@@ -645,6 +647,7 @@ export default {
} else {
this.$refs.juanneiEle.juanneiDrawer = true
this.$nextTick(() => {
+ this.$refs.juanneiEle.currentPage = 1
this.$refs.juanneiEle.page.page = 0
this.$refs.juanneiEle.getCommonData(3, this.parentsAnjuanId)
this.$refs.juanneiEle.test = data
@@ -657,6 +660,7 @@ export default {
this.parentsJuanneiId = parentId
this.$refs.fileEle.fileDrawer = true
this.$nextTick(() => {
+ this.$refs.fileEle.currentPage = 1
this.$refs.fileEle.page.page = 0
this.$refs.fileEle.getCommonData(4, this.parentsJuanneiId)
this.$refs.fileEle.test = data
diff --git a/src/views/collectReorganizi/collectionLibrary/juannei/index.vue b/src/views/collectReorganizi/collectionLibrary/juannei/index.vue
index 438a4d3..47c1bee 100644
--- a/src/views/collectReorganizi/collectionLibrary/juannei/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/juannei/index.vue
@@ -155,6 +155,8 @@ export default {
this.juanneiDrawer = false
this.$parent.parentsAnjuanId = null
this.$parent.parentsAnjuanRow = null
+ localStorage.removeItem('currentPageSize')
+ localStorage.removeItem('currentPage')
},
rowKey(row) {
return row.id
diff --git a/src/views/collectReorganizi/collectionLibrary/module/archivesFilling/index.vue b/src/views/collectReorganizi/collectionLibrary/module/archivesFilling/index.vue
index 3089e7d..ee95d10 100644
--- a/src/views/collectReorganizi/collectionLibrary/module/archivesFilling/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/module/archivesFilling/index.vue
@@ -149,12 +149,12 @@ export default {
'categoryLevel': this.collectLevel
}
FetchBecomeDocument(params).then((res) => {
- const resultData = JSON.parse(res.message)
- console.log('resultData', resultData)
if (res.code !== 500) {
this.$message({ message: '归档操作提交成功', type: 'success', offset: 8 })
this.$emit('close-dialog')
} else {
+ const resultData = JSON.parse(res.message)
+ console.log('resultData', resultData)
// const message = JSON.parse(res.message)
// this.$message.error(message.fail.join(',') + '归档操作提交失败')
this.$message({ message: '四性检测未通过,归档操作提交失败', type: 'error', offset: 8 })
diff --git a/src/views/collectReorganizi/collectionLibrary/module/collectHeader.vue b/src/views/collectReorganizi/collectionLibrary/module/collectHeader.vue
index 035d80d..6b095fa 100644
--- a/src/views/collectReorganizi/collectionLibrary/module/collectHeader.vue
+++ b/src/views/collectReorganizi/collectionLibrary/module/collectHeader.vue
@@ -594,6 +594,7 @@ export default {
this.formTitle = '新增案卷'
} else {
console.log('222')
+ this.quickPaperArcId = []
this.formTitle = '新增' + this.collectTitle
this.quickPaper = false
}
diff --git a/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue b/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue
index 2b06c3e..f6d4173 100644
--- a/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/module/collectMoveFile/index.vue
@@ -202,7 +202,8 @@ export default {
'fonds_no': this.currentCategory.fondsId,
'search': this.query.search,
'page': this.page.page - 1,
- 'size': this.page.size
+ 'size': this.page.size,
+ 'sort': this.arrySort
}
FetchInitCategoryView(params).then((res) => {
if (res.code !== 500) {
diff --git a/src/views/collectReorganizi/collectionLibrary/module/fourTestInfo/index.vue b/src/views/collectReorganizi/collectionLibrary/module/fourTestInfo/index.vue
index 1e308f2..e37ba9e 100644
--- a/src/views/collectReorganizi/collectionLibrary/module/fourTestInfo/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/module/fourTestInfo/index.vue
@@ -42,7 +42,7 @@
+
说明:系统根据“成文日期”快速匹配同一年度月份的数据
@@ -143,4 +144,8 @@ export default {
color: #ED4A41;
}
}
+.double-click-btn{
+ position: static;
+ margin: -10px 0 10px 0;
+}
diff --git a/src/views/collectReorganizi/collectionLibrary/module/uploadOriginal/index.vue b/src/views/collectReorganizi/collectionLibrary/module/uploadOriginal/index.vue
index 7d08524..f8bcf4f 100644
--- a/src/views/collectReorganizi/collectionLibrary/module/uploadOriginal/index.vue
+++ b/src/views/collectReorganizi/collectionLibrary/module/uploadOriginal/index.vue
@@ -51,7 +51,7 @@
@@ -63,4 +91,16 @@ export default {
width: 100%;
height: calc(100vh - 215px);
}
+.maintenance-message{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: calc(100vh - 215px);
+ p{
+ font-size: 26px;
+ font-weight: bold;
+ margin-left: 20px;
+ color: #000;
+ }
+}