@@ -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");
@@ -1303,7 +1303,7 @@ export default {
justify-content: space-between;
align-items: center;
.right{
- width: 145px;
+ width: 150px;
margin-right: -8px;
text-align: right;
@@ -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)