From d896af364e0be1c2e0a48402ed59d00e0804f931 Mon Sep 17 00:00:00 2001
From: liyj <1003249715@qq.com>
Date: Wed, 24 Jun 2020 17:27:22 +0800
Subject: [PATCH] ..
---
src/components/oa/merits/meritsDetail/index.jsx | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/oa/merits/meritsDetail/index.jsx b/src/components/oa/merits/meritsDetail/index.jsx
index 67c9fbb..d12f3ca 100644
--- a/src/components/oa/merits/meritsDetail/index.jsx
+++ b/src/components/oa/merits/meritsDetail/index.jsx
@@ -132,8 +132,8 @@
this.props.match.params.boolean == 'true'?
{
title: '评分意见', dataIndex: 'meritsContent', width: '13%', render: (cur, item, index) => {
- return <TextArea autoSize={{ minRows: 3, maxRows: 10 }} onChange={(value) => {
- item['meritsContent'] = value;
+ return <TextArea autoSize={{ minRows: 3, maxRows: 10 }} value={cur} onChange={(value) => {
+ item['meritsContent'] = value.targrt.value;
this.refs['table-view'].onSetDataSource({ index, data: item })
}} />
}
--
Gitblit v1.8.0