mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-23 23:06:06 +08:00
修复sql查询
This commit is contained in:
parent
f0f2c6b537
commit
7e34f4990d
|
@ -42,7 +42,7 @@ export default async () => {
|
||||||
where: {
|
where: {
|
||||||
isDisabled: { [Op.ne]: 1 },
|
isDisabled: { [Op.ne]: 1 },
|
||||||
command: {
|
command: {
|
||||||
[Op.or]: [{ [Op.like]: `%ql repo%` }, { [Op.like]: `%$ql raw%` }],
|
[Op.or]: [{ [Op.like]: `%ql repo%` }, { [Op.like]: `%ql raw%` }],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}).then((docs) => {
|
}).then((docs) => {
|
||||||
|
|
|
@ -80,7 +80,7 @@ export default class DependenceService {
|
||||||
const encodeText = encodeURIComponent(searchValue);
|
const encodeText = encodeURIComponent(searchValue);
|
||||||
const reg = {
|
const reg = {
|
||||||
[Op.or]: [
|
[Op.or]: [
|
||||||
{ [Op.like]: `%${searchValue}&` },
|
{ [Op.like]: `%${searchValue}%` },
|
||||||
{ [Op.like]: `%${encodeText}%` },
|
{ [Op.like]: `%${encodeText}%` },
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user