|
@@ -700,9 +700,10 @@ export default {
|
|
const arr = []
|
|
const arr = []
|
|
item.a_key.forEach(v => {
|
|
item.a_key.forEach(v => {
|
|
levelMap[key].forEach(s => {
|
|
levelMap[key].forEach(s => {
|
|
- if (s === v.key.toString()) {
|
|
|
|
|
|
+ // 跟订阅设置里得关键词、附加词对比 对比上则根据匹配方式处理参数格式
|
|
|
|
+ const keys = s.split(' ')
|
|
|
|
+ if (keys.includes(v.key.toString())) {
|
|
if (v.matchway === 1) {
|
|
if (v.matchway === 1) {
|
|
- const keys = s.split(' ')
|
|
|
|
arr.push(...keys)
|
|
arr.push(...keys)
|
|
} else {
|
|
} else {
|
|
arr.push(s.replace(/\s/g, '+'))
|
|
arr.push(s.replace(/\s/g, '+'))
|