albertshaw 7 years ago
parent
commit
17621dca15
1 changed files with 2 additions and 2 deletions
  1. 2 2
      js/component/account/services/evaluate/create.jsx

+ 2 - 2
js/component/account/services/evaluate/create.jsx

@@ -25,10 +25,10 @@ const CreateEvaluate = React.createClass({
       $.ajax({
         url: globalConfig.context + '/open/html/get/evaluation_announcement'
       }).done(function (res) {
-        if (res && res.data) {
+        if (res) {
           this.setState({
             loading: true,
-            announce: res.data
+            announce: res
           })
         }
       }.bind(this)).always(function () {