|
@@ -414,7 +414,10 @@ export default {
|
|
|
// 处理关键词在附件中
|
|
|
calcFileText() {
|
|
|
const inFile = this.article.filetext_search
|
|
|
- const keywords = this.getMatchKeys
|
|
|
+ let keywords = this.getMatchKeys
|
|
|
+ if (this.article?.fs_word && this.article?.fs_word[0]) {
|
|
|
+ keywords = this.article?.fs_word
|
|
|
+ }
|
|
|
if (inFile) {
|
|
|
const keyword = keywords[0]
|
|
|
if (keyword?.length > 3) {
|