natasha 1 рік тому
батько
коміт
a8744f5563

+ 2 - 2
public/ciyun/ciyunindex.html

@@ -429,13 +429,13 @@
                 type: "post",
                 success: function(res) {
                     let str = ''
-                    res.data.result.forEach(item => {
+                    res.data.forEach(item => {
                         if (item.word.indexOf(" ") != -1) {
                             item.word = item.word.replace(" ", "")
                         }
                         str += item.word + " "
                     })
-                    ciyunData = res.data.result
+                    ciyunData = res.data
                     text = str
                     $("#text").val(text);
                     $("#go").trigger("click");

+ 1 - 1
src/views/bookShelf/articleDetail.vue

@@ -1303,7 +1303,7 @@ export default {
     justify-content: space-between;
     align-items: center;
     .right{
-        width: 145px;
+        width: 150px;
         margin-right: -8px;
         text-align: right;
     }

+ 2 - 2
src/views/bookShelf/components/NewWordList.vue

@@ -202,8 +202,8 @@ export default {
             }
             this.wordList.push(obj)
         });
-        console.log(this.likeWordList)
-        console.log(this.likeWord)
+        // console.log(this.likeWordList)
+        // console.log(this.likeWord)
     },
     changeLike(obj,list){
         this.$emit('changeLike',obj,list)