|
@@ -702,12 +702,13 @@ export default {
|
|
|
saveAddDetailInfo() {
|
|
|
let that = this
|
|
|
let addParams = []
|
|
|
- let addObj = {}
|
|
|
that.monthQuarterYearDetailData.forEach(it =>{
|
|
|
- addObj.organizationEvaluationId = that.tastbizKey
|
|
|
- addObj.indicatorId = that.isClickTagId
|
|
|
- addObj.organizationId = that.detailMsg.organizationId
|
|
|
- addObj.optionMap = it
|
|
|
+ let addObj = {
|
|
|
+ organizationEvaluationId: that.tastbizKey,
|
|
|
+ indicatorId: that.isClickTagId,
|
|
|
+ organizationId: that.detailMsg.organizationId,
|
|
|
+ optionMap: it
|
|
|
+ }
|
|
|
addParams.push(addObj)
|
|
|
})
|
|
|
apiPostsaveEvaluationCommonInfo(addParams).then(datas =>{
|