|
@@ -395,7 +395,7 @@
|
|
that.quantifiedList.forEach(item => {
|
|
that.quantifiedList.forEach(item => {
|
|
let obj = {
|
|
let obj = {
|
|
targetName: item.targetName,
|
|
targetName: item.targetName,
|
|
- targetValue: item.targetValue,
|
|
|
|
|
|
+ targetValue: encodeURI(item.targetValue),
|
|
baseScore: item.baseScore.toString(),
|
|
baseScore: item.baseScore.toString(),
|
|
evaluationCriteria: item.evaluationCriteria,
|
|
evaluationCriteria: item.evaluationCriteria,
|
|
auditStatus: item.auditStatus,
|
|
auditStatus: item.auditStatus,
|
|
@@ -410,10 +410,7 @@
|
|
}
|
|
}
|
|
params.push(obj)
|
|
params.push(obj)
|
|
})
|
|
})
|
|
- let objs = {
|
|
|
|
- jsonArr: JSON.stringify(params)
|
|
|
|
- }
|
|
|
|
- apiGetevaluationdeptplanUpdate(objs).then(datas => {
|
|
|
|
|
|
+ apiGetevaluationdeptplanUpdate(params).then(datas => {
|
|
if (datas) {
|
|
if (datas) {
|
|
if (datas.success) {
|
|
if (datas.success) {
|
|
that.$message({
|
|
that.$message({
|