|
|
@@ -137,9 +137,9 @@ let explanatoryOprObj = {
|
|
|
})
|
|
|
},
|
|
|
showText: function (explanation, erratumRecord, ruleText) {
|
|
|
- this.exEditor.setValue(explanation && explanation !== 'undefined' ? explanation : '');
|
|
|
- this.erratumEditor.setValue(erratumRecord && erratumRecord !== 'undefined' ? erratumRecord : '');
|
|
|
- this.calcEditor.setValue(ruleText && ruleText !== 'undefined' ? ruleText : '');
|
|
|
+ this.exEditor.setValue(explanation && explanation !== 'undefined' ? String(explanation) : '');
|
|
|
+ this.erratumEditor.setValue(erratumRecord && erratumRecord !== 'undefined' ? String(erratumRecord) : '');
|
|
|
+ this.calcEditor.setValue(ruleText && ruleText !== 'undefined' ? String(ruleText) : '');
|
|
|
},
|
|
|
//更新说明
|
|
|
updateExplanation: function (repId, nodeId, explanation, callback) {
|