|
@@ -355,7 +355,7 @@ export default {
|
|
|
let SearchwordNumber = 0
|
|
|
this.resArr.forEach((item) => {
|
|
|
item.wordsList.forEach((items) => {
|
|
|
- if (items.tokens[2].toLowerCase() == searchItem) {
|
|
|
+ if (items.tokens[4].toLowerCase() == searchItem) {
|
|
|
SearchwordNumber ++
|
|
|
items.color = this.currentcolorValue[i];
|
|
|
items.borderColor = this.currentBorderColorValue[i]
|
|
@@ -441,7 +441,7 @@ export default {
|
|
|
this.currentBorderColorValue.splice(index,1)
|
|
|
this.resArr.forEach((item) => {
|
|
|
item.wordsList.forEach((items) => {
|
|
|
- if (items.tokens[2].toLowerCase() == text) {
|
|
|
+ if (items.tokens[4].toLowerCase() == text) {
|
|
|
items.color = '';
|
|
|
items.borderColor = ''
|
|
|
}
|