Commit 627ab600 authored by zhuwei's avatar zhuwei

查询语句修改

parent 76fc2273
......@@ -58,11 +58,11 @@ class Evaluation extends Basic
}
//4.姓名
if (!empty($params['user_name'])) {
$where['b.user_name'] = ['EXP','b.user_name LIKE "%'.$this->params['phone'].'%" '];
$where['b.user_name'] = ['LIKE','%'.$params['user_name'].'%'];
}
//5.手机号
if (!empty($params['user_phone'])) {
$where['b.user_phone'] = ['EXP','b.user_phone LIKE "%'.$this->params['phone'].'%" '];
$where['b.user_phone'] = ['LIKE','%'.$params['user_phone'].'%'];
}
//6.进场时间
//if (!empty($params['registration_start']) && !empty($params['registration_end'])) {
......
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