feat信贷客户家庭关系 身份证模糊搜索

This commit is contained in:
wkc
2026-02-12 09:45:16 +08:00
parent a46ffdb7db
commit 112463fcd3
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@
FROM ccdi_cust_fmy_relation r FROM ccdi_cust_fmy_relation r
WHERE r.is_cust_family = 1 WHERE r.is_cust_family = 1
<if test="query.personId != null and query.personId != ''"> <if test="query.personId != null and query.personId != ''">
AND r.person_id = #{query.personId} AND r.person_id LIKE CONCAT('%', #{query.personId}, '%')
</if> </if>
<if test="query.relationType != null and query.relationType != ''"> <if test="query.relationType != null and query.relationType != ''">
AND r.relation_type = #{query.relationType} AND r.relation_type = #{query.relationType}

View File

@@ -4,7 +4,7 @@
<el-form-item label="信贷客户身份证号" prop="personId"> <el-form-item label="信贷客户身份证号" prop="personId">
<el-input <el-input
v-model="queryParams.personId" v-model="queryParams.personId"
placeholder="请输入信贷客户身份证号" placeholder="请输入身份证号(支持模糊搜索)"
clearable clearable
style="width: 240px" style="width: 240px"
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"