diff --git a/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryInfoVersion.vue b/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryInfoVersion.vue index fb1c2a9..029c170 100644 --- a/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryInfoVersion.vue +++ b/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryInfoVersion.vue @@ -73,7 +73,7 @@ @@ -157,7 +157,13 @@ addNewVersionVisible: false, currentVersion: '', currentId: '', - isLargeIteration: true + isLargeIteration: true, + isOlderVersion: true, + filePerm:{ + havingRemovePerm:false, + havingVersionManagePerm: false, + havingWritePerm: false + } } }, created() { @@ -209,6 +215,10 @@ } } that.tableData = ro.data.tableData; + that.isOlderVersion = ro.data.isOlderVersion; + that.filePerm.havingWritePerm = ro.data.havingWritePerm; + that.filePerm.havingRemovePerm = ro.data.havingRemovePerm; + that.filePerm.havingVersionManagePerm = ro.data.havingVersionManagePerm; } else { that.$message.error(ro.msg); }