diff --git a/src/views/archivesManagement/archClass/archCatalogue/components/addTableData.vue b/src/views/archivesManagement/archClass/archCatalogue/components/addTableData.vue index 7ceda2f..3f77dda 100644 --- a/src/views/archivesManagement/archClass/archCatalogue/components/addTableData.vue +++ b/src/views/archivesManagement/archClass/archCatalogue/components/addTableData.vue @@ -107,7 +107,7 @@ export default { this.belongName = this.rowData.belongName; this.detailStatus = this.rowData.detailStatus; if ((this.isAdd === 'edit' || this.isAdd === 'detail') && this.rowData) { - console.log(this.rowData.classifyMarkId); + // console.log(this.rowData.classifyMarkId); // 编辑模式:填充表单数据 this.form = { id: this.rowData.id, diff --git a/src/views/archivesManagement/archClass/archCatalogue/components/rightTable.vue b/src/views/archivesManagement/archClass/archCatalogue/components/rightTable.vue index 75226a0..3e94142 100644 --- a/src/views/archivesManagement/archClass/archCatalogue/components/rightTable.vue +++ b/src/views/archivesManagement/archClass/archCatalogue/components/rightTable.vue @@ -142,7 +142,7 @@ export default { watch: { selectedNode: { handler(newVal) { - console.log(newVal); + // console.log(newVal); this.addBtnIsShow = !(newVal && Number(newVal.level) === 3) // 更新并下发默认请求参数(例如 parentId) const parentId = newVal && newVal.id ? newVal.id : 0 diff --git a/src/views/archivesManagement/archClass/archClassification/prop/fileDimensionForm.vue b/src/views/archivesManagement/archClass/archClassification/prop/fileDimensionForm.vue index acff221..6969395 100644 --- a/src/views/archivesManagement/archClass/archClassification/prop/fileDimensionForm.vue +++ b/src/views/archivesManagement/archClass/archClassification/prop/fileDimensionForm.vue @@ -81,7 +81,7 @@ export default { /** 初始化表单数据 */ initFormData() { if (this.isAdd === 'edit' && this.rowData) { - console.log(this.rowData); + // console.log(this.rowData); // 编辑模式:填充表单数据 this.form = { id: this.rowData.id, diff --git a/src/views/archivesManagement/fileManager/components/addTableData.vue b/src/views/archivesManagement/fileManager/components/addTableData.vue index f1181c1..5702be3 100644 --- a/src/views/archivesManagement/fileManager/components/addTableData.vue +++ b/src/views/archivesManagement/fileManager/components/addTableData.vue @@ -323,7 +323,7 @@ export default { if (this.$refs.ruleForm) { this.$refs.ruleForm.validateField('fileList') } - console.log('文件列表更新:', fileList.length, '个文件') + // console.log('文件列表更新:', fileList.length, '个文件') }, /**验证 */ @@ -359,7 +359,7 @@ export default { } if (this.isAdd === 'add') { formData.append('params', JSON.stringify(params)); - console.log(params); + // console.log(params); addFileManageRightApi(formData).then(res => { this.loading.close(); if (res.code === 200) { @@ -373,7 +373,7 @@ export default { }); } else { formData.append('params', JSON.stringify(params)); - console.log(params); + // console.log(params); updateFileManageRightApi(formData).then(res => { this.loading.close(); if (res.code === 200) { diff --git a/src/views/archivesManagement/proManager/prop/fileSetForm.vue b/src/views/archivesManagement/proManager/prop/fileSetForm.vue index 6a095d2..f359e15 100644 --- a/src/views/archivesManagement/proManager/prop/fileSetForm.vue +++ b/src/views/archivesManagement/proManager/prop/fileSetForm.vue @@ -108,7 +108,7 @@ export default { let params = _.cloneDeep(this.form); const selected = this.fileSetList.find(item => item.id === this.form.id); params.contentsName = selected.name; - console.log(params); + // console.log(params); updateContentsNameAPI(params).then(res => { this.loading.close(); diff --git a/src/views/data-collect/data-set-manage/components/right-table.vue b/src/views/data-collect/data-set-manage/components/right-table.vue index d61d304..411ea87 100644 --- a/src/views/data-collect/data-set-manage/components/right-table.vue +++ b/src/views/data-collect/data-set-manage/components/right-table.vue @@ -80,7 +80,7 @@ export default { methods: { // 分享 handleShare(row) { - console.log(row); + // console.log(row); this.isflag = true; row.selectedNodeName = this.selectedNodeName; diff --git a/src/views/filesTransfer/accept/components/recordList.vue b/src/views/filesTransfer/accept/components/recordList.vue index 485d62b..71b6e65 100644 --- a/src/views/filesTransfer/accept/components/recordList.vue +++ b/src/views/filesTransfer/accept/components/recordList.vue @@ -97,7 +97,7 @@ export default { const transferApplyId = this.rowData.id; const res = await getTransferReceiceFilesApi({ transferApplyId }); - console.log(res); + // console.log(res); if (Array.isArray(res.data) && res.data.length > 0) { diff --git a/src/views/filesTransfer/apply/prop/applyForm.vue b/src/views/filesTransfer/apply/prop/applyForm.vue index 9ac4f32..2b935c9 100644 --- a/src/views/filesTransfer/apply/prop/applyForm.vue +++ b/src/views/filesTransfer/apply/prop/applyForm.vue @@ -167,7 +167,7 @@ export default { } }, handleProChange(value) { - console.log(value); + // console.log(value); this.checkTreeData = []; }, // 选择移交档案 @@ -237,7 +237,7 @@ export default { const obj = this.findNodeById(this.treeDataList, this.form.deptId); params.deptName = obj?.label || ''; params.transferFileDtos = this.checkTreeData; - console.log(params); + // console.log(params); if (this.isAdd === 'add') { saveTransferApplyApi(params).then(res => { diff --git a/src/views/filesTransfer/record/components/data-detail.vue b/src/views/filesTransfer/record/components/data-detail.vue index a808065..087b203 100644 --- a/src/views/filesTransfer/record/components/data-detail.vue +++ b/src/views/filesTransfer/record/components/data-detail.vue @@ -193,7 +193,7 @@ export default { this.fileList.push(newFile); }) } - console.log(this.fileList); + // console.log(this.fileList); }, // 确认接收 diff --git a/src/views/filesTransfer/record/components/maintenance.vue b/src/views/filesTransfer/record/components/maintenance.vue index a29ca66..6fb0f5a 100644 --- a/src/views/filesTransfer/record/components/maintenance.vue +++ b/src/views/filesTransfer/record/components/maintenance.vue @@ -49,7 +49,7 @@ export default { /** 初始化表单数据 */ initFormData() { if (this.rowData) { - console.log(this.rowData); + // console.log(this.rowData); // 编辑模式:填充表单数据 this.form = { @@ -100,7 +100,6 @@ export default { target: this.$el.querySelector('.el-dialog') || document.body }) let params = _.cloneDeep(this.form); - console.log(params); updateTransferRecordFileApi(params).then(res => { this.loading.close(); diff --git a/src/views/filesTransfer/record/components/recordList.vue b/src/views/filesTransfer/record/components/recordList.vue index 50e6cb6..e525154 100644 --- a/src/views/filesTransfer/record/components/recordList.vue +++ b/src/views/filesTransfer/record/components/recordList.vue @@ -76,7 +76,7 @@ export default { methods: { // 预览文件 viewFile(row) { - console.log(row); + // console.log(row); this.viewTitle = "预览"; this.row = row; @@ -106,7 +106,7 @@ export default { } const transferApplyId = this.rowData.id; const res = await getTransferRecordFilesApi({ transferApplyId }); - console.log(res); + // console.log(res); if (Array.isArray(res.data) && res.data.length > 0) { diff --git a/src/views/filesTransfer/setting/index.vue b/src/views/filesTransfer/setting/index.vue index 5aab70d..51f5ad3 100644 --- a/src/views/filesTransfer/setting/index.vue +++ b/src/views/filesTransfer/setting/index.vue @@ -165,7 +165,7 @@ export default { archivedType:2, } const payload = [periodicPayload, nonPeriodicPayload] - console.log('保存归档配置: ', payload) + // console.log('保存归档配置: ', payload) editAPI(payload).then(() => { this.$message.success('保存成功') this.query() @@ -176,7 +176,7 @@ export default { // 查询归档配置 query() { queryAPI().then(res => { - console.log('查询归档配置: ', res) + // console.log('查询归档配置: ', res) const list = Array.isArray(res.data) ? res.data : [] const periodic = list[0] || {} const nonPeriodic = list[1] || {}