|
@@ -74,8 +74,8 @@
|
|
|
<a-select-option
|
|
|
v-for="(item, i) in assigneeList"
|
|
|
:key="i"
|
|
|
- :value="item.id"
|
|
|
- >{{item.username}}</a-select-option>
|
|
|
+ :value="item.username"
|
|
|
+ >{{item.realname}}</a-select-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</div>
|
|
@@ -231,7 +231,8 @@ export default {
|
|
|
return
|
|
|
}
|
|
|
this.userLoading = true
|
|
|
- getAction(this.url.getNode + v).then(res => {
|
|
|
+ // getAction(this.url.getNode + v).then(res => {
|
|
|
+ getAction(this.url.getNode + v+"&"+this.form.procInstId).then(res => {
|
|
|
this.userLoading = false
|
|
|
if (res.success) {
|
|
|
if (res.result.users && res.result.users.length > 0) {
|