diff --git a/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html b/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html index 38c9cce..13ef1da 100644 --- a/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html +++ b/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html @@ -343,7 +343,7 @@ let curTd = tableView.find('tr[data-index=' + rowIndex + ']').find('td[data-field=' + key + ']') if (curTd.length > 0) { - $(curTd).text(formData[key]); + $(curTd).find('.layui-table-cell').text(formData[key]); } else { console.log('没有找到对应的 td:', key); }