diff --git a/src/views/archivesManagement/fileManager/components/rightTable.vue b/src/views/archivesManagement/fileManager/components/rightTable.vue index 40b8d34..9fe2c7a 100644 --- a/src/views/archivesManagement/fileManager/components/rightTable.vue +++ b/src/views/archivesManagement/fileManager/components/rightTable.vue @@ -159,11 +159,12 @@ export default { selectedNode: { handler(newVal) { this.addBtnIsShow = !(newVal && Number(newVal.level) === 4) - // 更新并下发默认请求参数(例如 parentId) + // 更新并下发默认请求参数(例如 parentId、proId) const parentId = newVal && newVal.id ? newVal.id : 0 - this.defaultParams = { parentId } + const proId = this.projectId + this.defaultParams = { parentId,proId } if (this.$refs.tableRef) { - this.$refs.tableRef.queryTableList({ parentId }) + this.$refs.tableRef.queryTableList({ parentId,proId }) } }, immediate: true, // 表示立即执行 diff --git a/src/views/common/fileTree.vue b/src/views/common/fileTree.vue new file mode 100644 index 0000000..35bdce4 --- /dev/null +++ b/src/views/common/fileTree.vue @@ -0,0 +1,211 @@ + + + \ No newline at end of file diff --git a/src/views/filesTransfer/apply/prop/applyForm.vue b/src/views/filesTransfer/apply/prop/applyForm.vue index 6c61317..8286c74 100644 --- a/src/views/filesTransfer/apply/prop/applyForm.vue +++ b/src/views/filesTransfer/apply/prop/applyForm.vue @@ -24,7 +24,9 @@ 确认 + +