|
@@ -285,8 +285,8 @@
|
|
|
pageSize: that.page.pagesize,
|
|
|
organizationType: 'DWKP',
|
|
|
organizationName: that.companyS,
|
|
|
- binSectionName: that.binSectionIds,
|
|
|
- binStageName: that.stageIds
|
|
|
+ binSection: that.binSectionIds,
|
|
|
+ binStage: that.stageIds
|
|
|
}
|
|
|
apiGetOrganizationList(params).then(datas => {
|
|
|
if (datas && datas.data) {
|
|
@@ -422,15 +422,18 @@
|
|
|
saveAndEditIndicatorData() {
|
|
|
let that = this
|
|
|
let orgName = ''
|
|
|
+ let referred = ''
|
|
|
that.companyDatas.forEach(item => {
|
|
|
if (item.id === that.ruleForm.organizationName) {
|
|
|
orgName = item.name
|
|
|
+ referred = item.shortName
|
|
|
}
|
|
|
})
|
|
|
let params = {
|
|
|
organizationName: orgName,
|
|
|
evaluationCycle: that.ruleForm.evaluationCycle,
|
|
|
organizationType: 'DWKP',
|
|
|
+ organizationShortName: referred,
|
|
|
evaluateRuleId: that.ruleForm.evaluateRule.join(','),
|
|
|
binSection: that.ruleForm.binSection,
|
|
|
binStage: that.ruleForm.binStage.join(','),
|