mirror of https://github.com/certd/certd
fix: 修复关键字查询bug
parent
4955fcd12a
commit
fab66606b3
|
@ -37,7 +37,7 @@ export class PipelineController extends CrudController<PipelineService> {
|
||||||
|
|
||||||
const buildQuery = qb => {
|
const buildQuery = qb => {
|
||||||
if (title) {
|
if (title) {
|
||||||
qb.andWhere('title like :title', { title: `%${title}%` }).orWhere('content like :content', { content: `%${title}%` });
|
qb.andWhere('(title like :title or content like :content)', { title: `%${title}%`, content: `%${title}%` });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
if (!body.sort || !body.sort?.prop) {
|
if (!body.sort || !body.sort?.prop) {
|
||||||
|
|
Loading…
Reference in New Issue