Переглянути джерело

复诊主诉文本模式bug

zhouna 6 роки тому
батько
коміт
e45296e222
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      src/common/components/Textarea/index.jsx

+ 1 - 1
src/common/components/Textarea/index.jsx

@@ -77,7 +77,7 @@ class Textarea extends Component {
   }
   componentWillReceiveProps(next){
     const isRead = this.props.isRead;
-    if(next.isRead != isRead){
+    if(next.isRead != isRead||next.value!=this.props.value){      //value对比解决复诊不显示bug
       this.$dom.current.innerText = next.value||'';
     }
   }