Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
P
precision-effect
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
耿迪迪
precision-effect
Commits
dd90d2b1
Commit
dd90d2b1
authored
Jun 25, 2023
by
lizhichao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
借支申请-增加使用人查询条件
parent
44a9f908
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
TBorrowingApplyForMapper.xml
...main/resources/mapper/system/TBorrowingApplyForMapper.xml
+2
-0
index.vue
precision-effect-web/src/views/for/index.vue
+9
-0
No files found.
precision-effect-system/src/main/resources/mapper/system/TBorrowingApplyForMapper.xml
View file @
dd90d2b1
...
@@ -41,6 +41,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -41,6 +41,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"handledByUserId != null "
>
and a.handled_by_user_id = #{handledByUserId}
</if>
<if
test=
"handledByUserId != null "
>
and a.handled_by_user_id = #{handledByUserId}
</if>
<if
test=
"applicationDescription != null and applicationDescription != ''"
>
and a.application_description = #{applicationDescription}
</if>
<if
test=
"applicationDescription != null and applicationDescription != ''"
>
and a.application_description = #{applicationDescription}
</if>
<if
test=
"userId != null "
>
and a.user_id = #{userId}
</if>
<if
test=
"userId != null "
>
and a.user_id = #{userId}
</if>
<if
test=
"userIdName != null "
>
and c.nick_name like concat('%', #{userIdName}, '%')
</if>
<if
test=
"totalWords != null and totalWords != ''"
>
and a.total_words = #{totalWords}
</if>
<if
test=
"totalWords != null and totalWords != ''"
>
and a.total_words = #{totalWords}
</if>
<if
test=
"totalFigures != null "
>
and a.total_figures = #{totalFigures}
</if>
<if
test=
"totalFigures != null "
>
and a.total_figures = #{totalFigures}
</if>
<if
test=
"approvedUserId != null "
>
and a.approved_user_id = #{approvedUserId}
</if>
<if
test=
"approvedUserId != null "
>
and a.approved_user_id = #{approvedUserId}
</if>
...
...
precision-effect-web/src/views/for/index.vue
View file @
dd90d2b1
...
@@ -10,6 +10,15 @@
...
@@ -10,6 +10,15 @@
@
keyup
.
enter
.
native=
"handleQuery"
@
keyup
.
enter
.
native=
"handleQuery"
/>
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"使用人"
prop=
"userIdName"
>
<el-input
v-model=
"queryParams.userIdName"
placeholder=
"请输入使用人"
clearable
size=
"small"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
...
...
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