|
@@ -198,9 +198,10 @@
|
|
selectRole() {
|
|
selectRole() {
|
|
var roleList = [];
|
|
var roleList = [];
|
|
for (var i = 0; i < this.roleList.length; i++) {
|
|
for (var i = 0; i < this.roleList.length; i++) {
|
|
|
|
+ var preName = this.person_popedom.personRoleName == this.roleList[i]['personRoleName'] ? '(当前)' : '';
|
|
roleList.push({
|
|
roleList.push({
|
|
value: this.roleList[i]['id'],
|
|
value: this.roleList[i]['id'],
|
|
- text: this.roleList[i]['companyName'] + ' ' + this.roleList[i]['personRoleName'],
|
|
|
|
|
|
+ text: preName + this.roleList[i]['companyName'] + ' ' + this.roleList[i]['personRoleName'],
|
|
})
|
|
})
|
|
}
|
|
}
|
|
var _this = this;
|
|
var _this = this;
|