|
@@ -93,7 +93,7 @@
|
|
v-for="dict in stffmgrOptions"
|
|
v-for="dict in stffmgrOptions"
|
|
:key="dict.userId"
|
|
:key="dict.userId"
|
|
:label="dict.nickName"
|
|
:label="dict.nickName"
|
|
- :value="dict.userId">
|
|
|
|
|
|
+ :value="dict.staffId">
|
|
<span style="float: left">{{ dict.nickName }}</span>
|
|
<span style="float: left">{{ dict.nickName }}</span>
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ dict.staffid }}</span>
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ dict.staffid }}</span>
|
|
</el-option>
|
|
</el-option>
|
|
@@ -264,7 +264,8 @@ export default {
|
|
updaterCode: null,
|
|
updaterCode: null,
|
|
updatedate: null,
|
|
updatedate: null,
|
|
deptId: null,
|
|
deptId: null,
|
|
- remarks: null
|
|
|
|
|
|
+ remarks: null,
|
|
|
|
+ name: null
|
|
};
|
|
};
|
|
this.resetForm("form");
|
|
this.resetForm("form");
|
|
},
|
|
},
|
|
@@ -274,7 +275,7 @@ export default {
|
|
this.staffmgrQueryParams.staffid = val
|
|
this.staffmgrQueryParams.staffid = val
|
|
console.log(val)
|
|
console.log(val)
|
|
this.stffmgrOptions.forEach(function (item, index) {
|
|
this.stffmgrOptions.forEach(function (item, index) {
|
|
- if (item.userId == val) {
|
|
|
|
|
|
+ if (item.staffId == val) {
|
|
_this.stffmgrEmail = item.email
|
|
_this.stffmgrEmail = item.email
|
|
}
|
|
}
|
|
})
|
|
})
|