diff --git a/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryMain.vue b/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryMain.vue index 8a35bf1..4dd02ca 100644 --- a/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryMain.vue +++ b/com.actionsoft.apps.coe.pal/src/views/repository/RepositoryMain.vue @@ -131,7 +131,10 @@
- {{ currentUser.userName }}({{ currentUser.deptName }}) + {{ currentUser.userName }} + + ({{ currentUser.deptNameView }}) +
@@ -674,6 +677,10 @@ that.methodIdOptions = that.conditionData.methodIds that.methodIds = that.methodIdOptions that.currentUser = that.conditionData.currentUser + that.currentUser.deptNameView = that.currentUser.deptName + if (that.currentUser.deptName.length > 8) { + that.currentUser.deptNameView = `${that.currentUser.deptName.substring(0,4)}***${that.currentUser.deptName.substring(that.currentUser.deptName.length-4)}` + } that.conditionData.createUsers.forEach(item => { item.deptNameView = item.deptName if (item.deptName.length > 8) {