Commit d32cfc3e authored by 王晓倩's avatar 王晓倩

模糊查询,投入验证

parent a4d6f8b8
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
<select id="selectTEnterpriseSystemList" parameterType="TEnterpriseSystem" resultMap="TEnterpriseSystemResult"> <select id="selectTEnterpriseSystemList" parameterType="TEnterpriseSystem" resultMap="TEnterpriseSystemResult">
<include refid="selectTEnterpriseSystemVo"/> <include refid="selectTEnterpriseSystemVo"/>
<where> <where>
<if test="systemTitle != null and systemTitle != ''"> and system_title = #{systemTitle}</if> <if test="systemTitle != null and systemTitle != ''"> and system_title like concat('%', #{systemTitle}, '%')</if>
<if test="systemType != null and systemType != ''"> and system_type = #{systemType}</if> <if test="systemType != null and systemType != ''"> and system_type = #{systemType}</if>
<if test="hierarchy != null and hierarchy != ''"> and hierarchy = #{hierarchy}</if> <if test="hierarchy != null and hierarchy != ''"> and hierarchy = #{hierarchy}</if>
<if test="referenceNum != null and referenceNum != ''"> and reference_num = #{referenceNum}</if> <if test="referenceNum != null and referenceNum != ''"> and reference_num = #{referenceNum}</if>
......
...@@ -50,7 +50,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -50,7 +50,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join sys_post p on t.post_id = p.post_id left join sys_post p on t.post_id = p.post_id
<where> t.is_del = '0' and t.user_staff='1' <where> t.is_del = '0' and t.user_staff='1'
<if test="staffName != null and staffName != ''"> and t.staff_name like concat('%', #{staffName}, '%')</if> <if test="staffName != null and staffName != ''"> and t.staff_name like concat('%', #{staffName}, '%')</if>
<if test="staffCode != null and staffCode != ''"> and t.staff_code = #{staffCode}</if> <if test="staffCode != null and staffCode != ''"> and t.staff_code like concat('%', #{staffCode}, '%')</if>
<if test="sex != null and sex != ''"> and t.sex = #{sex}</if> <if test="sex != null and sex != ''"> and t.sex = #{sex}</if>
<if test="deptId != null "> and t.dept_id = #{deptId}</if> <if test="deptId != null "> and t.dept_id = #{deptId}</if>
<if test="phonenumber != null and phonenumber != ''"> <if test="phonenumber != null and phonenumber != ''">
......
...@@ -254,7 +254,10 @@ export default { ...@@ -254,7 +254,10 @@ export default {
{ required: true, message: "请选择投入年度", trigger: "blur" } { required: true, message: "请选择投入年度", trigger: "blur" }
], ],
investmentFunds: [ investmentFunds: [
{ required: true, message: "请输入投入资金", trigger: "blur" } { required: true, message: "投入资金数字总共不超过11位,小数点不超过2位", validator: this.investmentFundsValidate }
],
income: [
{ required: true, message: "同期收入数字总共不超过11位,小数点不超过2位", validator: this.incomeValidate }
], ],
investmentType: [ investmentType: [
{ required: true, message: "请选择投入类型", trigger: "blur" } { required: true, message: "请选择投入类型", trigger: "blur" }
...@@ -278,6 +281,38 @@ export default { ...@@ -278,6 +281,38 @@ export default {
}); });
}, },
methods: { methods: {
investmentFundsValidate(rule, value, callback){
let reg = /^([1-9]\d*\.?\d{0,2}|0\.\d{1,2}|0)$/;
if(value != '' && value != null){
if(value.replace(".","").length > 11){
console.log(value,"value");
callback(new Error('数字不能超过11位'));
}
if(reg.test(value)){
callback();
}else{
callback(new Error('请输入正确投入资金(小数点不超过2位)'));
}
}else{
callback(new Error('请输入投入资金(小数点不超过2位)'));
}
},
incomeValidate(rule, value, callback){
let reg = /^([1-9]\d*\.?\d{0,2}|0\.\d{1,2}|0)$/;
if(value != '' && value != null){
if(value.replace(".","").length > 11){
console.log(value,"value");
callback(new Error('数字不能超过11位'));
}
if(reg.test(value)){
callback();
}else{
callback(new Error('请输入正确同期收入(小数点不超过2位)'));
}
}else{
callback();
}
},
// 投入类型 // 投入类型
investmentFormat(row, column) { investmentFormat(row, column) {
return this.selectDictLabel(this.investmentOptions, row.investmentType); return this.selectDictLabel(this.investmentOptions, row.investmentType);
......
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