Commit b307f173 by 孙亚楠

Merge branch 'xggsve-order-dev' of gitlab.gongsibao.com:jiangyong/zhichan into xggsve-order-dev

parents 560c4227 bd43734f
...@@ -209,7 +209,9 @@ class OorderService extends ServiceBase { ...@@ -209,7 +209,9 @@ class OorderService extends ServiceBase {
where.deliver_id = this.trim(params.deliver_id); where.deliver_id = this.trim(params.deliver_id);
} }
if (params.bd_path) { if (params.bd_path) {
where.bd_path = this.trim(params.bd_path); where.bd_path = {
[this.db.Op.like]: this.trim(params.bd_path) + "%"
}
} }
var currentPage = Number(params.currentPage || 1); var currentPage = Number(params.currentPage || 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment