Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
d32cfc3e
Commit
d32cfc3e
authored
Nov 23, 2022
by
王晓倩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
模糊查询,投入验证
parent
a4d6f8b8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
3 deletions
+38
-3
TEnterpriseSystemMapper.xml
.../main/resources/mapper/system/TEnterpriseSystemMapper.xml
+1
-1
TStaffMapper.xml
...-system/src/main/resources/mapper/system/TStaffMapper.xml
+1
-1
index.vue
...anage-web/src/views/safetyManagement/investment/index.vue
+36
-1
No files found.
danger-manage-system/src/main/resources/mapper/system/TEnterpriseSystemMapper.xml
View file @
d32cfc3e
...
...
@@ -32,7 +32,7 @@
<select
id=
"selectTEnterpriseSystemList"
parameterType=
"TEnterpriseSystem"
resultMap=
"TEnterpriseSystemResult"
>
<include
refid=
"selectTEnterpriseSystemVo"
/>
<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=
"hierarchy != null and hierarchy != ''"
>
and hierarchy = #{hierarchy}
</if>
<if
test=
"referenceNum != null and referenceNum != ''"
>
and reference_num = #{referenceNum}
</if>
...
...
danger-manage-system/src/main/resources/mapper/system/TStaffMapper.xml
View file @
d32cfc3e
...
...
@@ -50,7 +50,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
left join sys_post p on t.post_id = p.post_id
<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=
"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=
"deptId != null "
>
and t.dept_id = #{deptId}
</if>
<if
test=
"phonenumber != null and phonenumber != ''"
>
...
...
danger-manage-web/src/views/safetyManagement/investment/index.vue
View file @
d32cfc3e
...
...
@@ -254,7 +254,10 @@ export default {
{
required
:
true
,
message
:
"请选择投入年度"
,
trigger
:
"blur"
}
],
investmentFunds
:
[
{
required
:
true
,
message
:
"请输入投入资金"
,
trigger
:
"blur"
}
{
required
:
true
,
message
:
"投入资金数字总共不超过11位,小数点不超过2位"
,
validator
:
this
.
investmentFundsValidate
}
],
income
:
[
{
required
:
true
,
message
:
"同期收入数字总共不超过11位,小数点不超过2位"
,
validator
:
this
.
incomeValidate
}
],
investmentType
:
[
{
required
:
true
,
message
:
"请选择投入类型"
,
trigger
:
"blur"
}
...
...
@@ -278,6 +281,38 @@ export default {
});
},
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
)
{
return
this
.
selectDictLabel
(
this
.
investmentOptions
,
row
.
investmentType
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment